ZAP Scanning Report

Site: https://bacasable.recoconseil.fr

Generated on Sun, 11 May 2025 10:44:42

ZAP Version: 2.16.1

ZAP by Checkmarx

Summary of Alerts

Risk Level Number of Alerts
High
0
Medium
3
Low
10
Informational
12
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 2
Content Security Policy (CSP) Header Not Set Medium 11
Sub Resource Integrity Attribute Missing Medium 11
Cookie No HttpOnly Flag Low 11
Cookie Without Secure Flag Low 6
Cookie with SameSite Attribute None Low 11
Cross-Domain JavaScript Source File Inclusion Low 12
Dangerous JS Functions Low 1
Insufficient Site Isolation Against Spectre Vulnerability Low 11
Permissions Policy Header Not Set Low 11
Strict-Transport-Security Header Not Set Low 12
Timestamp Disclosure - Unix Low 19
X-Content-Type-Options Header Missing Low 13
Authentication Request Identified Informational 1
Base64 Disclosure Informational 12
Information Disclosure - Suspicious Comments Informational 12
Modern Web Application Informational 12
Re-examine Cache-control Directives Informational 11
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 11
Storable and Cacheable Content Informational 11
User Controllable HTML Element Attribute (Potential XSS) Informational 21

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://bacasable.recoconseil.fr/cookies/
Method GET
Parameter
Attack
Evidence <form class="cookie-consent-accept" action="/cookies/accept/" 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: "" ].
URL https://bacasable.recoconseil.fr/cookies/
Method GET
Parameter
Attack
Evidence <form class="cookie-consent-accept" action="/cookies/decline/" 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 2: "" ].
Instances 2
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
Content Security Policy (CSP) Header Not Set
Description
Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks, including 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://bacasable.recoconseil.fr
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/accounts/login/
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/accounts/password/reset/
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/accounts/signup/
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/confidentialite
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/contact/
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/cookies/
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/login/
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/ressource/
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/sitemap.xml
Method GET
Parameter
Attack
Evidence
Other Info
Instances 11
Solution
Ensure that your web server, application server, load balancer, etc. is configured to set the Content-Security-Policy header.
Reference https://developer.mozilla.org/en-US/docs/Web/Security/CSP/Introducing_Content_Security_Policy
https://cheatsheetseries.owasp.org/cheatsheets/Content_Security_Policy_Cheat_Sheet.html
https://www.w3.org/TR/CSP/
https://w3c.github.io/webappsec-csp/
https://web.dev/articles/csp
https://caniuse.com/#feat=contentsecuritypolicy
https://content-security-policy.com/
CWE Id 693
WASC Id 15
Plugin Id 10038
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://bacasable.recoconseil.fr
Method GET
Parameter
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/
Method GET
Parameter
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/accounts/login/
Method GET
Parameter
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/accounts/password/reset/
Method GET
Parameter
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/accounts/signup/
Method GET
Parameter
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/accounts/signup/
Method GET
Parameter
Attack
Evidence <script src="https://www.google.com/recaptcha/api.js?hl=fr"></script>
Other Info
URL https://bacasable.recoconseil.fr/confidentialite
Method GET
Parameter
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/contact/
Method GET
Parameter
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/contact/
Method GET
Parameter
Attack
Evidence <script src="https://www.google.com/recaptcha/api.js?hl=fr"></script>
Other Info
URL https://bacasable.recoconseil.fr/cookies/
Method GET
Parameter
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/login/
Method GET
Parameter
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
Instances 11
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
Cookie No HttpOnly Flag
Description
A cookie has been set without the HttpOnly flag, which means that the cookie can be accessed by JavaScript. If a malicious script can be run on this page then the cookie will be accessible and can be transmitted to another site. If this is a session cookie then session hijacking may be possible.
URL https://bacasable.recoconseil.fr
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/accounts/login/
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/contact/
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/cookies/
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/cookies/accept/
Method POST
Parameter cookie_consent
Attack
Evidence set-cookie: cookie_consent
Other Info
URL https://bacasable.recoconseil.fr/cookies/accept/analytics/
Method POST
Parameter cookie_consent
Attack
Evidence set-cookie: cookie_consent
Other Info
URL https://bacasable.recoconseil.fr/cookies/accept/tracking_media/
Method POST
Parameter cookie_consent
Attack
Evidence set-cookie: cookie_consent
Other Info
URL https://bacasable.recoconseil.fr/cookies/decline/
Method POST
Parameter cookie_consent
Attack
Evidence set-cookie: cookie_consent
Other Info
URL https://bacasable.recoconseil.fr/cookies/decline/analytics/
Method POST
Parameter cookie_consent
Attack
Evidence set-cookie: cookie_consent
Other Info
URL https://bacasable.recoconseil.fr/cookies/decline/tracking_media/
Method POST
Parameter cookie_consent
Attack
Evidence set-cookie: cookie_consent
Other Info
Instances 11
Solution
Ensure that the HttpOnly flag is set for all cookies.
Reference https://owasp.org/www-community/HttpOnly
CWE Id 1004
WASC Id 13
Plugin Id 10010
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://bacasable.recoconseil.fr/cookies/accept/
Method POST
Parameter cookie_consent
Attack
Evidence set-cookie: cookie_consent
Other Info
URL https://bacasable.recoconseil.fr/cookies/accept/analytics/
Method POST
Parameter cookie_consent
Attack
Evidence set-cookie: cookie_consent
Other Info
URL https://bacasable.recoconseil.fr/cookies/accept/tracking_media/
Method POST
Parameter cookie_consent
Attack
Evidence set-cookie: cookie_consent
Other Info
URL https://bacasable.recoconseil.fr/cookies/decline/
Method POST
Parameter cookie_consent
Attack
Evidence set-cookie: cookie_consent
Other Info
URL https://bacasable.recoconseil.fr/cookies/decline/analytics/
Method POST
Parameter cookie_consent
Attack
Evidence set-cookie: cookie_consent
Other Info
URL https://bacasable.recoconseil.fr/cookies/decline/tracking_media/
Method POST
Parameter cookie_consent
Attack
Evidence set-cookie: cookie_consent
Other Info
Instances 6
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://bacasable.recoconseil.fr
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/accounts/login/
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/accounts/oidc/proconnect/login/?process=process
Method GET
Parameter sessionid
Attack
Evidence set-cookie: sessionid
Other Info
URL https://bacasable.recoconseil.fr/accounts/password/reset/
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/accounts/signup/
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/contact/
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/cookies/
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/login/
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/onboarding/signin
Method GET
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
URL https://bacasable.recoconseil.fr/accounts/login/
Method POST
Parameter csrftoken
Attack
Evidence set-cookie: csrftoken
Other Info
Instances 11
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
Cross-Domain JavaScript Source File Inclusion
Description
The page includes one or more script files from a third-party domain.
URL https://bacasable.recoconseil.fr
Method GET
Parameter https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/
Method GET
Parameter https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/accounts/login/
Method GET
Parameter https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/accounts/password/reset/
Method GET
Parameter https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/accounts/signup/
Method GET
Parameter https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/accounts/signup/
Method GET
Parameter https://www.google.com/recaptcha/api.js?hl=fr
Attack
Evidence <script src="https://www.google.com/recaptcha/api.js?hl=fr"></script>
Other Info
URL https://bacasable.recoconseil.fr/confidentialite
Method GET
Parameter https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/contact/
Method GET
Parameter https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/contact/
Method GET
Parameter https://www.google.com/recaptcha/api.js?hl=fr
Attack
Evidence <script src="https://www.google.com/recaptcha/api.js?hl=fr"></script>
Other Info
URL https://bacasable.recoconseil.fr/cookies/
Method GET
Parameter https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/login/
Method GET
Parameter https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
URL https://bacasable.recoconseil.fr/ressource/
Method GET
Parameter https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js
Attack
Evidence <script src="https://sentry.incubateur.net/js-sdk-loader/5b872cee93efddce4396cc52605838c1.min.js" crossorigin="anonymous"></script>
Other Info
Instances 12
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
Dangerous JS Functions
Description
A dangerous JS function seems to be in use that would leave the site vulnerable.
URL https://bacasable.recoconseil.fr/static/htmx-7727c2d4.js
Method GET
Parameter
Attack
Evidence eval(
Other Info
Instances 1
Solution
See the references for security advice on the use of these functions.
Reference https://angular.io/guide/security
CWE Id 749
WASC Id
Plugin Id 10110
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://bacasable.recoconseil.fr
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/confidentialite
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/robots.txt
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/_commonjsHelpers-de833af9.js
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/app-5dba7720.js
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/gravatar-7c250dec.js
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/user-5db4b460.css
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr
Method GET
Parameter Cross-Origin-Embedder-Policy
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/
Method GET
Parameter Cross-Origin-Embedder-Policy
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/confidentialite
Method GET
Parameter Cross-Origin-Embedder-Policy
Attack
Evidence
Other Info
Instances 11
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://bacasable.recoconseil.fr
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/confidentialite
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/cookies/
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/sitemap.xml
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/_commonjsHelpers-de833af9.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/app-5dba7720.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/bootstrap.esm-05e587d8.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/date-5848f02d.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/gravatar-7c250dec.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/module.esm-128413c1.js
Method GET
Parameter
Attack
Evidence
Other Info
Instances 11
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
Strict-Transport-Security Header Not Set
Description
HTTP Strict Transport Security (HSTS) is a web security policy mechanism whereby a web server declares that complying user agents (such as a web browser) are to interact with it using only secure HTTPS connections (i.e. HTTP layered over TLS/SSL). HSTS is an IETF standards track protocol and is specified in RFC 6797.
URL https://bacasable.recoconseil.fr/robots.txt
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/_commonjsHelpers-de833af9.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/app-5dba7720.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/bootstrap.esm-05e587d8.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/css/base.css
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/cssUtils-fae3db0a.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/date-5848f02d.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/gravatar-7c250dec.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/htmx-7727c2d4.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/module.esm-128413c1.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/user-5db4b460.css
Method GET
Parameter
Attack
Evidence
Other Info
Instances 12
Solution
Ensure that your web server, application server, load balancer, etc. is configured to enforce Strict-Transport-Security.
Reference https://cheatsheetseries.owasp.org/cheatsheets/HTTP_Strict_Transport_Security_Cheat_Sheet.html
https://owasp.org/www-community/Security_Headers
https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security
https://caniuse.com/stricttransportsecurity
https://datatracker.ietf.org/doc/html/rfc6797
CWE Id 319
WASC Id 15
Plugin Id 10035
Low
Timestamp Disclosure - Unix
Description
A timestamp was disclosed by the application/web server. - Unix
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1444681467
Other Info 1444681467, which evaluates to: 2015-10-12 20:24:27.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1473231341
Other Info 1473231341, which evaluates to: 2016-09-07 06:55:41.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1502002290
Other Info 1502002290, which evaluates to: 2017-08-06 06:51:30.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1530992060
Other Info 1530992060, which evaluates to: 2018-07-07 19:34:20.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1560198380
Other Info 1560198380, which evaluates to: 2019-06-10 20:26:20.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1700485571
Other Info 1700485571, which evaluates to: 2023-11-20 13:06:11.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1732584193
Other Info 1732584193, which evaluates to: 2024-11-26 01:23:13.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1732584194
Other Info 1732584194, which evaluates to: 2024-11-26 01:23:14.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1735328473
Other Info 1735328473, which evaluates to: 2024-12-27 19:41:13.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1770035416
Other Info 1770035416, which evaluates to: 2026-02-02 12:30:16.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1804603682
Other Info 1804603682, which evaluates to: 2027-03-09 14:48:02.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1839030562
Other Info 1839030562, which evaluates to: 2028-04-11 01:49:22.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1873313359
Other Info 1873313359, which evaluates to: 2029-05-12 20:49:19.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1894986606
Other Info 1894986606, which evaluates to: 2030-01-18 17:10:06.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1926607734
Other Info 1926607734, which evaluates to: 2031-01-19 16:48:54.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1958414417
Other Info 1958414417, which evaluates to: 2032-01-22 20:00:17.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 1990404162
Other Info 1990404162, which evaluates to: 2033-01-27 02:02:42.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 2022574463
Other Info 2022574463, which evaluates to: 2034-02-03 10:14:23.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence 2054922799
Other Info 2054922799, which evaluates to: 2035-02-12 19:53:19.
Instances 19
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
Low
X-Content-Type-Options Header Missing
Description
The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.
URL https://bacasable.recoconseil.fr/robots.txt
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL https://bacasable.recoconseil.fr/static/_commonjsHelpers-de833af9.js
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL https://bacasable.recoconseil.fr/static/app-5dba7720.js
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL https://bacasable.recoconseil.fr/static/bootstrap.esm-05e587d8.js
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL https://bacasable.recoconseil.fr/static/css/base.css
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL https://bacasable.recoconseil.fr/static/css/markdownx.css
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL https://bacasable.recoconseil.fr/static/cssUtils-fae3db0a.js
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL https://bacasable.recoconseil.fr/static/date-5848f02d.js
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL https://bacasable.recoconseil.fr/static/gravatar-7c250dec.js
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL https://bacasable.recoconseil.fr/static/htmx-7727c2d4.js
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL https://bacasable.recoconseil.fr/static/module.esm-128413c1.js
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
URL https://bacasable.recoconseil.fr/static/user-5db4b460.css
Method GET
Parameter x-content-type-options
Attack
Evidence
Other Info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses.
Instances 13
Solution
Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.
Reference https://learn.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/compatibility/gg622941(v=vs.85)
https://owasp.org/www-community/Security_Headers
CWE Id 693
WASC Id 15
Plugin Id 10021
Informational
Authentication Request Identified
Description
The given request has been identified as an authentication request. The 'Other Info' field contains a set of key=value lines which identify any relevant fields. If the request is in a context which has an Authentication Method set to "Auto-Detect" then this rule will change the authentication to match the request identified.
URL https://bacasable.recoconseil.fr/accounts/login/
Method POST
Parameter login
Attack
Evidence password
Other Info userParam=login userValue=foo-bar@example.com passwordParam=password referer=https://bacasable.recoconseil.fr/accounts/login/ csrfToken=csrfmiddlewaretoken
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/auth-req-id/
CWE Id
WASC Id
Plugin Id 10111
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://bacasable.recoconseil.fr
Method GET
Parameter
Attack
Evidence AMzfmtlsIBCE7mjn7dfRiZt4V7Qrrir8
Other Info �ߚ�l ��h���щ�xW�+�*�
URL https://bacasable.recoconseil.fr
Method GET
Parameter
Attack
Evidence SYK6Y76ElVPSZjCKUVPB3Nux7FOjNSMy
Other Info I��c���S�f0�QS��۱�S�5#2
URL https://bacasable.recoconseil.fr/
Method GET
Parameter
Attack
Evidence AMzfmtlsIBCE7mjn7dfRiZt4V7Qrrir8
Other Info �ߚ�l ��h���щ�xW�+�*�
URL https://bacasable.recoconseil.fr/accounts/login/
Method GET
Parameter
Attack
Evidence AMzfmtlsIBCE7mjn7dfRiZt4V7Qrrir8
Other Info �ߚ�l ��h���щ�xW�+�*�
URL https://bacasable.recoconseil.fr/accounts/oidc/proconnect/login/?process=process
Method GET
Parameter
Attack
Evidence 2IC9PBfIhpuRSvzQQ9uf10TaQ3IB6rQS
Other Info ؀�<Ȇ��J��C۟�D�Cr�
URL https://bacasable.recoconseil.fr/accounts/password/reset/
Method GET
Parameter
Attack
Evidence AMzfmtlsIBCE7mjn7dfRiZt4V7Qrrir8
Other Info �ߚ�l ��h���щ�xW�+�*�
URL https://bacasable.recoconseil.fr/confidentialite
Method GET
Parameter
Attack
Evidence /media/images/5/logo/large-Bac_a_sable
Other Info �g���♨����(�V���i���ƛ�
URL https://bacasable.recoconseil.fr/contact/
Method GET
Parameter
Attack
Evidence AMzfmtlsIBCE7mjn7dfRiZt4V7Qrrir8
Other Info �ߚ�l ��h���щ�xW�+�*�
URL https://bacasable.recoconseil.fr/cookies/
Method GET
Parameter
Attack
Evidence AMzfmtlsIBCE7mjn7dfRiZt4V7Qrrir8
Other Info �ߚ�l ��h���щ�xW�+�*�
URL https://bacasable.recoconseil.fr/static/AjvValidationSchema-3503467d.js
Method GET
Parameter
Attack
Evidence /definitions/nonNegativeIntegerDefault0
Other Info �ן�x�����z'5��+�"{^���y����
URL https://bacasable.recoconseil.fr/static/main-88449d62.css
Method GET
Parameter
Attack
Evidence /static/Marianne-Light-7b92c55f
Other Info ��Z�'?1��jy�����߻oݜ�
URL https://bacasable.recoconseil.fr/static/md5-abb2bb93.js
Method GET
Parameter
Attack
Evidence ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/
Other Info �Q� ��0ӏA�QU�a��qן���Y�����ۯ���]�㞻�߿
Instances 12
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
Information Disclosure - Suspicious Comments
Description
The response appears to contain suspicious comments which may help an attacker.
URL https://bacasable.recoconseil.fr/static/AjvValidationSchema-3503467d.js
Method GET
Parameter
Attack
Evidence query
Other Info The following pattern was used: \bQUERY\b and was detected in likely comment: "//g,"~1")}var po=Oa.exports;Object.defineProperty(ye,"__esModule",{value:!0});ye.getSchemaRefs=ye.resolveUrl=ye.normalizeId=ye._", see evidence field for the suspicious comment/snippet.
URL https://bacasable.recoconseil.fr/static/axios-9b9683dd.js
Method GET
Parameter
Attack
Evidence user
Other Info The following pattern was used: \bUSER\b and was detected in likely comment: "//localhost",Yt=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:de,hasStandardBrowserEnv:Xt,hasStandardBrowser", see evidence field for the suspicious comment/snippet.
URL https://bacasable.recoconseil.fr/static/bootstrap.esm-05e587d8.js
Method GET
Parameter
Attack
Evidence select
Other Info The following pattern was used: \bSELECT\b and was detected in likely comment: "//popper.js.org)");let t=this._element;this._config.reference==="parent"?t=this._parent:b(this._config.reference)?t=S(this._conf", see evidence field for the suspicious comment/snippet.
URL https://bacasable.recoconseil.fr/static/htmx-7727c2d4.js
Method GET
Parameter
Attack
Evidence select
Other Info The following pattern was used: \bSELECT\b and was detected in likely comment: "//*[@*[ starts-with(name(), "hx-on:") or starts-with(name(), "data-hx-on:") or starts-with(name(), "hx-on-") or starts-with(name", see evidence field for the suspicious comment/snippet.
URL https://bacasable.recoconseil.fr/static/module.esm-128413c1.js
Method GET
Parameter
Attack
Evidence select
Other Info The following pattern was used: \bSELECT\b and was detected in likely comment: "//alpinejs.dev/plugins/${n}`,r))}x("modelable",(e,{expression:t},{effect:n,evaluateLater:r,cleanup:i})=>{let o=r(t),s=()=>{let l", see evidence field for the suspicious comment/snippet.
URL https://bacasable.recoconseil.fr
Method GET
Parameter
Attack
Evidence User
Other Info The following pattern was used: \bUSER\b and was detected in likely comment: "<!-- User -->", see evidence field for the suspicious comment/snippet.
URL https://bacasable.recoconseil.fr/
Method GET
Parameter
Attack
Evidence User
Other Info The following pattern was used: \bUSER\b and was detected in likely comment: "<!-- User -->", see evidence field for the suspicious comment/snippet.
URL https://bacasable.recoconseil.fr/accounts/login/
Method GET
Parameter
Attack
Evidence User
Other Info The following pattern was used: \bUSER\b and was detected in likely comment: "<!-- User -->", see evidence field for the suspicious comment/snippet.
URL https://bacasable.recoconseil.fr/confidentialite
Method GET
Parameter
Attack
Evidence User
Other Info The following pattern was used: \bUSER\b and was detected in likely comment: "<!-- User -->", see evidence field for the suspicious comment/snippet.
URL https://bacasable.recoconseil.fr/cookies/
Method GET
Parameter
Attack
Evidence User
Other Info The following pattern was used: \bUSER\b and was detected in likely comment: "<!-- User -->", see evidence field for the suspicious comment/snippet.
URL https://bacasable.recoconseil.fr/ressource/
Method GET
Parameter
Attack
Evidence Admin
Other Info The following pattern was used: \bADMIN\b and was detected 441 times, the first in likely comment: "<!-- Admin Actions -->", see evidence field for the suspicious comment/snippet.
URL https://bacasable.recoconseil.fr/ressource/
Method GET
Parameter
Attack
Evidence User
Other Info The following pattern was used: \bUSER\b and was detected in likely comment: "<!-- User -->", see evidence field for the suspicious comment/snippet.
Instances 12
Solution
Remove all comments that return information that may help an attacker and fix any underlying problems they refer to.
Reference
CWE Id 615
WASC Id 13
Plugin Id 10027
Informational
Modern Web Application
Description
The application appears to be a modern web application. If you need to explore it automatically then the Ajax Spider may well be more effective than the standard one.
URL https://bacasable.recoconseil.fr/ressource/149/
Method GET
Parameter
Attack
Evidence <a class="fr-breadcrumb__link" aria-current="page">Aide à la recherche et à la mobilisation de financements, …</a>
Other Info Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application.
URL https://bacasable.recoconseil.fr/ressource/151/
Method GET
Parameter
Attack
Evidence <a class="fr-breadcrumb__link" aria-current="page">Accompagner les collectivités d&#x27;outre-mer dans la rénovation énergétique de leurs …</a>
Other Info Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application.
URL https://bacasable.recoconseil.fr/ressource/179/
Method GET
Parameter
Attack
Evidence <a class="fr-breadcrumb__link" aria-current="page">Activer les bons canaux pour diffuser un appel à projet</a>
Other Info Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application.
URL https://bacasable.recoconseil.fr/ressource/269/
Method GET
Parameter
Attack
Evidence <a class="fr-breadcrumb__link" aria-current="page">Accéder à un prêt relais dans l&#x27;attente du versement de …</a>
Other Info Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application.
URL https://bacasable.recoconseil.fr/ressource/28/
Method GET
Parameter
Attack
Evidence <a class="fr-breadcrumb__link" aria-current="page">Accélérer la phase de conception du projet pour démarrer les …</a>
Other Info Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application.
URL https://bacasable.recoconseil.fr/ressource/29/
Method GET
Parameter
Attack
Evidence <a class="fr-breadcrumb__link" aria-current="page">Acquérir un foncier pollué - le principe du pollueur payeur</a>
Other Info Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application.
URL https://bacasable.recoconseil.fr/ressource/292/
Method GET
Parameter
Attack
Evidence <a class="fr-breadcrumb__link" aria-current="page">Accompagner l&#x27;émergence de circuits courts et la vente de produits …</a>
Other Info Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application.
URL https://bacasable.recoconseil.fr/ressource/406/
Method GET
Parameter
Attack
Evidence <a class="fr-breadcrumb__link" aria-current="page">Accompagner le développement de l’économie de proximité dans les territoires …</a>
Other Info Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application.
URL https://bacasable.recoconseil.fr/ressource/444/
Method GET
Parameter
Attack
Evidence <a class="fr-breadcrumb__link" aria-current="page">Accéder aux données fiables et actualisées des entreprises du territoires</a>
Other Info Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application.
URL https://bacasable.recoconseil.fr/ressource/446/
Method GET
Parameter
Attack
Evidence <a class="fr-breadcrumb__link" aria-current="page">Accélérer la réalisation d’opérations d’aménagement complexes et renforcer l’intervention des …</a>
Other Info Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application.
URL https://bacasable.recoconseil.fr/ressource/59/
Method GET
Parameter
Attack
Evidence <a class="fr-breadcrumb__link" aria-current="page">Acquérir un bien vacant sans maître</a>
Other Info Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application.
URL https://bacasable.recoconseil.fr/ressource/677/
Method GET
Parameter
Attack
Evidence <a class="fr-breadcrumb__link" aria-current="page">AAP Accompagnement des travaux de dépollution des friches polluées - …</a>
Other Info Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application.
Instances 12
Solution
This is an informational alert and so no changes are required.
Reference
CWE Id
WASC Id
Plugin Id 10109
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://bacasable.recoconseil.fr
Method GET
Parameter cache-control
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/
Method GET
Parameter cache-control
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/accounts/password/reset/
Method GET
Parameter cache-control
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/accounts/password/reset/done/
Method GET
Parameter cache-control
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/confidentialite
Method GET
Parameter cache-control
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/contact/
Method GET
Parameter cache-control
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/cookies/
Method GET
Parameter cache-control
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/email-envoy%C3%A9/?next=/login-redirect
Method GET
Parameter cache-control
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/login/
Method GET
Parameter cache-control
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/ressource/
Method GET
Parameter cache-control
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/robots.txt
Method GET
Parameter cache-control
Attack
Evidence
Other Info
Instances 11
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://bacasable.recoconseil.fr/robots.txt
Method GET
Parameter Sec-Fetch-Dest
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/sitemap.xml
Method GET
Parameter Sec-Fetch-Dest
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/user-5db4b460.css
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://bacasable.recoconseil.fr/robots.txt
Method GET
Parameter Sec-Fetch-Mode
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/sitemap.xml
Method GET
Parameter Sec-Fetch-Mode
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/user-5db4b460.css
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://bacasable.recoconseil.fr/robots.txt
Method GET
Parameter Sec-Fetch-Site
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/sitemap.xml
Method GET
Parameter Sec-Fetch-Site
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/user-5db4b460.css
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://bacasable.recoconseil.fr/robots.txt
Method GET
Parameter Sec-Fetch-User
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/sitemap.xml
Method GET
Parameter Sec-Fetch-User
Attack
Evidence
Other Info
URL https://bacasable.recoconseil.fr/static/user-5db4b460.css
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://bacasable.recoconseil.fr
Method GET
Parameter csrftoken
Attack
Evidence SYK6Y76ElVPSZjCKUVPB3Nux7FOjNSMy
Other Info cookie:csrftoken
URL https://bacasable.recoconseil.fr/
Method GET
Parameter csrftoken
Attack
Evidence AMzfmtlsIBCE7mjn7dfRiZt4V7Qrrir8
Other Info cookie:csrftoken
URL https://bacasable.recoconseil.fr/accounts/login/
Method GET
Parameter csrftoken
Attack
Evidence AMzfmtlsIBCE7mjn7dfRiZt4V7Qrrir8
Other Info cookie:csrftoken
URL https://bacasable.recoconseil.fr/contact/
Method GET
Parameter csrftoken
Attack
Evidence AMzfmtlsIBCE7mjn7dfRiZt4V7Qrrir8
Other Info cookie:csrftoken
URL https://bacasable.recoconseil.fr/cookies/
Method GET
Parameter csrftoken
Attack
Evidence AMzfmtlsIBCE7mjn7dfRiZt4V7Qrrir8
Other Info cookie:csrftoken
URL https://bacasable.recoconseil.fr/cookies/accept/
Method POST
Parameter cookie_consent
Attack
Evidence analytics=2023-01-24T16:15:59.934000+00:00|tracking_media=2024-12-10T08:25:26.761336+00:00
Other Info cookie:cookie_consent
URL https://bacasable.recoconseil.fr/cookies/accept/analytics/
Method POST
Parameter cookie_consent
Attack
Evidence analytics=2023-01-24T16:15:59.934000+00:00
Other Info cookie:cookie_consent
URL https://bacasable.recoconseil.fr/cookies/accept/tracking_media/
Method POST
Parameter cookie_consent
Attack
Evidence tracking_media=2024-12-10T08:25:26.761336+00:00
Other Info cookie:cookie_consent
URL https://bacasable.recoconseil.fr/cookies/decline/
Method POST
Parameter cookie_consent
Attack
Evidence analytics=-1|tracking_media=-1
Other Info cookie:cookie_consent
URL https://bacasable.recoconseil.fr/cookies/decline/analytics/
Method POST
Parameter cookie_consent
Attack
Evidence analytics=-1
Other Info cookie:cookie_consent
URL https://bacasable.recoconseil.fr/cookies/decline/tracking_media/
Method POST
Parameter cookie_consent
Attack
Evidence tracking_media=-1
Other Info cookie:cookie_consent
Instances 11
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://bacasable.recoconseil.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://bacasable.recoconseil.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://bacasable.recoconseil.fr/confidentialite
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://bacasable.recoconseil.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://bacasable.recoconseil.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.
URL https://bacasable.recoconseil.fr/static/_commonjsHelpers-de833af9.js
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://bacasable.recoconseil.fr/static/app-5dba7720.js
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://bacasable.recoconseil.fr/static/bootstrap.esm-05e587d8.js
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://bacasable.recoconseil.fr/static/gravatar-7c250dec.js
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://bacasable.recoconseil.fr/static/module.esm-128413c1.js
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://bacasable.recoconseil.fr/static/user-5db4b460.css
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 11
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
Informational
User Controllable HTML Element Attribute (Potential XSS)
Description
This check looks at user-supplied input in query string parameters and POST data to identify where certain HTML attribute values might be controlled. This provides hot-spot detection for XSS (cross-site scripting) that will require further review by a security analyst to determine exploitability.
URL https://bacasable.recoconseil.fr/accounts/login/
Method POST
Parameter login
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/login/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: login=foo-bar@example.com The user-controlled value was: foo-bar@example.com
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter email
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: email=zaproxy@example.com The user-controlled value was: zaproxy@example.com
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter first_name
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: first_name=ZAP The user-controlled value was: zap
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter first_name
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: first_name=ZAP The user-controlled value was: zaproxy@example.com
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter last_name
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: last_name=ZAP The user-controlled value was: zap
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter last_name
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: last_name=ZAP The user-controlled value was: zaproxy@example.com
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter organization
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [div] tag [x-data] attribute The user input found was: organization=organization The user-controlled value was: organizationsearch("organization", false, true, "post")
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter organization
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [name] attribute The user input found was: organization=organization The user-controlled value was: organization
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter organization
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [name] attribute The user input found was: organization=organization The user-controlled value was: organization_position
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter organization
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: organization=organization The user-controlled value was: organization
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter organization
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [x-model] attribute The user input found was: organization=organization The user-controlled value was: organization
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter organization
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [x-ref] attribute The user input found was: organization=organization The user-controlled value was: organization
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter organization_position
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: organization_position=ZAP The user-controlled value was: zap
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter organization_position
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: organization_position=ZAP The user-controlled value was: zaproxy@example.com
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter password1
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: password1=ZAP The user-controlled value was: zap
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter password1
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: password1=ZAP The user-controlled value was: zaproxy@example.com
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter password2
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: password2=ZAP The user-controlled value was: zap
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter password2
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: password2=ZAP The user-controlled value was: zaproxy@example.com
URL https://bacasable.recoconseil.fr/accounts/signup/
Method POST
Parameter phone_no
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/accounts/signup/ appears to include user input in: a(n) [input] tag [value] attribute The user input found was: phone_no=9999999999 The user-controlled value was: 9999999999
URL https://bacasable.recoconseil.fr/contact/
Method POST
Parameter content
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/contact/ appears to include user input in: a(n) [textarea] tag [value] attribute The user input found was: content=Zaproxy alias impedit expedita quisquam pariatur exercitationem. Nemo rerum eveniet dolores rem quia dignissimos. The user-controlled value was: zaproxy alias impedit expedita quisquam pariatur exercitationem. nemo rerum eveniet dolores rem quia dignissimos.
URL https://bacasable.recoconseil.fr/contact/
Method POST
Parameter name
Attack
Evidence
Other Info User-controlled HTML attribute values were found. Try injecting special characters to see if XSS might be possible. The page at the following URL: https://bacasable.recoconseil.fr/contact/ appears to include user input in: a(n) [textarea] tag [value] attribute The user input found was: name=ZAP The user-controlled value was: zaproxy alias impedit expedita quisquam pariatur exercitationem. nemo rerum eveniet dolores rem quia dignissimos.
Instances 21
Solution
Validate all input and sanitize output it before writing to any HTML attributes.
Reference https://cheatsheetseries.owasp.org/cheatsheets/Input_Validation_Cheat_Sheet.html
CWE Id 20
WASC Id 20
Plugin Id 10031

Sequence Details

With the associated active scan results.