Lookup for vulnerabilities affecting packages.

Vulnerability_idVCID-7rfx-9car-wkcs
Summary
jsoup may not sanitize code injection XSS attempts if SafeList.preserveRelativeLinks is enabled
jsoup may incorrectly sanitize HTML including `javascript:` URL expressions, which could allow cross-site scripting (XSS) attacks when a reader subsequently clicks that link. If the non-default `SafeList.preserveRelativeLinks` option is enabled, HTML including `javascript:` URLs that have been crafted with control characters will not be sanitized. If the site that this HTML is published on does not set a Content Security Policy, an XSS attack is then possible.

### Impact
Sites that accept input HTML from users and use jsoup to sanitize that HTML, may be vulnerable to cross-site scripting (XSS) attacks, if they have enabled `SafeList.preserveRelativeLinks` and do not set an appropriate Content Security Policy.

### Patches
This issue is patched in jsoup 1.15.3.

Users should upgrade to this version. Additionally, as the unsanitized input may have been persisted, old content should be cleaned again using the updated version.

### Workarounds
To remediate this issue without immediately upgrading:

- disable `SafeList.preserveRelativeLinks`, which will rewrite input URLs as absolute URLs
- ensure an appropriate [Content Security Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP) is defined. (This should be used regardless of upgrading, as a defence-in-depth best practice.)

