You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's unclear why escape() is being used - there is no documentation stating that some parts of API responses are supposed to be interpreted as HTML. Use of escape() complicates how this CNA would authenticate to CVE Services. They need to send
CVE-API-ORG: AT&T
However, in the pathname component of an API URL, they are required to use AT%26T and cannot use AT%26amp%3BT instead. For example, they could access the /api/org/AT%26T endpoint.
The text was updated successfully, but these errors were encountered:
Sending
to the POST /api/org endpoint results in a response containing
because of "escape()" in
cve-services/src/controller/org.controller/index.js
Line 155 in b083cfe
It's unclear why escape() is being used - there is no documentation stating that some parts of API responses are supposed to be interpreted as HTML. Use of escape() complicates how this CNA would authenticate to CVE Services. They need to send
However, in the pathname component of an API URL, they are required to use AT%26T and cannot use AT%26amp%3BT instead. For example, they could access the /api/org/AT%26T endpoint.
The text was updated successfully, but these errors were encountered: