Risk Level | Number of Alerts |
---|---|
High
|
0
|
Medium
|
2
|
Low
|
4
|
Informational
|
9
|
False Positives:
|
0
|
For each step: result (Pass/Fail) - risk (of highest alert(s) for the step, if any).
Name | Risk Level | Number of Instances |
---|---|---|
CSP: style-src unsafe-inline | Medium | 1 |
Sub Resource Integrity Attribute Missing | Medium | 7 |
CSP: Notices | Low | 1 |
Cross-Domain JavaScript Source File Inclusion | Low | 3 |
Insufficient Site Isolation Against Spectre Vulnerability | Low | 3 |
Permissions Policy Header Not Set | Low | 1 |
Base64 Disclosure | Informational | 1 |
Non-Storable Content | Informational | 1 |
Re-examine Cache-control Directives | Informational | 1 |
Sec-Fetch-Dest Header is Missing | Informational | 3 |
Sec-Fetch-Mode Header is Missing | Informational | 3 |
Sec-Fetch-Site Header is Missing | Informational | 3 |
Sec-Fetch-User Header is Missing | Informational | 3 |
Session Management Response Identified | Informational | 1 |
Storable and Cacheable Content | Informational | 3 |
Medium |
CSP: style-src unsafe-inline |
---|---|
Description |
Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks. Including (but not limited to) Cross Site Scripting (XSS), and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | content-security-policy |
Attack | |
Evidence | default-src 'self'; font-src 'self' data: *.crisp.chat wss://client.relay.crisp.chat; img-src 'self' data: rdv-insertion-medias-production.s3.fr-par.scw.cloud *.crisp.chat wss://client.relay.crisp.chat flo.uri.sh public.flourish.studio matomo.inclusion.beta.gouv.fr; media-src 'self' rdv-insertion-medias-production.s3.fr-par.scw.cloud; frame-src 'self' flo.uri.sh public.flourish.studio tally.so; object-src 'none'; script-src 'self' matomo.inclusion.beta.gouv.fr *.crisp.chat wss://client.relay.crisp.chat flo.uri.sh public.flourish.studio tally.so sentry.incubateur.net 'nonce-fxaF+Yc1TOaA8ItUqADwBQ=='; style-src 'self' 'unsafe-inline' *.crisp.chat wss://client.relay.crisp.chat; connect-src 'self' https://www.rdv-solidarites.fr sentry.incubateur.net matomo.inclusion.beta.gouv.fr tally.so *.crisp.chat wss://client.relay.crisp.chat; form-action 'self' https://www.rdv-solidarites.fr; frame-ancestors 'self' https://www.rdv-solidarites.fr matomo.inclusion.beta.gouv.fr; worker-src 'self' blob:; report-uri /csp-violation-report |
Other Info | style-src includes unsafe-inline. |
Instances | 1 |
Solution |
Ensure that your web server, application server, load balancer, etc. is properly configured to set the Content-Security-Policy header.
|
Reference |
https://www.w3.org/TR/CSP/
https://caniuse.com/#search=content+security+policy https://content-security-policy.com/ https://github.com/HtmlUnit/htmlunit-csp https://developers.google.com/web/fundamentals/security/csp#policy_applies_to_a_wide_variety_of_resources |
CWE Id | 693 |
WASC Id | 15 |
Plugin Id | 10055 |
Medium |
Sub Resource Integrity Attribute Missing |
---|---|
Description |
The integrity attribute is missing on a script or link tag served by an external server. The integrity tag prevents an attacker who have gained access to this server from injecting a malicious content.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | |
Attack | |
Evidence | <link rel="icon" type="image/x-icon" href="https://www.rdv-insertion.fr/assets/logos/rdvi-favicon-e4521365c8c188ca2cd15975b947e4bcffca5a97616e83dc06bbea224a0d54a1.png" /> |
Other Info | |
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | |
Attack | |
Evidence | <link rel="stylesheet" href="https://www.rdv-insertion.fr/assets/application-3a02cccc1714f8b1d9e2e246cbedd7df8624c6e17516389a7b3600437a4ceea8.css" media="all" data-turbo-track="reload" /> |
Other Info | |
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | |
Attack | |
Evidence | <link rel="stylesheet" href="https://www.rdv-insertion.fr/assets/dsfr.min-e1b79ac86d3dee13291fd93b18357a54f9acf717e5555bee794f852eb89fadbb.css" application-turbo-track="reload" /> |
Other Info | |
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | |
Attack | |
Evidence | <link rel="stylesheet" href="https://www.rdv-insertion.fr/assets/utility/dsfr-utility.min-3db24ec23dd69cbe13216f103b7d356993924560bf8b8bd6695eeb6c80c39a4b.css" application-turbo-track="reload" /> |
Other Info | |
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | |
Attack | |
Evidence | <script src="https://www.rdv-insertion.fr/assets/application-2d881b23555f8f9bdb759702b69842705ad8ace73cdcc786abd60ac5cce62955.js" data-turbo-track="reload" defer="defer"></script> |
Other Info | |
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | |
Attack | |
Evidence | <script src="https://www.rdv-insertion.fr/assets/dsfr.module.min-5310c4c16f28e81206a25009fb95cac825efe4c56d9cfc98b2edebd748d05d3f.js" type="module"></script> |
Other Info | |
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | |
Attack | |
Evidence | <script src="https://www.rdv-insertion.fr/assets/dsfr.nomodule.min-32c03c807947d532406ff1dfa2b7da9e21c1a90898bf6d67cfb7550e99f720da.js" nomodule="nomodule"></script> |
Other Info | |
Instances | 7 |
Solution |
Provide a valid integrity attribute to the tag.
|
Reference | https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity |
CWE Id | 345 |
WASC Id | 15 |
Plugin Id | 90003 |
Low |
CSP: Notices |
---|---|
Description |
Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks. Including (but not limited to) Cross Site Scripting (XSS), and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | content-security-policy |
Attack | |
Evidence | default-src 'self'; font-src 'self' data: *.crisp.chat wss://client.relay.crisp.chat; img-src 'self' data: rdv-insertion-medias-production.s3.fr-par.scw.cloud *.crisp.chat wss://client.relay.crisp.chat flo.uri.sh public.flourish.studio matomo.inclusion.beta.gouv.fr; media-src 'self' rdv-insertion-medias-production.s3.fr-par.scw.cloud; frame-src 'self' flo.uri.sh public.flourish.studio tally.so; object-src 'none'; script-src 'self' matomo.inclusion.beta.gouv.fr *.crisp.chat wss://client.relay.crisp.chat flo.uri.sh public.flourish.studio tally.so sentry.incubateur.net 'nonce-fxaF+Yc1TOaA8ItUqADwBQ=='; style-src 'self' 'unsafe-inline' *.crisp.chat wss://client.relay.crisp.chat; connect-src 'self' https://www.rdv-solidarites.fr sentry.incubateur.net matomo.inclusion.beta.gouv.fr tally.so *.crisp.chat wss://client.relay.crisp.chat; form-action 'self' https://www.rdv-solidarites.fr; frame-ancestors 'self' https://www.rdv-solidarites.fr matomo.inclusion.beta.gouv.fr; worker-src 'self' blob:; report-uri /csp-violation-report |
Other Info | Warnings: The report-uri directive has been deprecated in favor of the new report-to directive |
Instances | 1 |
Solution |
Ensure that your web server, application server, load balancer, etc. is properly configured to set the Content-Security-Policy header.
|
Reference |
https://www.w3.org/TR/CSP/
https://caniuse.com/#search=content+security+policy https://content-security-policy.com/ https://github.com/HtmlUnit/htmlunit-csp https://developers.google.com/web/fundamentals/security/csp#policy_applies_to_a_wide_variety_of_resources |
CWE Id | 693 |
WASC Id | 15 |
Plugin Id | 10055 |
Low |
Cross-Domain JavaScript Source File Inclusion |
---|---|
Description |
The page includes one or more script files from a third-party domain.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | https://www.rdv-insertion.fr/assets/application-2d881b23555f8f9bdb759702b69842705ad8ace73cdcc786abd60ac5cce62955.js |
Attack | |
Evidence | <script src="https://www.rdv-insertion.fr/assets/application-2d881b23555f8f9bdb759702b69842705ad8ace73cdcc786abd60ac5cce62955.js" data-turbo-track="reload" defer="defer"></script> |
Other Info | |
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | https://www.rdv-insertion.fr/assets/dsfr.module.min-5310c4c16f28e81206a25009fb95cac825efe4c56d9cfc98b2edebd748d05d3f.js |
Attack | |
Evidence | <script src="https://www.rdv-insertion.fr/assets/dsfr.module.min-5310c4c16f28e81206a25009fb95cac825efe4c56d9cfc98b2edebd748d05d3f.js" type="module"></script> |
Other Info | |
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | https://www.rdv-insertion.fr/assets/dsfr.nomodule.min-32c03c807947d532406ff1dfa2b7da9e21c1a90898bf6d67cfb7550e99f720da.js |
Attack | |
Evidence | <script src="https://www.rdv-insertion.fr/assets/dsfr.nomodule.min-32c03c807947d532406ff1dfa2b7da9e21c1a90898bf6d67cfb7550e99f720da.js" nomodule="nomodule"></script> |
Other Info | |
Instances | 3 |
Solution |
Ensure JavaScript source files are loaded from only trusted sources, and the sources can't be controlled by end users of the application.
|
Reference | |
CWE Id | 829 |
WASC Id | 15 |
Plugin Id | 10017 |
Low |
Insufficient Site Isolation Against Spectre Vulnerability |
---|---|
Description |
Cross-Origin-Resource-Policy header is an opt-in header designed to counter side-channels attacks like Spectre. Resource should be specifically set as shareable amongst different origins.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | Cross-Origin-Resource-Policy |
Attack | |
Evidence | |
Other Info | |
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | Cross-Origin-Embedder-Policy |
Attack | |
Evidence | |
Other Info | |
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | Cross-Origin-Opener-Policy |
Attack | |
Evidence | |
Other Info | |
Instances | 3 |
Solution |
Ensure that the application/web server sets the Cross-Origin-Resource-Policy header appropriately, and that it sets the Cross-Origin-Resource-Policy header to 'same-origin' for all web pages.
'same-site' is considered as less secured and should be avoided.
If resources must be shared, set the header to 'cross-origin'.
If possible, ensure that the end user uses a standards-compliant and modern web browser that supports the Cross-Origin-Resource-Policy header (https://caniuse.com/mdn-http_headers_cross-origin-resource-policy).
|
Reference | https://developer.mozilla.org/en-US/docs/Web/HTTP/Cross-Origin_Resource_Policy |
CWE Id | 693 |
WASC Id | 14 |
Plugin Id | 90004 |
Low |
Permissions Policy Header Not Set |
---|---|
Description |
Permissions Policy Header is an added layer of security that helps to restrict from unauthorized access or usage of browser/client features by web resources. This policy ensures the user privacy by limiting or specifying the features of the browsers can be used by the web resources. Permissions Policy provides a set of standard HTTP headers that allow website owners to limit which features of browsers can be used by the page such as camera, microphone, location, full screen etc.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | |
Attack | |
Evidence | |
Other Info | |
Instances | 1 |
Solution |
Ensure that your web server, application server, load balancer, etc. is configured to set the Permissions-Policy header.
|
Reference |
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
https://developer.chrome.com/blog/feature-policy/ https://scotthelme.co.uk/a-new-security-header-feature-policy/ https://w3c.github.io/webappsec-feature-policy/ https://www.smashingmagazine.com/2018/12/feature-policy/ |
CWE Id | 693 |
WASC Id | 15 |
Plugin Id | 10063 |
Informational |
Base64 Disclosure |
---|---|
Description |
Base64 encoded data was disclosed by the application/web server. Note: in the interests of performance not all base64 strings in the response were analyzed individually, the entire response should be looked at by the analyst/security team/developer(s).
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | |
Attack | |
Evidence | 2F8nnujtCXAJGT4bvQiFyX6eIzlpZN1dezKcqaS3fq1zuj47kuWtEfe1qlzs0OLcp9tgejOjpPCMgtth |
Other Info | �_'��� p >���~�#9id�]{2����~�s�>;�����\���ܧ�`z3������a |
Instances | 1 |
Solution |
Manually confirm that the Base64 data does not leak sensitive information, and that the data cannot be aggregated/used to exploit other vulnerabilities.
|
Reference | https://projects.webappsec.org/w/page/13246936/Information%20Leakage |
CWE Id | 319 |
WASC Id | 13 |
Plugin Id | 10094 |
Informational |
Non-Storable Content |
---|---|
Description |
The response contents are not storable by caching components such as proxy servers. If the response does not contain sensitive, personal or user-specific information, it may benefit from being stored and cached, to improve performance.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | |
Attack | |
Evidence | private |
Other Info | |
Instances | 1 |
Solution |
The content may be marked as storable by ensuring that the following conditions are satisfied:
The request method must be understood by the cache and defined as being cacheable ("GET", "HEAD", and "POST" are currently defined as cacheable)
The response status code must be understood by the cache (one of the 1XX, 2XX, 3XX, 4XX, or 5XX response classes are generally understood)
The "no-store" cache directive must not appear in the request or response header fields
For caching by "shared" caches such as "proxy" caches, the "private" response directive must not appear in the response
For caching by "shared" caches such as "proxy" caches, the "Authorization" header field must not appear in the request, unless the response explicitly allows it (using one of the "must-revalidate", "public", or "s-maxage" Cache-Control response directives)
In addition to the conditions above, at least one of the following conditions must also be satisfied by the response:
It must contain an "Expires" header field
It must contain a "max-age" response directive
For "shared" caches such as "proxy" caches, it must contain a "s-maxage" response directive
It must contain a "Cache Control Extension" that allows it to be cached
It must have a status code that is defined as cacheable by default (200, 203, 204, 206, 300, 301, 404, 405, 410, 414, 501).
|
Reference |
https://datatracker.ietf.org/doc/html/rfc7234
https://datatracker.ietf.org/doc/html/rfc7231 https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html |
CWE Id | 524 |
WASC Id | 13 |
Plugin Id | 10049 |
Informational |
Re-examine Cache-control Directives |
---|---|
Description |
The cache-control header has not been set properly or is missing, allowing the browser and proxies to cache content. For static assets like css, js, or image files this might be intended, however, the resources should be reviewed to ensure that no sensitive content will be cached.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | cache-control |
Attack | |
Evidence | max-age=0, private, must-revalidate |
Other Info | |
Instances | 1 |
Solution |
For secure content, ensure the cache-control HTTP header is set with "no-cache, no-store, must-revalidate". If an asset should be cached consider setting the directives "public, max-age, immutable".
|
Reference |
https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html#web-content-caching
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control https://grayduck.mn/2021/09/13/cache-control-recommendations/ |
CWE Id | 525 |
WASC Id | 13 |
Plugin Id | 10015 |
Informational |
Sec-Fetch-Dest Header is Missing |
---|---|
Description |
Specifies how and where the data would be used. For instance, if the value is audio, then the requested resource must be audio data and not any other type of resource.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | Sec-Fetch-Dest |
Attack | |
Evidence | |
Other Info | |
URL | https://rdv-insertion.fr/robots.txt |
Method | GET |
Parameter | Sec-Fetch-Dest |
Attack | |
Evidence | |
Other Info | |
URL | https://rdv-insertion.fr/sitemap.xml |
Method | GET |
Parameter | Sec-Fetch-Dest |
Attack | |
Evidence | |
Other Info | |
Instances | 3 |
Solution |
Ensure that Sec-Fetch-Dest header is included in request headers.
|
Reference | https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Fetch-Dest |
CWE Id | 352 |
WASC Id | 9 |
Plugin Id | 90005 |
Informational |
Sec-Fetch-Mode Header is Missing |
---|---|
Description |
Allows to differentiate between requests for navigating between HTML pages and requests for loading resources like images, audio etc.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | Sec-Fetch-Mode |
Attack | |
Evidence | |
Other Info | |
URL | https://rdv-insertion.fr/robots.txt |
Method | GET |
Parameter | Sec-Fetch-Mode |
Attack | |
Evidence | |
Other Info | |
URL | https://rdv-insertion.fr/sitemap.xml |
Method | GET |
Parameter | Sec-Fetch-Mode |
Attack | |
Evidence | |
Other Info | |
Instances | 3 |
Solution |
Ensure that Sec-Fetch-Mode header is included in request headers.
|
Reference | https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Fetch-Mode |
CWE Id | 352 |
WASC Id | 9 |
Plugin Id | 90005 |
Informational |
Sec-Fetch-Site Header is Missing |
---|---|
Description |
Specifies the relationship between request initiator's origin and target's origin.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | Sec-Fetch-Site |
Attack | |
Evidence | |
Other Info | |
URL | https://rdv-insertion.fr/robots.txt |
Method | GET |
Parameter | Sec-Fetch-Site |
Attack | |
Evidence | |
Other Info | |
URL | https://rdv-insertion.fr/sitemap.xml |
Method | GET |
Parameter | Sec-Fetch-Site |
Attack | |
Evidence | |
Other Info | |
Instances | 3 |
Solution |
Ensure that Sec-Fetch-Site header is included in request headers.
|
Reference | https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Fetch-Site |
CWE Id | 352 |
WASC Id | 9 |
Plugin Id | 90005 |
Informational |
Sec-Fetch-User Header is Missing |
---|---|
Description |
Specifies if a navigation request was initiated by a user.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | Sec-Fetch-User |
Attack | |
Evidence | |
Other Info | |
URL | https://rdv-insertion.fr/robots.txt |
Method | GET |
Parameter | Sec-Fetch-User |
Attack | |
Evidence | |
Other Info | |
URL | https://rdv-insertion.fr/sitemap.xml |
Method | GET |
Parameter | Sec-Fetch-User |
Attack | |
Evidence | |
Other Info | |
Instances | 3 |
Solution |
Ensure that Sec-Fetch-User header is included in user initiated requests.
|
Reference | https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Fetch-User |
CWE Id | 352 |
WASC Id | 9 |
Plugin Id | 90005 |
Informational |
Session Management Response Identified |
---|---|
Description |
The given response has been identified as containing a session management token. The 'Other Info' field contains a set of header tokens that can be used in the Header Based Session Management Method. If the request is in a context which has a Session Management Method set to "Auto-Detect" then this rule will change the session management to use the tokens identified.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | _rdv_insertion_session |
Attack | |
Evidence | 0rXhdtN572mn8%2BPVIbPQ8McGeUxtKlYzyZiil%2FTdQOFp4dr%2F8nnujtCXAJGT4bvQiFyX6eIzlpZN1dezKcqaS3fq1zuj47kuWtEfe1qlzs0OLcp9tgejOjpPCMgtth%2B32EiJ5Cq9XVTRT85%2FOJzAHEUk3ZgZrsxkACzG5Kus%2BZgWlk3ipYaDBB2dJUYLpDcaVucHZu7yzuVecCMyrMy%2FfZg0lDOXfrSxefZoNGSvS%2F%2B4MQUMncd6Ki82o1eWn42tO9QZESzJZaZws4oMMBiX0tmwF49JSeBGxUHI53g5--RUhWePAXWReE9ECH--3dOA3VKnEKdW9vONgpFMvw%3D%3D |
Other Info | cookie:_rdv_insertion_session |
Instances | 1 |
Solution |
This is an informational alert rather than a vulnerability and so there is nothing to fix.
|
Reference | https://www.zaproxy.org/docs/desktop/addons/authentication-helper/session-mgmt-id |
CWE Id | |
WASC Id | |
Plugin Id | 10112 |
Informational |
Storable and Cacheable Content |
---|---|
Description |
The response contents are storable by caching components such as proxy servers, and may be retrieved directly from the cache, rather than from the origin server by the caching servers, in response to similar requests from other users. If the response data is sensitive, personal or user-specific, this may result in sensitive information being leaked. In some cases, this may even result in a user gaining complete control of the session of another user, depending on the configuration of the caching components in use in their environment. This is primarily an issue where "shared" caching servers such as "proxy" caches are configured on the local network. This configuration is typically found in corporate or educational environments, for instance.
|
URL | https://rdv-insertion.fr |
Method | GET |
Parameter | |
Attack | |
Evidence | |
Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
URL | https://rdv-insertion.fr/robots.txt |
Method | GET |
Parameter | |
Attack | |
Evidence | |
Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
URL | https://rdv-insertion.fr/sitemap.xml |
Method | GET |
Parameter | |
Attack | |
Evidence | |
Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
Instances | 3 |
Solution |
Validate that the response does not contain sensitive, personal or user-specific information. If it does, consider the use of the following HTTP response headers, to limit, or prevent the content being stored and retrieved from the cache by another user:
Cache-Control: no-cache, no-store, must-revalidate, private
Pragma: no-cache
Expires: 0
This configuration directs both HTTP 1.0 and HTTP 1.1 compliant caching servers to not store the response, and to not retrieve the response (without validation) from the cache, in response to a similar request.
|
Reference |
https://datatracker.ietf.org/doc/html/rfc7234
https://datatracker.ietf.org/doc/html/rfc7231 https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html |
CWE Id | 524 |
WASC Id | 13 |
Plugin Id | 10049 |