ZAP Scanning Report

Site: https://anais.beta.gouv.fr

Generated on Sun, 20 Apr 2025 06:19:34

ZAP Version: 2.16.1

ZAP by Checkmarx

Summary of Alerts

Risk Level Number of Alerts
High
0
Medium
5
Low
6
Informational
8
False Positives:
0

Summary of Sequences

For each step: result (Pass/Fail) - risk (of highest alert(s) for the step, if any).

Alerts

Name Risk Level Number of Instances
Absence of Anti-CSRF Tokens Medium 1
CSP: Failure to Define Directive with No Fallback Medium 1
CSP: Wildcard Directive Medium 1
CSP: script-src unsafe-inline Medium 1
CSP: style-src unsafe-inline Medium 1
Cookie Without Secure Flag Low 1
Cookie with SameSite Attribute None Low 5
Cookie without SameSite Attribute Low 1
Insufficient Site Isolation Against Spectre Vulnerability Low 3
Permissions Policy Header Not Set Low 1
Timestamp Disclosure - Unix Low 3
Base64 Disclosure Informational 4
Non-Storable Content Informational 3
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 3

Alert Detail

Medium
Absence of Anti-CSRF Tokens
Description
No Anti-CSRF tokens were found in a HTML submission form.

A cross-site request forgery is an attack that involves forcing a victim to send an HTTP request to a target destination without their knowledge or intent in order to perform an action as the victim. The underlying cause is application functionality using predictable URL/form actions in a repeatable way. The nature of the attack is that CSRF exploits the trust that a web site has for a user. By contrast, cross-site scripting (XSS) exploits the trust that a user has for a web site. Like XSS, CSRF attacks are not necessarily cross-site, but they can be. Cross-site request forgery is also known as CSRF, XSRF, one-click attack, session riding, confused deputy, and sea surf.

CSRF attacks are effective in a number of situations, including:

* The victim has an active session on the target site.

* The victim is authenticated via HTTP auth on the target site.

* The victim is on the same local network as the target site.

CSRF has primarily been used to perform an action against a target site using the victim's privileges, but recent techniques have been discovered to disclose information by gaining access to the response. The risk of information disclosure is dramatically increased when the target site is vulnerable to XSS, because XSS can be used as a platform for CSRF, allowing the attack to operate within the bounds of the same-origin policy.
URL https://anais.beta.gouv.fr
Method GET
Parameter
Attack
Evidence <form id="kc-form-login" onsubmit="login.disabled = true; return true;" action="https://sso.anais.beta.gouv.fr/realms/VIGIE/login-actions/authenticate?session_code=_eHF99K0zOn8Nrhx2D-eR5HFWWsh0RQTXCLGY9gxXjk&amp;execution=3718dc01-139c-45f1-b2fa-46f780c4dae4&amp;client_id=anais-api&amp;tab_id=faYsIk945gc&amp;client_data=eyJydSI6Imh0dHBzOi8vYW5haXMuYmV0YS5nb3V2LmZyL29hdXRoMi9jYWxsYmFjayIsInJ0IjoiY29kZSIsInN0IjoiWS04ZmZzbzlwSmNQLTdLQWhxSHB1VmpSdDVqWi1QQzB4MnNfV3VVcUN5ZzpodHRwczovL2FuYWlzLmJldGEuZ291di5mci8ifQ" method="post">
Other Info No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token, _csrfToken] was found in the following HTML form: [Form 1: "id-hidden-input" "kc-login" "password" "rememberMe" "username" ].
Instances 1
Solution
Phase: Architecture and Design

Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.

For example, use anti-CSRF packages such as the OWASP CSRFGuard.

Phase: Implementation

Ensure that your application is free of cross-site scripting issues, because most CSRF defenses can be bypassed using attacker-controlled script.

Phase: Architecture and Design

Generate a unique nonce for each form, place the nonce into the form, and verify the nonce upon receipt of the form. Be sure that the nonce is not predictable (CWE-330).

Note that this can be bypassed using XSS.

Identify especially dangerous operations. When the user performs a dangerous operation, send a separate confirmation request to ensure that the user intended to perform that operation.

Note that this can be bypassed using XSS.

Use the ESAPI Session Management control.

This control includes a component for CSRF.

Do not use the GET method for any request that triggers a state change.

Phase: Implementation

