Vulnerability Instance
Lookup for vulnerabilities affecting packages.
GET /api/vulnerabilities/91530?format=api
{ "url": "http://public2.vulnerablecode.io/api/vulnerabilities/91530?format=api", "vulnerability_id": "VCID-4hv5-t5rh-ayf9", "summary": "FHIR Validator: Unauthenticated Blind SSRF via /loadIG Endpoint Enables Internal Network Probing\n## Summary\n\nThe `/loadIG` HTTP endpoint in the FHIR Validator HTTP service accepts a user-supplied URL via JSON body and makes server-side HTTP requests to it without any hostname, scheme, or domain validation. An unauthenticated attacker with network access to the validator can probe internal network services, cloud metadata endpoints, and map network topology through error-based information leakage. With `explore=true` (the default for this code path), each request triggers multiple outbound HTTP calls, amplifying reconnaissance capability.\n\n## Details\n\n**Root cause chain:**\n\n1. `LoadIGHTTPHandler.handle()` reads the `ig` field from user-supplied JSON and passes it directly to `IgLoader.loadIg()` with no validation:\n\n```java\n// LoadIGHTTPHandler.java:35,43\nString ig = wrapper.asString(\"ig\");\nengine.getIgLoader().loadIg(engine.getIgs(), engine.getBinaries(), ig, false);\n```\n\n2. `loadIg()` calls `loadIgSource(srcPackage, recursive, true)` with `explore=true` (IgLoader.java:153).\n\n3. `loadIgSource()` checks `Common.isNetworkPath(src)` which only verifies the URL starts with `http:` or `https:` — no host/IP validation (Common.java:14-16).\n\n4. The URL reaches `ManagedWebAccess.get()` which calls `inAllowedPaths()`. This check is a no-op by default because `allowedDomains` is initialized as an empty list, and the code explicitly returns `true` when empty:\n\n```java\n// ManagedWebAccess.java:104-106\nstatic boolean inAllowedPaths(String pathname) {\n if (allowedDomains.isEmpty()) {\n return true; // DEFAULT: all domains allowed\n }\n // ...\n}\n```\n\nThe source code has a `//TODO get this from fhir settings` comment (line 82) confirming this is an incomplete security control.\n\n5. `SimpleHTTPClient.get()` makes the HTTP request and follows 301/302/307/308 redirects up to 5 times. Redirect targets are NOT re-validated against `inAllowedPaths()`:\n\n```java\n// SimpleHTTPClient.java:88-99\ncase HttpURLConnection.HTTP_MOVED_PERM,\n HttpURLConnection.HTTP_MOVED_TEMP,\n 307, 308:\n String location = connection.getHeaderField(\"Location\");\n url = new URL(originalUrl, location); // No domain re-validation\n continue;\n```\n\n6. The server binds to all interfaces with no authentication (FhirValidatorHttpService.java:31):\n\n```java\nserver = HttpServer.create(new InetSocketAddress(port), 0);\n```\n\n7. Errors propagate back to the attacker with exception details:\n\n```java\n// LoadIGHTTPHandler.java:49\nsendOperationOutcome(exchange, 500,\n OperationOutcomeUtilities.createError(\"Failed to load IG: \" + e.getMessage()), ...);\n```\n\n**Redirect bypass:** Even if `allowedDomains` were configured, the domain check in `ManagedWebAccessor.setupSimpleHTTPClient()` (line 31) only validates the initial URL. An attacker can host a redirect on an allowed domain that points to an internal target.\n\n## PoC\n\n1. Start the FHIR Validator in HTTP server mode:\n```bash\njava -jar validator_cli.jar -server -port 8080\n```\n\n2. Probe a cloud metadata endpoint:\n```bash\ncurl -X POST http://<validator-host>:8080/loadIG \\\n -H \"Content-Type: application/json\" \\\n -d '{\"ig\": \"http://169.254.169.254/latest/meta-data/\"}'\n```\n\nExpected: The validator makes a GET request to the AWS metadata service from its own network position. The error response reveals whether the endpoint is reachable (e.g., connection refused vs. parse error on HTML content).\n\n3. Port scan an internal host:\n```bash\n# Open port — returns quickly with a parse error (content received but not valid FHIR)\ncurl -X POST http://<validator-host>:8080/loadIG \\\n -H \"Content-Type: application/json\" \\\n -d '{\"ig\": \"http://10.0.0.1:8080/\"}'\n\n# Closed port — returns with \"Connection refused\"\ncurl -X POST http://<validator-host>:8080/loadIG \\\n -H \"Content-Type: application/json\" \\\n -d '{\"ig\": \"http://10.0.0.1:9999/\"}'\n```\n\n4. Redirect bypass (if allowedDomains were configured):\n```bash\n# Attacker hosts redirect: http://allowed-domain.com/redir → http://127.0.0.1:8080/admin\ncurl -X POST http://<validator-host>:8080/loadIG \\\n -H \"Content-Type: application/json\" \\\n -d '{\"ig\": \"http://allowed-domain.com/redir\"}'\n```\n\nThe validator follows the redirect to the internal target without re-checking the domain allowlist.\n\n## Impact\n\nAn unauthenticated attacker with network access to the FHIR Validator HTTP service can:\n\n- **Probe internal network services** — differentiate open/closed ports and reachable/unreachable hosts via error message analysis (connection refused vs. timeout vs. content parse errors)\n- **Access cloud metadata endpoints** — reach AWS/GCP/Azure instance metadata services (169.254.169.254) from the validator's network position\n- **Map internal network topology** — systematically enumerate internal hosts and services\n- **Bypass domain restrictions via redirects** — even if allowedDomains is configured, redirect following does not re-validate targets\n- **Amplify reconnaissance** — each `/loadIG` call with `explore=true` generates multiple outbound requests (package.tgz, JSON, XML variants)\n\nThis is a blind SSRF — the fetched content is not directly returned. Impact is limited to network probing and error-based information leakage rather than full content exfiltration.\n\n## Recommended Fix\n\n1. **Add URL validation** in `LoadIGHTTPHandler` before passing to `loadIg()` — reject private/internal IP ranges and non-standard ports:\n\n```java\n// LoadIGHTTPHandler.java — add before line 43\nif (Common.isNetworkPath(ig)) {\n URL url = new URL(ig);\n InetAddress addr = InetAddress.getByName(url.getHost());\n if (addr.isLoopbackAddress() || addr.isLinkLocalAddress() ||\n addr.isSiteLocalAddress() || addr.isAnyLocalAddress()) {\n sendOperationOutcome(exchange, 400,\n OperationOutcomeUtilities.createError(\"URL targets a private/internal address\"),\n getAcceptHeader(exchange));\n return;\n }\n}\n```\n\n2. **Re-validate redirect targets** in `SimpleHTTPClient.get()` — check `inAllowedPaths()` for each redirect URL:\n\n```java\n// SimpleHTTPClient.java — inside the redirect case (after line 98)\nurl = new URL(originalUrl, location);\nif (!ManagedWebAccess.inAllowedPaths(url.toString())) {\n throw new IOException(\"Redirect target '\" + url + \"' is not in allowed domains\");\n}\n```\n\n3. **Configure `allowedDomains` by default** to restrict outbound requests to known FHIR registries (e.g., `packages.fhir.org`, `hl7.org`), or require explicit opt-in for open access.\n\n4. **Add authentication** to the HTTP service, at minimum for state-changing endpoints like `/loadIG`.", "aliases": [ { "alias": "CVE-2026-34360" }, { "alias": "GHSA-3ww8-jw56-9f5h" } ], "fixed_packages": [ { "url": "http://public2.vulnerablecode.io/api/packages/113457?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.9.4", "is_vulnerable": false, "affected_by_vulnerabilities": [], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.9.4" } ], "affected_packages": [ { "url": "http://public2.vulnerablecode.io/api/packages/633336?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@0.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@0.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/633337?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@0.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@0.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/633338?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@0.0.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@0.0.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/633339?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@0.1.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@0.1.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/633340?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@0.1.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@0.1.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/633341?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@1.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@1.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/633342?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@1.1.67", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@1.1.67" }, { "url": "http://public2.vulnerablecode.io/api/packages/633343?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@4.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@4.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/633344?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@4.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@4.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/633345?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@4.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@4.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/633346?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@4.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@4.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/633347?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@4.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@4.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/633348?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@4.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@4.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/633349?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/633350?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/633351?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/633352?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/633353?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/633354?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/633355?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/633356?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/633357?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/633358?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/633359?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.17", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.17" }, { "url": "http://public2.vulnerablecode.io/api/packages/633360?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/633361?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.19", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.19" }, { "url": "http://public2.vulnerablecode.io/api/packages/633362?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.20", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.20" }, { "url": "http://public2.vulnerablecode.io/api/packages/633363?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.21", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.21" }, { "url": "http://public2.vulnerablecode.io/api/packages/633364?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.22", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.0.22" }, { "url": "http://public2.vulnerablecode.io/api/packages/633365?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/633366?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/633367?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/633368?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/633369?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/633370?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/633371?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/633372?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/633373?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/633374?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/633375?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/633376?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/633377?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/633378?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/633379?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/633380?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/633381?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/633382?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.17", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.17" }, { "url": "http://public2.vulnerablecode.io/api/packages/633383?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/633384?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.19", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.19" }, { "url": "http://public2.vulnerablecode.io/api/packages/633385?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.20", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.20" }, { "url": "http://public2.vulnerablecode.io/api/packages/633386?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.21", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.21" }, { "url": "http://public2.vulnerablecode.io/api/packages/633387?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.22", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.1.22" }, { "url": "http://public2.vulnerablecode.io/api/packages/633388?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/633389?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/633390?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/633391?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/633392?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/633393?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/633394?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/633395?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/633396?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/633397?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/633398?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/633399?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/633400?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/633401?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/633402?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.19", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.19" }, { "url": "http://public2.vulnerablecode.io/api/packages/633403?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.20", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.2.20" }, { "url": "http://public2.vulnerablecode.io/api/packages/633404?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/633405?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/633406?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/633407?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/633408?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/633409?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/633410?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/633411?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/633412?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/633413?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/633414?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/633415?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/633416?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/633417?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.3.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/633418?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/633419?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/633420?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/633421?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/633422?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/633423?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/633424?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/633425?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/633426?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/633427?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/633428?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/633429?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/633430?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.4.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/633431?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/633432?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/633433?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/633434?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/633435?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/633436?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/633437?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/633438?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/633439?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/633440?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/633441?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/633442?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/633443?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/633444?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/633445?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.5.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/633446?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/633447?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/633448?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/633449?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/633450?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/633451?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/633452?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/633453?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/633454?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/633455?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/633456?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/633457?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/633458?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.17", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.17" }, { "url": "http://public2.vulnerablecode.io/api/packages/633459?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/633460?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.19", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.19" }, { "url": "http://public2.vulnerablecode.io/api/packages/633461?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.20", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.20" }, { "url": "http://public2.vulnerablecode.io/api/packages/633462?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.21", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.21" }, { "url": "http://public2.vulnerablecode.io/api/packages/633463?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.22", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.22" }, { "url": "http://public2.vulnerablecode.io/api/packages/633464?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.23", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.23" }, { "url": "http://public2.vulnerablecode.io/api/packages/633465?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.24", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.24" }, { "url": "http://public2.vulnerablecode.io/api/packages/633466?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.25", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.25" }, { "url": "http://public2.vulnerablecode.io/api/packages/633467?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.26", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.26" }, { "url": "http://public2.vulnerablecode.io/api/packages/633468?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.27", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.27" }, { "url": "http://public2.vulnerablecode.io/api/packages/633469?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.28", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.28" }, { "url": "http://public2.vulnerablecode.io/api/packages/633470?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.29", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.29" }, { "url": "http://public2.vulnerablecode.io/api/packages/633471?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.30", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.30" }, { "url": "http://public2.vulnerablecode.io/api/packages/633472?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.31", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.31" }, { "url": "http://public2.vulnerablecode.io/api/packages/633473?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.32", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.32" }, { "url": "http://public2.vulnerablecode.io/api/packages/633474?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.33", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.33" }, { "url": "http://public2.vulnerablecode.io/api/packages/633475?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.34", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.34" }, { "url": "http://public2.vulnerablecode.io/api/packages/633476?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.35", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.35" }, { "url": "http://public2.vulnerablecode.io/api/packages/633477?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.36", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.36" }, { "url": "http://public2.vulnerablecode.io/api/packages/633478?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.37", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.37" }, { "url": "http://public2.vulnerablecode.io/api/packages/633479?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.38", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.38" }, { "url": "http://public2.vulnerablecode.io/api/packages/633480?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.39", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.39" }, { "url": "http://public2.vulnerablecode.io/api/packages/633481?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.40", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.40" }, { "url": "http://public2.vulnerablecode.io/api/packages/633482?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.41", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.41" }, { "url": "http://public2.vulnerablecode.io/api/packages/633483?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.42", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.42" }, { "url": "http://public2.vulnerablecode.io/api/packages/633484?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.43", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.43" }, { "url": "http://public2.vulnerablecode.io/api/packages/633485?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.44", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.44" }, { "url": "http://public2.vulnerablecode.io/api/packages/633486?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.45", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.45" }, { "url": "http://public2.vulnerablecode.io/api/packages/633487?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.46", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.46" }, { "url": "http://public2.vulnerablecode.io/api/packages/633488?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.47", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.47" }, { "url": "http://public2.vulnerablecode.io/api/packages/633489?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.48", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.48" }, { "url": "http://public2.vulnerablecode.io/api/packages/633490?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.50", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.50" }, { "url": "http://public2.vulnerablecode.io/api/packages/633491?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.51", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.51" }, { "url": "http://public2.vulnerablecode.io/api/packages/633492?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.52", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.52" }, { "url": "http://public2.vulnerablecode.io/api/packages/633493?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.53", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.53" }, { "url": "http://public2.vulnerablecode.io/api/packages/633494?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.54", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.54" }, { "url": "http://public2.vulnerablecode.io/api/packages/633495?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.55", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.55" }, { "url": "http://public2.vulnerablecode.io/api/packages/633496?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.56", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.56" }, { "url": "http://public2.vulnerablecode.io/api/packages/633497?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.57", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.57" }, { "url": "http://public2.vulnerablecode.io/api/packages/633498?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.58", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.58" }, { "url": "http://public2.vulnerablecode.io/api/packages/633499?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.59", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.59" }, { "url": "http://public2.vulnerablecode.io/api/packages/633500?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.60", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.60" }, { "url": "http://public2.vulnerablecode.io/api/packages/633501?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.61", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.61" }, { "url": "http://public2.vulnerablecode.io/api/packages/633502?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.62", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.62" }, { "url": "http://public2.vulnerablecode.io/api/packages/633503?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.63", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.63" }, { "url": "http://public2.vulnerablecode.io/api/packages/633504?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.64", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.64" }, { "url": "http://public2.vulnerablecode.io/api/packages/633505?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.65", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.65" }, { "url": "http://public2.vulnerablecode.io/api/packages/633506?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.66", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.66" }, { "url": "http://public2.vulnerablecode.io/api/packages/633507?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.67", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.67" }, { "url": "http://public2.vulnerablecode.io/api/packages/633508?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.68", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.68" }, { "url": "http://public2.vulnerablecode.io/api/packages/633509?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.69", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.69" }, { "url": "http://public2.vulnerablecode.io/api/packages/633510?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.70", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.70" }, { "url": "http://public2.vulnerablecode.io/api/packages/633511?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.71", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.71" }, { "url": "http://public2.vulnerablecode.io/api/packages/633512?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.72", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.72" }, { "url": "http://public2.vulnerablecode.io/api/packages/633513?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.73", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.73" }, { "url": "http://public2.vulnerablecode.io/api/packages/633514?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.74", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.74" }, { "url": "http://public2.vulnerablecode.io/api/packages/633515?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.75", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.75" }, { "url": "http://public2.vulnerablecode.io/api/packages/633516?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.76", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.76" }, { "url": "http://public2.vulnerablecode.io/api/packages/633517?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.77", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.77" }, { "url": "http://public2.vulnerablecode.io/api/packages/633518?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.78", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.78" }, { "url": "http://public2.vulnerablecode.io/api/packages/633519?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.79", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.79" }, { "url": "http://public2.vulnerablecode.io/api/packages/633520?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.80", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.80" }, { "url": "http://public2.vulnerablecode.io/api/packages/633521?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.81", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.81" }, { "url": "http://public2.vulnerablecode.io/api/packages/633522?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.82", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.82" }, { "url": "http://public2.vulnerablecode.io/api/packages/633523?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.83", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.83" }, { "url": "http://public2.vulnerablecode.io/api/packages/633524?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.84", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.84" }, { "url": "http://public2.vulnerablecode.io/api/packages/633525?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.85", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.85" }, { "url": "http://public2.vulnerablecode.io/api/packages/633526?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.86", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.86" }, { "url": "http://public2.vulnerablecode.io/api/packages/633527?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.87", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.87" }, { "url": "http://public2.vulnerablecode.io/api/packages/633528?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.88", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.88" }, { "url": "http://public2.vulnerablecode.io/api/packages/633529?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.89", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.89" }, { "url": "http://public2.vulnerablecode.io/api/packages/633530?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.90", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.90" }, { "url": "http://public2.vulnerablecode.io/api/packages/633531?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.91", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-mm8m-2qys-bfdh" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.91" }, { "url": "http://public2.vulnerablecode.io/api/packages/63677?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.92", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.92" }, { "url": "http://public2.vulnerablecode.io/api/packages/642666?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.93", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.93" }, { "url": "http://public2.vulnerablecode.io/api/packages/642667?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.94", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.94" }, { "url": "http://public2.vulnerablecode.io/api/packages/642668?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.95", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.95" }, { "url": "http://public2.vulnerablecode.io/api/packages/642669?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.96", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.96" }, { "url": "http://public2.vulnerablecode.io/api/packages/642670?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.97", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.97" }, { "url": "http://public2.vulnerablecode.io/api/packages/642671?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.98", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.98" }, { "url": "http://public2.vulnerablecode.io/api/packages/642672?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.99", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.99" }, { "url": "http://public2.vulnerablecode.io/api/packages/642673?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.100", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.100" }, { "url": "http://public2.vulnerablecode.io/api/packages/642674?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.101", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.101" }, { "url": "http://public2.vulnerablecode.io/api/packages/642675?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.102", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.102" }, { "url": "http://public2.vulnerablecode.io/api/packages/642676?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.103", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.103" }, { "url": "http://public2.vulnerablecode.io/api/packages/642677?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.104", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.104" }, { "url": "http://public2.vulnerablecode.io/api/packages/642678?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.105", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-akg4-sqhf-ekb4" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.105" }, { "url": "http://public2.vulnerablecode.io/api/packages/64293?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.106" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002520?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.107", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.107" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002521?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.108", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.108" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002522?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.109", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.109" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002523?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.110", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.110" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002524?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.111", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.111" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002525?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.112", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.112" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002526?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.113", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.113" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002527?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.114", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.114" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002528?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.115", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.115" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002529?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.116", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.116" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002530?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.117", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.117" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002531?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.881", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.881" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002532?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.971", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@5.6.971" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002533?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002534?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002535?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002536?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002537?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002538?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002539?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002540?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002541?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002542?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002543?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002544?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002545?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002546?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002547?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002548?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002549?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002550?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.17", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.17" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002551?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002552?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.19", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.19" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002553?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.20", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.20" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002554?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.21", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.21" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002555?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.22", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.22" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002556?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.22.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.22.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002557?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.22.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.22.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002558?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.23", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.23" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002559?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.24", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.24" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002560?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.25", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.0.25" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002561?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002562?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002563?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002564?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.2.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.2.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002565?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.2.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002566?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002567?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002568?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002569?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002570?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002571?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002572?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002573?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002574?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002575?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002576?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002577?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002578?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002579?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.1.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002580?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002581?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002582?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002583?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002584?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002585?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002586?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002587?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.6.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.6.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002588?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002589?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002590?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002591?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002592?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002593?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002594?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002595?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002596?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.2.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002597?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002598?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002599?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002600?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002601?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002602?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002603?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002604?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002605?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002606?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002607?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002608?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002609?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002610?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002611?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002612?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002613?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002614?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.17", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.17" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002615?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002616?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.19", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.19" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002617?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.20", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.20" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002618?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.21", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.21" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002619?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.22", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.22" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002620?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.23", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.23" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002621?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.24", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.24" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002622?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.25", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.25" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002623?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.26", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.26" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002624?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.27", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.27" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002625?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.28", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.28" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002626?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.29", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.29" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002627?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.30", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.30" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002628?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.31", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.31" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002629?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.32", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.3.32" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002630?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.4.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.4.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002631?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.4.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.4.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002632?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.4.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.4.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002633?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.4.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.4.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002634?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.4.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.4.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002635?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002636?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002637?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002638?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002639?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002640?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002641?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002642?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002643?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002644?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002645?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002646?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002647?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002648?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002649?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002650?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002651?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002652?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.17", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.17" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002653?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002654?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.18.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.18.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002655?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.19", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.19" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002656?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.20", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.20" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002657?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.21", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.21" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002658?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.22", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.22" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002659?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.23", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.23" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002660?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.24", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.24" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002661?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.25", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.25" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002662?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.26", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.26" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002663?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.27", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.27" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002664?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.28", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.5.28" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002665?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002666?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002667?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002668?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002669?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002670?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002671?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002672?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.6.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002673?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002674?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002675?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002676?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002677?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002678?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002679?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002680?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002681?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002682?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002683?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002684?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.7.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002685?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.8.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.8.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002686?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.8.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.8.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002687?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.8.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.8.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002688?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.9.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.9.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002689?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.9.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.9.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002690?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.9.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.9.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/1002691?format=api", "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.9.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4hv5-t5rh-ayf9" }, { "vulnerability": "VCID-zjch-48cb-6ucm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.core@6.9.3" } ], "references": [ { "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2026-34360", "reference_id": "", "reference_type": "", "scores": [ { "value": "0.00063", "scoring_system": "epss", "scoring_elements": "0.1974", "published_at": "2026-06-05T12:55:00Z" }, { "value": "0.00063", "scoring_system": "epss", "scoring_elements": "0.19736", "published_at": "2026-06-06T12:55:00Z" }, { "value": "0.00065", "scoring_system": "epss", "scoring_elements": "0.20481", "published_at": "2026-06-07T12:55:00Z" } ], "url": "https://api.first.org/data/v1/epss?cve=CVE-2026-34360" }, { "reference_url": "https://github.com/hapifhir/org.hl7.fhir.core", "reference_id": "", "reference_type": "", "scores": [ { "value": "5.8", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N" }, { "value": "MODERATE", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://github.com/hapifhir/org.hl7.fhir.core" }, { "reference_url": "https://github.com/hapifhir/org.hl7.fhir.core/security/advisories/GHSA-3ww8-jw56-9f5h", "reference_id": "", "reference_type": "", "scores": [ { "value": "5.8", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N" }, { "value": "MODERATE", "scoring_system": "cvssv3.1_qr", "scoring_elements": "" }, { "value": "MODERATE", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:P/A:Y/T:P/P:M/B:A/M:M/D:T/2026-04-01T13:58:21Z/" } ], "url": "https://github.com/hapifhir/org.hl7.fhir.core/security/advisories/GHSA-3ww8-jw56-9f5h" }, { "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34360", "reference_id": "", "reference_type": "", "scores": [ { "value": "5.8", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N" }, { "value": "MODERATE", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34360" }, { "reference_url": "https://github.com/advisories/GHSA-3ww8-jw56-9f5h", "reference_id": "GHSA-3ww8-jw56-9f5h", "reference_type": "", "scores": [ { "value": "MODERATE", "scoring_system": "cvssv3.1_qr", "scoring_elements": "" } ], "url": "https://github.com/advisories/GHSA-3ww8-jw56-9f5h" } ], "weaknesses": [ { "cwe_id": 918, "name": "Server-Side Request Forgery (SSRF)", "description": "The web server receives a URL or similar request from an upstream component and retrieves the contents of this URL, but it does not sufficiently ensure that the request is being sent to the expected destination." }, { "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." }, { "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." } ], "exploits": [], "severity_range_score": "4.0 - 6.9", "exploitability": "0.5", "weighted_severity": "6.2", "risk_score": 3.1, "resource_url": "http://public2.vulnerablecode.io/vulnerabilities/VCID-4hv5-t5rh-ayf9" }