### Background and root cause
jsoup includes a [Cleaner](https://jsoup.org/apidocs/org/jsoup/safety/Cleaner.html) component, which is designed to [sanitize input HTML](https://jsoup.org/cookbook/cleaning-html/safelist-sanitizer) against configurable safe-lists of acceptable tags, attributes, and attribute values.

This includes removing potentially malicious attributes such as `<a href="javascript:...">`, which may enable XSS attacks. It does this by validating URL attributes against allowed URL protocols (e.g. `http`, `https`).

However, an attacker may be able to bypass this check by embedding control characters into the href attribute value. This causes the Java URL class, which is used to resolve relative URLs to absolute URLs before checking the URL's protocol, to treat the URL as a relative URL. It is then resolved into an absolute URL with the configured base URI.

For example, `java\tscript:...` would resolve to `https://example.com/java\tscript:...`.

By default, when using a safe-list that allows `a` tags, jsoup will rewrite any relative URLs (e.g. `/foo/`) to an absolute URL (e.g. `https://example.com/foo/`). Therefore, this attack attempt would be successfully mitigated. However, if the option [SafeList.preserveRelativeLinks](https://jsoup.org/apidocs/org/jsoup/safety/Safelist.html#preserveRelativeLinks(boolean)) is enabled (which does not rewrite relative links to absolute), the input is left as-is.

While Java will treat a path like `java\tscript:` as a relative path, as it does not match the allowed characters of a URL spec, browsers may normalize out the control characters, and subsequently evaluate it as a `javascript:` spec inline expression. That disparity then leads to an XSS opportunity.

Sites defining a Content Security Policy that does not allow javascript expressions in link URLs will not be impacted, as the policy will prevent the script's execution.

### For more information
If you have any questions or comments about this advisory:
* Open an issue in [jsoup](https://github.com/jhy/jsoup)
* Email the author of jsoup at [jonathan@hedley.net](mailto:jonathan@hedley.net)

### Credits
Thanks to Jens Häderer, who reported this issue, and contributed to its resolution.
Aliases
0
alias CVE-2022-36033
1
alias GHSA-gp7f-rwcx-9369
Fixed_packages
0
url pkg:deb/debian/jsoup@1.15.3-1?distro=trixie
purl pkg:deb/debian/jsoup@1.15.3-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/jsoup@1.15.3-1%3Fdistro=trixie
1
url pkg:deb/debian/jsoup@1.15.3-1
purl pkg:deb/debian/jsoup@1.15.3-1
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/jsoup@1.15.3-1
2
url pkg:maven/org.jsoup/jsoup@1.15.3
purl pkg:maven/org.jsoup/jsoup@1.15.3
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.15.3
Affected_packages
0
url pkg:deb/debian/jsoup@1.10.2-2?distro=trixie
purl pkg:deb/debian/jsoup@1.10.2-2?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/jsoup@1.10.2-2%3Fdistro=trixie
1
url pkg:deb/debian/jsoup@1.10.2-2
purl pkg:deb/debian/jsoup@1.10.2-2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/jsoup@1.10.2-2
2
url pkg:maven/org.jsoup/jsoup@0.2.1b
purl pkg:maven/org.jsoup/jsoup@0.2.1b
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@0.2.1b
3
url pkg:maven/org.jsoup/jsoup@0.2.2
purl pkg:maven/org.jsoup/jsoup@0.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@0.2.2
4
url pkg:maven/org.jsoup/jsoup@0.3.1
purl pkg:maven/org.jsoup/jsoup@0.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@0.3.1
5
url pkg:maven/org.jsoup/jsoup@1.1.1
purl pkg:maven/org.jsoup/jsoup@1.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.1.1
6
url pkg:maven/org.jsoup/jsoup@1.2.1
purl pkg:maven/org.jsoup/jsoup@1.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.2.1
7
url pkg:maven/org.jsoup/jsoup@1.2.2
purl pkg:maven/org.jsoup/jsoup@1.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.2.2
8
url pkg:maven/org.jsoup/jsoup@1.2.3
purl pkg:maven/org.jsoup/jsoup@1.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.2.3
9
url pkg:maven/org.jsoup/jsoup@1.3.1
purl pkg:maven/org.jsoup/jsoup@1.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.3.1
10
url pkg:maven/org.jsoup/jsoup@1.3.2
purl pkg:maven/org.jsoup/jsoup@1.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.3.2
11
url pkg:maven/org.jsoup/jsoup@1.3.3
purl pkg:maven/org.jsoup/jsoup@1.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.3.3
12
url pkg:maven/org.jsoup/jsoup@1.4.1
purl pkg:maven/org.jsoup/jsoup@1.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.4.1
13
url pkg:maven/org.jsoup/jsoup@1.5.1
purl pkg:maven/org.jsoup/jsoup@1.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.5.1
14
url pkg:maven/org.jsoup/jsoup@1.5.2
purl pkg:maven/org.jsoup/jsoup@1.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.5.2
15
url pkg:maven/org.jsoup/jsoup@1.6.0
purl pkg:maven/org.jsoup/jsoup@1.6.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
2
vulnerability VCID-v8c6-w47r-6bcg
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.6.0
16
url pkg:maven/org.jsoup/jsoup@1.6.1
purl pkg:maven/org.jsoup/jsoup@1.6.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
2
vulnerability VCID-v8c6-w47r-6bcg
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.6.1
17
url pkg:maven/org.jsoup/jsoup@1.6.2
purl pkg:maven/org.jsoup/jsoup@1.6.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
2
vulnerability VCID-v8c6-w47r-6bcg
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.6.2
18
url pkg:maven/org.jsoup/jsoup@1.6.3
purl pkg:maven/org.jsoup/jsoup@1.6.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
2
vulnerability VCID-v8c6-w47r-6bcg
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.6.3
19
url pkg:maven/org.jsoup/jsoup@1.7.1
purl pkg:maven/org.jsoup/jsoup@1.7.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
2
vulnerability VCID-v8c6-w47r-6bcg
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.7.1
20
url pkg:maven/org.jsoup/jsoup@1.7.2
purl pkg:maven/org.jsoup/jsoup@1.7.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
2
vulnerability VCID-v8c6-w47r-6bcg
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.7.2
21
url pkg:maven/org.jsoup/jsoup@1.7.3
purl pkg:maven/org.jsoup/jsoup@1.7.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
2
vulnerability VCID-v8c6-w47r-6bcg
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.7.3
22
url pkg:maven/org.jsoup/jsoup@1.8.1
purl pkg:maven/org.jsoup/jsoup@1.8.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
2
vulnerability VCID-v8c6-w47r-6bcg
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.8.1
23
url pkg:maven/org.jsoup/jsoup@1.8.2
purl pkg:maven/org.jsoup/jsoup@1.8.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
2
vulnerability VCID-v8c6-w47r-6bcg
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.8.2
24
url pkg:maven/org.jsoup/jsoup@1.8.3
purl pkg:maven/org.jsoup/jsoup@1.8.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.8.3
25
url pkg:maven/org.jsoup/jsoup@1.9.1
purl pkg:maven/org.jsoup/jsoup@1.9.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.9.1
26
url pkg:maven/org.jsoup/jsoup@1.9.2
purl pkg:maven/org.jsoup/jsoup@1.9.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.9.2
27
url pkg:maven/org.jsoup/jsoup@1.10.1
purl pkg:maven/org.jsoup/jsoup@1.10.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.10.1
28
url pkg:maven/org.jsoup/jsoup@1.10.2
purl pkg:maven/org.jsoup/jsoup@1.10.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.10.2
29
url pkg:maven/org.jsoup/jsoup@1.10.3
purl pkg:maven/org.jsoup/jsoup@1.10.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.10.3
30
url pkg:maven/org.jsoup/jsoup@1.11.1
purl pkg:maven/org.jsoup/jsoup@1.11.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.11.1
31
url pkg:maven/org.jsoup/jsoup@1.11.2
purl pkg:maven/org.jsoup/jsoup@1.11.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.11.2
32
url pkg:maven/org.jsoup/jsoup@1.11.3
purl pkg:maven/org.jsoup/jsoup@1.11.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.11.3
33
url pkg:maven/org.jsoup/jsoup@1.12.1
purl pkg:maven/org.jsoup/jsoup@1.12.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.12.1
34
url pkg:maven/org.jsoup/jsoup@1.12.2
purl pkg:maven/org.jsoup/jsoup@1.12.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.12.2
35
url pkg:maven/org.jsoup/jsoup@1.13.1
purl pkg:maven/org.jsoup/jsoup@1.13.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.13.1
36
url pkg:maven/org.jsoup/jsoup@1.14.1
purl pkg:maven/org.jsoup/jsoup@1.14.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4rxk-nhwr-ffad
1
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.14.1
37
url pkg:maven/org.jsoup/jsoup@1.14.2
purl pkg:maven/org.jsoup/jsoup@1.14.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.14.2
38
url pkg:maven/org.jsoup/jsoup@1.14.3
purl pkg:maven/org.jsoup/jsoup@1.14.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.14.3
39
url pkg:maven/org.jsoup/jsoup@1.15.1
purl pkg:maven/org.jsoup/jsoup@1.15.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.15.1
40
url pkg:maven/org.jsoup/jsoup@1.15.2
purl pkg:maven/org.jsoup/jsoup@1.15.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
resource_url http://public2.vulnerablecode.io/packages/pkg:maven/org.jsoup/jsoup@1.15.2
41
url pkg:rpm/redhat/eap7-hal-console@3.3.24-1.Final_redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap7-hal-console@3.3.24-1.Final_redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-hal-console@3.3.24-1.Final_redhat_00001.1%3Farch=el9eap
42
url pkg:rpm/redhat/eap7-hal-console@3.3.24-1.Final_redhat_00001.1?arch=el7eap
purl pkg:rpm/redhat/eap7-hal-console@3.3.24-1.Final_redhat_00001.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-hal-console@3.3.24-1.Final_redhat_00001.1%3Farch=el7eap
43
url pkg:rpm/redhat/eap7-hal-console@3.3.24-1.Final_redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap7-hal-console@3.3.24-1.Final_redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-hal-console@3.3.24-1.Final_redhat_00001.1%3Farch=el8eap
44
url pkg:rpm/redhat/eap7-hibernate-validator@6.0.23-2.SP1_redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap7-hibernate-validator@6.0.23-2.SP1_redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-hibernate-validator@6.0.23-2.SP1_redhat_00001.1%3Farch=el9eap
45
url pkg:rpm/redhat/eap7-hibernate-validator@6.0.23-2.SP1_redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap7-hibernate-validator@6.0.23-2.SP1_redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-hibernate-validator@6.0.23-2.SP1_redhat_00001.1%3Farch=el8eap
46
url pkg:rpm/redhat/eap7-hibernate-validator@6.0.23-2.SP1_redhat_00001.1?arch=el7eap
purl pkg:rpm/redhat/eap7-hibernate-validator@6.0.23-2.SP1_redhat_00001.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-hibernate-validator@6.0.23-2.SP1_redhat_00001.1%3Farch=el7eap
47
url pkg:rpm/redhat/eap7-insights-java-client@1.1.3-1.redhat_00001.1?arch=el7eap
purl pkg:rpm/redhat/eap7-insights-java-client@1.1.3-1.redhat_00001.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-insights-java-client@1.1.3-1.redhat_00001.1%3Farch=el7eap
48
url pkg:rpm/redhat/eap7-insights-java-client@1.1.3-1.redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap7-insights-java-client@1.1.3-1.redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-insights-java-client@1.1.3-1.redhat_00001.1%3Farch=el9eap
49
url pkg:rpm/redhat/eap7-insights-java-client@1.1.3-1.redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap7-insights-java-client@1.1.3-1.redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-insights-java-client@1.1.3-1.redhat_00001.1%3Farch=el8eap
50
url pkg:rpm/redhat/eap7-ironjacamar@1.5.18-1.Final_redhat_00001.1?arch=el7eap
purl pkg:rpm/redhat/eap7-ironjacamar@1.5.18-1.Final_redhat_00001.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-ironjacamar@1.5.18-1.Final_redhat_00001.1%3Farch=el7eap
51
url pkg:rpm/redhat/eap7-ironjacamar@1.5.18-1.Final_redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap7-ironjacamar@1.5.18-1.Final_redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-ironjacamar@1.5.18-1.Final_redhat_00001.1%3Farch=el8eap
52
url pkg:rpm/redhat/eap7-ironjacamar@1.5.18-1.Final_redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap7-ironjacamar@1.5.18-1.Final_redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-ironjacamar@1.5.18-1.Final_redhat_00001.1%3Farch=el9eap
53
url pkg:rpm/redhat/eap7-jboss-cert-helper@1.1.3-1.redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap7-jboss-cert-helper@1.1.3-1.redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jboss-cert-helper@1.1.3-1.redhat_00001.1%3Farch=el9eap
54
url pkg:rpm/redhat/eap7-jboss-cert-helper@1.1.3-1.redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap7-jboss-cert-helper@1.1.3-1.redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jboss-cert-helper@1.1.3-1.redhat_00001.1%3Farch=el8eap
55
url pkg:rpm/redhat/eap7-jboss-cert-helper@1.1.3-1.redhat_00001.1?arch=el7eap
purl pkg:rpm/redhat/eap7-jboss-cert-helper@1.1.3-1.redhat_00001.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jboss-cert-helper@1.1.3-1.redhat_00001.1%3Farch=el7eap
56
url pkg:rpm/redhat/eap7-jboss-ejb-client@4.0.55-1.Final_redhat_00001.1?arch=el7eap
purl pkg:rpm/redhat/eap7-jboss-ejb-client@4.0.55-1.Final_redhat_00001.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jboss-ejb-client@4.0.55-1.Final_redhat_00001.1%3Farch=el7eap
57
url pkg:rpm/redhat/eap7-jboss-ejb-client@4.0.55-1.Final_redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap7-jboss-ejb-client@4.0.55-1.Final_redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jboss-ejb-client@4.0.55-1.Final_redhat_00001.1%3Farch=el9eap
58
url pkg:rpm/redhat/eap7-jboss-ejb-client@4.0.55-1.Final_redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap7-jboss-ejb-client@4.0.55-1.Final_redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jboss-ejb-client@4.0.55-1.Final_redhat_00001.1%3Farch=el8eap
59
url pkg:rpm/redhat/eap7-jboss-server-migration@1.10.0-39.Final_redhat_00039.1?arch=el8eap
purl pkg:rpm/redhat/eap7-jboss-server-migration@1.10.0-39.Final_redhat_00039.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jboss-server-migration@1.10.0-39.Final_redhat_00039.1%3Farch=el8eap
60
url pkg:rpm/redhat/eap7-jboss-server-migration@1.10.0-39.Final_redhat_00039.1?arch=el9eap
purl pkg:rpm/redhat/eap7-jboss-server-migration@1.10.0-39.Final_redhat_00039.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jboss-server-migration@1.10.0-39.Final_redhat_00039.1%3Farch=el9eap
61
url pkg:rpm/redhat/eap7-jboss-server-migration@1.10.0-39.Final_redhat_00039.1?arch=el7eap
purl pkg:rpm/redhat/eap7-jboss-server-migration@1.10.0-39.Final_redhat_00039.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jboss-server-migration@1.10.0-39.Final_redhat_00039.1%3Farch=el7eap
62
url pkg:rpm/redhat/eap7-jbossws-cxf@5.4.12-1.Final_redhat_00001.1?arch=el7eap
purl pkg:rpm/redhat/eap7-jbossws-cxf@5.4.12-1.Final_redhat_00001.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jbossws-cxf@5.4.12-1.Final_redhat_00001.1%3Farch=el7eap
63
url pkg:rpm/redhat/eap7-jbossws-cxf@5.4.12-1.Final_redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap7-jbossws-cxf@5.4.12-1.Final_redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jbossws-cxf@5.4.12-1.Final_redhat_00001.1%3Farch=el9eap
64
url pkg:rpm/redhat/eap7-jbossws-cxf@5.4.12-1.Final_redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap7-jbossws-cxf@5.4.12-1.Final_redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jbossws-cxf@5.4.12-1.Final_redhat_00001.1%3Farch=el8eap
65
url pkg:rpm/redhat/eap7-jsoup@1.15.4-1.redhat_00003.1?arch=el7eap
purl pkg:rpm/redhat/eap7-jsoup@1.15.4-1.redhat_00003.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jsoup@1.15.4-1.redhat_00003.1%3Farch=el7eap
66
url pkg:rpm/redhat/eap7-jsoup@1.15.4-1.redhat_00003.1?arch=el9eap
purl pkg:rpm/redhat/eap7-jsoup@1.15.4-1.redhat_00003.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jsoup@1.15.4-1.redhat_00003.1%3Farch=el9eap
67
url pkg:rpm/redhat/eap7-jsoup@1.15.4-1.redhat_00003.1?arch=el8eap
purl pkg:rpm/redhat/eap7-jsoup@1.15.4-1.redhat_00003.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-jsoup@1.15.4-1.redhat_00003.1%3Farch=el8eap
68
url pkg:rpm/redhat/eap7-undertow-jastow@2.0.15-1.Final_redhat_00001.1?arch=el9eap
purl pkg:rpm/redhat/eap7-undertow-jastow@2.0.15-1.Final_redhat_00001.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-undertow-jastow@2.0.15-1.Final_redhat_00001.1%3Farch=el9eap
69
url pkg:rpm/redhat/eap7-undertow-jastow@2.0.15-1.Final_redhat_00001.1?arch=el7eap
purl pkg:rpm/redhat/eap7-undertow-jastow@2.0.15-1.Final_redhat_00001.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-undertow-jastow@2.0.15-1.Final_redhat_00001.1%3Farch=el7eap
70
url pkg:rpm/redhat/eap7-undertow-jastow@2.0.15-1.Final_redhat_00001.1?arch=el8eap
purl pkg:rpm/redhat/eap7-undertow-jastow@2.0.15-1.Final_redhat_00001.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-undertow-jastow@2.0.15-1.Final_redhat_00001.1%3Farch=el8eap
71
url pkg:rpm/redhat/eap7-wildfly@7.4.19-1.GA_redhat_00002.1?arch=el8eap
purl pkg:rpm/redhat/eap7-wildfly@7.4.19-1.GA_redhat_00002.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-wildfly@7.4.19-1.GA_redhat_00002.1%3Farch=el8eap
72
url pkg:rpm/redhat/eap7-wildfly@7.4.19-1.GA_redhat_00002.1?arch=el7eap
purl pkg:rpm/redhat/eap7-wildfly@7.4.19-1.GA_redhat_00002.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-wildfly@7.4.19-1.GA_redhat_00002.1%3Farch=el7eap
73
url pkg:rpm/redhat/eap7-wildfly@7.4.19-1.GA_redhat_00002.1?arch=el9eap
purl pkg:rpm/redhat/eap7-wildfly@7.4.19-1.GA_redhat_00002.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-wildfly@7.4.19-1.GA_redhat_00002.1%3Farch=el9eap
74
url pkg:rpm/redhat/eap7-xalan-j2@2.7.1-37.redhat_00015.1?arch=el8eap
purl pkg:rpm/redhat/eap7-xalan-j2@2.7.1-37.redhat_00015.1?arch=el8eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-xalan-j2@2.7.1-37.redhat_00015.1%3Farch=el8eap
75
url pkg:rpm/redhat/eap7-xalan-j2@2.7.1-37.redhat_00015.1?arch=el7eap
purl pkg:rpm/redhat/eap7-xalan-j2@2.7.1-37.redhat_00015.1?arch=el7eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-xalan-j2@2.7.1-37.redhat_00015.1%3Farch=el7eap
76
url pkg:rpm/redhat/eap7-xalan-j2@2.7.1-37.redhat_00015.1?arch=el9eap
purl pkg:rpm/redhat/eap7-xalan-j2@2.7.1-37.redhat_00015.1?arch=el9eap
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-7rfx-9car-wkcs
1
vulnerability VCID-ftf5-r1db-9qfq
2
vulnerability VCID-mssa-dgz3-w7fh
3
vulnerability VCID-rfs8-njaq-qkc8
4
vulnerability VCID-wfmh-pkck-yfb3
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/eap7-xalan-j2@2.7.1-37.redhat_00015.1%3Farch=el9eap
References
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2022-36033.json
reference_id
reference_type
scores
0
value 6.1
scoring_system cvssv3
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2022-36033.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2022-36033
reference_id
reference_type
scores
0
value 0.01637
scoring_system epss
scoring_elements 0.81961
published_at 2026-04-18T12:55:00Z
1
value 0.01637
scoring_system epss
scoring_elements 0.81925
published_at 2026-04-13T12:55:00Z
2
value 0.01637
scoring_system epss
scoring_elements 0.8193
published_at 2026-04-12T12:55:00Z
3
value 0.01637
scoring_system epss
scoring_elements 0.81943
published_at 2026-04-11T12:55:00Z
4
value 0.01637
scoring_system epss
scoring_elements 0.81923
published_at 2026-04-09T12:55:00Z
5
value 0.01637
scoring_system epss
scoring_elements 0.81916
published_at 2026-04-08T12:55:00Z
6
value 0.01637
scoring_system epss
scoring_elements 0.8189
published_at 2026-04-07T12:55:00Z
7
value 0.01637
scoring_system epss
scoring_elements 0.81894
published_at 2026-04-04T12:55:00Z
8
value 0.01637
scoring_system epss
scoring_elements 0.81871
published_at 2026-04-02T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2022-36033
2
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-36033
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-36033
3
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
value 6.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
4
reference_url https://github.com/jhy/jsoup
reference_id
reference_type
scores
0
value 6.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
url https://github.com/jhy/jsoup
5
reference_url https://github.com/jhy/jsoup/releases/tag/jsoup-1.15.3
reference_id
reference_type
scores
0
value 6.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2025-04-22T15:44:56Z/
url https://github.com/jhy/jsoup/releases/tag/jsoup-1.15.3
6
reference_url https://github.com/jhy/jsoup/security/advisories/GHSA-gp7f-rwcx-9369
reference_id
reference_type
scores
0
value 6.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
1
value MODERATE
scoring_system cvssv3.1_qr
scoring_elements
2
value MODERATE
scoring_system generic_textual
scoring_elements
3
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2025-04-22T15:44:56Z/
url https://github.com/jhy/jsoup/security/advisories/GHSA-gp7f-rwcx-9369
7
reference_url https://jsoup.org/news/release-1.15.3
reference_id
reference_type
scores
0
value 6.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2025-04-22T15:44:56Z/
url https://jsoup.org/news/release-1.15.3
8
reference_url https://nvd.nist.gov/vuln/detail/CVE-2022-36033
reference_id
reference_type
scores
0
value 6.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2022-36033
9
reference_url https://security.netapp.com/advisory/ntap-20221104-0006
reference_id
reference_type
scores
0
value 6.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
url https://security.netapp.com/advisory/ntap-20221104-0006
10
reference_url https://security.netapp.com/advisory/ntap-20221104-0006/
reference_id
reference_type
scores
0
value 6.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
1
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2025-04-22T15:44:56Z/
url https://security.netapp.com/advisory/ntap-20221104-0006/
11
reference_url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1018931
reference_id 1018931
reference_type
scores
url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1018931
12
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=2127078
reference_id 2127078
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=2127078
13
reference_url https://github.com/advisories/GHSA-gp7f-rwcx-9369
reference_id GHSA-gp7f-rwcx-9369
reference_type
scores
0
value MODERATE
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-gp7f-rwcx-9369
14
reference_url https://access.redhat.com/errata/RHSA-2024:6656
reference_id RHSA-2024:6656
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:6656
Weaknesses
0
cwe_id 79
name Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
description The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users.
1
cwe_id 1035
name OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities
description Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017.
2
cwe_id 937
name OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities
description Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013.
3
cwe_id 87
name Improper Neutralization of Alternate XSS Syntax
description The product does not neutralize or incorrectly neutralizes user-controlled input for alternate script syntax.
Exploits
Severity_range_score4.0 - 6.9
Exploitability0.5
Weighted_severity6.2
Risk_score3.1
Resource_urlhttp://public2.vulnerablecode.io/vulnerabilities/VCID-7rfx-9car-wkcs