Check the HTTP Referer header to see if the request originated from an expected page. This could break legitimate functionality, because users or proxies may have disabled sending the Referer for privacy reasons.
Reference https://cheatsheetseries.owasp.org/cheatsheets/Cross-Site_Request_Forgery_Prevention_Cheat_Sheet.html
https://cwe.mitre.org/data/definitions/352.html
CWE Id 352
WASC Id 9
Plugin Id 10202
Medium
CSP: Failure to Define Directive with No Fallback
Description
The Content Security Policy fails to define one of the directives that has no fallback. Missing/excluding them is the same as allowing anything.
URL https://anais.beta.gouv.fr
Method GET
Parameter Content-Security-Policy
Attack
Evidence frame-src 'self'; frame-ancestors 'self'; object-src 'none';
Other Info The directive(s): form-action is/are among the directives that do not fallback to default-src.
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
CSP: Wildcard Directive
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://anais.beta.gouv.fr
Method GET
Parameter Content-Security-Policy
Attack
Evidence frame-src 'self'; frame-ancestors 'self'; object-src 'none';
Other Info The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: script-src, style-src, img-src, connect-src, font-src, media-src, manifest-src, worker-src
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
CSP: script-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://anais.beta.gouv.fr
Method GET
Parameter Content-Security-Policy
Attack
Evidence frame-src 'self'; frame-ancestors 'self'; object-src 'none';
Other Info script-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
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://anais.beta.gouv.fr
Method GET
Parameter Content-Security-Policy
Attack
Evidence frame-src 'self'; frame-ancestors 'self'; object-src 'none';
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
Low
Cookie Without Secure Flag
Description
A cookie has been set without the secure flag, which means that the cookie can be accessed via unencrypted connections.
URL https://anais.beta.gouv.fr
Method GET
Parameter AUTH_SESSION_ID_LEGACY
Attack
Evidence Set-Cookie: AUTH_SESSION_ID_LEGACY
Other Info
Instances 1
Solution
Whenever a cookie contains sensitive information or is a session token, then it should always be passed using an encrypted channel. Ensure that the secure flag is set for cookies containing such sensitive information.
Reference https://owasp.org/www-project-web-security-testing-guide/v41/4-Web_Application_Security_Testing/06-Session_Management_Testing/02-Testing_for_Cookies_Attributes.html
CWE Id 614
WASC Id 13
Plugin Id 10011
Low
Cookie with SameSite Attribute None
Description
A cookie has been set with its SameSite attribute set to "none", which means that the cookie can be sent as a result of a 'cross-site' request. The SameSite attribute is an effective counter measure to cross-site request forgery, cross-site script inclusion, and timing attacks.
URL https://anais.beta.gouv.fr
Method GET
Parameter _oauth2_proxy_csrf
Attack
Evidence Set-Cookie: _oauth2_proxy_csrf
Other Info
URL https://anais.beta.gouv.fr
Method GET
Parameter AUTH_SESSION_ID
Attack
Evidence Set-Cookie: AUTH_SESSION_ID
Other Info
URL https://anais.beta.gouv.fr
Method GET
Parameter KC_RESTART
Attack
Evidence Set-Cookie: KC_RESTART
Other Info
URL https://anais.beta.gouv.fr/robots.txt
Method GET
Parameter _oauth2_proxy_csrf
Attack
Evidence Set-Cookie: _oauth2_proxy_csrf
Other Info
URL https://anais.beta.gouv.fr/sitemap.xml
Method GET
Parameter _oauth2_proxy_csrf
Attack
Evidence Set-Cookie: _oauth2_proxy_csrf
Other Info
Instances 5
Solution
Ensure that the SameSite attribute is set to either 'lax' or ideally 'strict' for all cookies.
Reference https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site
CWE Id 1275
WASC Id 13
Plugin Id 10054
Low
Cookie without SameSite Attribute
Description
A cookie has been set without the SameSite attribute, which means that the cookie can be sent as a result of a 'cross-site' request. The SameSite attribute is an effective counter measure to cross-site request forgery, cross-site script inclusion, and timing attacks.
URL https://anais.beta.gouv.fr
Method GET
Parameter AUTH_SESSION_ID_LEGACY
Attack
Evidence Set-Cookie: AUTH_SESSION_ID_LEGACY
Other Info
Instances 1
Solution
Ensure that the SameSite attribute is set to either 'lax' or ideally 'strict' for all cookies.
Reference https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site
CWE Id 1275
WASC Id 13
Plugin Id 10054
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://anais.beta.gouv.fr
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://anais.beta.gouv.fr
Method GET
Parameter Cross-Origin-Embedder-Policy
Attack
Evidence
Other Info
URL https://anais.beta.gouv.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://anais.beta.gouv.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
Low
Timestamp Disclosure - Unix
Description
A timestamp was disclosed by the application/web server. - Unix
URL https://anais.beta.gouv.fr
Method GET
Parameter Set-Cookie
Attack
Evidence 1745129972
Other Info 1745129972, which evaluates to: 2025-04-20 06:19:32.
URL https://anais.beta.gouv.fr/robots.txt
Method GET
Parameter Set-Cookie
Attack
Evidence 1745129971
Other Info 1745129971, which evaluates to: 2025-04-20 06:19:31.
URL https://anais.beta.gouv.fr/sitemap.xml
Method GET
Parameter Set-Cookie
Attack
Evidence 1745129972
Other Info 1745129972, which evaluates to: 2025-04-20 06:19:32.
Instances 3
Solution
Manually confirm that the timestamp data is not sensitive, and that the data cannot be aggregated to disclose exploitable patterns.
Reference https://cwe.mitre.org/data/definitions/200.html
CWE Id 497
WASC Id 13
Plugin Id 10096
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://anais.beta.gouv.fr
Method GET
Parameter
Attack
Evidence eyJhbGciOiJkaXIiLCJlbmMiOiJBMTI4Q0JDLUhTMjU2In0
Other Info {"alg":"dir","enc":"A128CBC-HS256"}
URL https://anais.beta.gouv.fr
Method GET
Parameter
Attack
Evidence 6tXIIK0NcyVp9yGz7gnk5WwR-ygT5IURe2wS2O0svlw
Other Info ��� � s%i�!�� ��l�(�{l��,�\
URL https://anais.beta.gouv.fr/robots.txt
Method GET
Parameter
Attack
Evidence t8ZVjsP7fvOPHz3pQlYDjNWLAv2ynFi5X_riqLbyKrI
Other Info ��U���~�=�BV�Ջ���X�_�⨶�*�
URL https://anais.beta.gouv.fr/sitemap.xml
Method GET
Parameter
Attack
Evidence hsAFPWdpUQlOD1VEzeAmjYHGnK-XVAHk-PFQf9d1RXE
Other Info ��=giQ NUD��&��Ɯ��T���P�uEq
Instances 4
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://anais.beta.gouv.fr
Method GET
Parameter
Attack
Evidence no-store
Other Info
URL https://anais.beta.gouv.fr/robots.txt
Method GET
Parameter
Attack
Evidence no-store
Other Info
URL https://anais.beta.gouv.fr/sitemap.xml
Method GET
Parameter
Attack
Evidence no-store
Other Info
Instances 3
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://anais.beta.gouv.fr
Method GET
Parameter cache-control
Attack
Evidence no-store, must-revalidate, max-age=0
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://anais.beta.gouv.fr
Method GET
Parameter Sec-Fetch-Dest
Attack
Evidence
Other Info
URL https://anais.beta.gouv.fr/robots.txt
Method GET
Parameter Sec-Fetch-Dest
Attack
Evidence
Other Info
URL https://anais.beta.gouv.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://anais.beta.gouv.fr
Method GET
Parameter Sec-Fetch-Mode
Attack
Evidence
Other Info
URL https://anais.beta.gouv.fr/robots.txt
Method GET
Parameter Sec-Fetch-Mode
Attack
Evidence
Other Info
URL https://anais.beta.gouv.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://anais.beta.gouv.fr
Method GET
Parameter Sec-Fetch-Site
Attack
Evidence
Other Info
URL https://anais.beta.gouv.fr/robots.txt
Method GET
Parameter Sec-Fetch-Site
Attack
Evidence
Other Info
URL https://anais.beta.gouv.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://anais.beta.gouv.fr
Method GET
Parameter Sec-Fetch-User
Attack
Evidence
Other Info
URL https://anais.beta.gouv.fr/robots.txt
Method GET
Parameter Sec-Fetch-User
Attack
Evidence
Other Info
URL https://anais.beta.gouv.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://anais.beta.gouv.fr
Method GET
Parameter _oauth2_proxy_csrf
Attack
Evidence TH3WL0_JO7lxAiCYHndXY681Kg8hJWl616A69YbUZhqByFqMggebEi3N8Mcq6nD5svtM4ZQwTaqk1C5HieZijW5DtDKYghwxcX3kh98jLP9jbXE2dnQ1shwiwF3v8cV4yyiaI3jOQc9kiTRxm5J-NfAun4tiwMUNBJ3Hme5nmYOLgADlpsMNkGrEEF6rR-Au_jirLMJUgmerfycgLs4F7w4AZPiCJiAPuuXyJSRQPvz7GrOIFfCYB9ZIIPdj4OGZyID6_lgog-572uMoUL8tr6vosWi89-zl8xl37kQ-|1745129972|liUKXqPkLyX9AU0C-6YEZxEdIqOUUefmoRmGWaKOYmg=
Other Info cookie:_oauth2_proxy_csrf
URL https://anais.beta.gouv.fr
Method GET
Parameter AUTH_SESSION_ID_LEGACY
Attack
Evidence 1c5599a6-578e-476b-afec-ccf2507e0519.7a19ce7d028e-8110
Other Info cookie:AUTH_SESSION_ID_LEGACY cookie:KC_RESTART cookie:AUTH_SESSION_ID
URL https://anais.beta.gouv.fr/sitemap.xml
Method GET
Parameter _oauth2_proxy_csrf
Attack
Evidence 3ySl-xhyyclcqKyTksnIzweENSr1pfSkqYB8p06x55jMtBor0zZqkZLLaYc6CxctB0vAJgWDg9DJ7sPbBaPV-fhYS2dLCzECQFW7Qb-eNdbJXk6XzhdUBL2eYiTb9HRkK5x0Dw4cI33Nuz5Dfz7a2k4vzUbNHrr6_iSEwL9ubBhXhSYI9LpiN-ciCCnywmXD9fIyW0EXR9FpKK1MVJW4c4GaKVK7KFsppz9CxdzEpxF0uA7PfPV6hq_mSB9MrdB81W0kme-aoNUyPcHblWiR7Jz-L8iAvCI-cRJFCqRc|1745129972|tgWp6IlKVmMTa8o9XThRad54nmWZEy04F02UoWLQEaA=
Other Info cookie:_oauth2_proxy_csrf
Instances 3
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

Sequence Details

With the associated active scan results.