ZAP Scanning Report

Site: https://8960907.app.suitex.tech

Generated on Fri, 15 Aug 2025 23:38:10

ZAP Version: 2.16.1

ZAP by Checkmarx

Summary of Alerts

Risk Level Number of Alerts
High
0
Medium
3
Low
8
Informational
7
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
Content Security Policy (CSP) Header Not Set Medium 3
Missing Anti-clickjacking Header Medium 2
Sub Resource Integrity Attribute Missing Medium 2
Big Redirect Detected (Potential Sensitive Information Leak) Low 4
Cookie No HttpOnly Flag Low 5
Cookie Without Secure Flag Low 5
Insufficient Site Isolation Against Spectre Vulnerability Low 12
Permissions Policy Header Not Set Low 6
Strict-Transport-Security Header Not Set Low 12
Timestamp Disclosure - Unix Low 4
X-Content-Type-Options Header Missing Low 10
Authentication Request Identified Informational 1
Information Disclosure - Suspicious Comments Informational 5
Modern Web Application Informational 3
Non-Storable Content Informational 5
Re-examine Cache-control Directives Informational 3
Session Management Response Identified Informational 6
Storable and Cacheable Content Informational 6

Alert Detail

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://8960907.app.suitex.tech
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/login
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/sitemap.xml
Method GET
Parameter
Attack
Evidence
Other Info
Instances 3
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
Missing Anti-clickjacking Header
Description
The response does not protect against 'ClickJacking' attacks. It should include either Content-Security-Policy with 'frame-ancestors' directive or X-Frame-Options.
URL https://8960907.app.suitex.tech
Method GET
Parameter x-frame-options
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/login
Method GET
Parameter x-frame-options
Attack
Evidence
Other Info
Instances 2
Solution
Modern Web browsers support the Content-Security-Policy and X-Frame-Options HTTP headers. Ensure one of them is set on all web pages returned by your site/app.

If you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. Alternatively consider implementing Content Security Policy's "frame-ancestors" directive.
Reference https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options
CWE Id 1021
WASC Id 15
Plugin Id 10020
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://8960907.app.suitex.tech
Method GET
Parameter
Attack
Evidence <link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
Other Info
URL https://8960907.app.suitex.tech/login
Method GET
Parameter
Attack
Evidence <link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
Other Info
Instances 2
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
Big Redirect Detected (Potential Sensitive Information Leak)
Description
The server has responded with a redirect that seems to provide a large response. This may indicate that although the server sent a redirect it also responded with body content (which may include sensitive details, PII, etc.).
URL https://8960907.app.suitex.tech
Method GET
Parameter
Attack
Evidence
Other Info Location header URI length: 37 [https://8960907.app.suitex.tech/login]. Predicted response size: 337. Response Body Length: 394.
URL https://8960907.app.suitex.tech/
Method GET
Parameter
Attack
Evidence
Other Info Location header URI length: 37 [https://8960907.app.suitex.tech/login]. Predicted response size: 337. Response Body Length: 394.
URL https://8960907.app.suitex.tech/register
Method GET
Parameter
Attack
Evidence
Other Info Location header URI length: 32 [https://app.suitex.tech/register]. Predicted response size: 332. Response Body Length: 374.
URL https://8960907.app.suitex.tech/login
Method POST
Parameter
Attack
Evidence
Other Info Location header URI length: 37 [https://8960907.app.suitex.tech/login]. Predicted response size: 337. Response Body Length: 394.
Instances 4
Solution
Ensure that no sensitive information is leaked via redirect responses. Redirect responses should have almost no content.
Reference
CWE Id 201
WASC Id 13
Plugin Id 10044
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://8960907.app.suitex.tech
Method GET
Parameter XSRF-TOKEN
Attack
Evidence Set-Cookie: XSRF-TOKEN
Other Info
URL https://8960907.app.suitex.tech/
Method GET
Parameter XSRF-TOKEN
Attack
Evidence Set-Cookie: XSRF-TOKEN
Other Info
URL https://8960907.app.suitex.tech/login
Method GET
Parameter XSRF-TOKEN
Attack
Evidence Set-Cookie: XSRF-TOKEN
Other Info
URL https://8960907.app.suitex.tech/register
Method GET
Parameter XSRF-TOKEN
Attack
Evidence Set-Cookie: XSRF-TOKEN
Other Info
URL https://8960907.app.suitex.tech/login
Method POST
Parameter XSRF-TOKEN
Attack
Evidence Set-Cookie: XSRF-TOKEN
Other Info
Instances 5
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://8960907.app.suitex.tech
Method GET
Parameter suitex_session
Attack
Evidence Set-Cookie: suitex_session
Other Info
URL https://8960907.app.suitex.tech/
Method GET
Parameter suitex_session
Attack
Evidence Set-Cookie: suitex_session
Other Info
URL https://8960907.app.suitex.tech/login
Method GET
Parameter suitex_session
Attack
Evidence Set-Cookie: suitex_session
Other Info
URL https://8960907.app.suitex.tech/register
Method GET
Parameter suitex_session
Attack
Evidence Set-Cookie: suitex_session
Other Info
URL https://8960907.app.suitex.tech/login
Method POST
Parameter suitex_session
Attack
Evidence Set-Cookie: suitex_session
Other Info
Instances 5
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
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://8960907.app.suitex.tech
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/_debugbar/assets/javascript?v=1744785126
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/_debugbar/assets/stylesheets?v=1744785126
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/assets/logos/logo_alt.png
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/build/assets/app-ByrcmZUN.css
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/build/assets/app-doXXZgxN.css
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/login
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/robots.txt
Method GET
Parameter Cross-Origin-Resource-Policy
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech
Method GET
Parameter Cross-Origin-Embedder-Policy
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/login
Method GET
Parameter Cross-Origin-Embedder-Policy
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech
Method GET
Parameter Cross-Origin-Opener-Policy
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/login
Method GET
Parameter Cross-Origin-Opener-Policy
Attack
Evidence
Other Info
Instances 12
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://8960907.app.suitex.tech
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/_debugbar/assets/javascript?v=1744785126
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/build/assets/app-DRs3e_uZ.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/livewire/livewire.js?id=df3a17f2
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/login
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/sitemap.xml
Method GET
Parameter
Attack
Evidence
Other Info
Instances 6
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://8960907.app.suitex.tech
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/_debugbar/assets/javascript?v=1744785126
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/_debugbar/assets/stylesheets?v=1744785126
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/assets/logos/logo_alt.png
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/build/assets/app-ByrcmZUN.css
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/build/assets/app-doXXZgxN.css
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/build/assets/app-DRs3e_uZ.js
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/livewire/livewire.js?id=df3a17f2
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/login
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/register
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/robots.txt
Method GET
Parameter
Attack
Evidence
Other Info
URL https://8960907.app.suitex.tech/sitemap.xml
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://8960907.app.suitex.tech
Method GET
Parameter
Attack
Evidence 1636327362
Other Info 1636327362, which evaluates to: 2021-11-07 23:22:42.
URL https://8960907.app.suitex.tech
Method GET
Parameter
Attack
Evidence 1744785126
Other Info 1744785126, which evaluates to: 2025-04-16 06:32:06.
URL https://8960907.app.suitex.tech
Method GET
Parameter
Attack
Evidence 1755301083
Other Info 1755301083, which evaluates to: 2025-08-15 23:38:03.
URL https://8960907.app.suitex.tech
Method GET
Parameter
Attack
Evidence 1901962243
Other Info 1901962243, which evaluates to: 2030-04-09 10:50:43.
Instances 4
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://8960907.app.suitex.tech
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://8960907.app.suitex.tech/_debugbar/assets/javascript?v=1744785126
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://8960907.app.suitex.tech/_debugbar/assets/stylesheets?v=1744785126
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://8960907.app.suitex.tech/assets/logos/logo_alt.png
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://8960907.app.suitex.tech/build/assets/app-ByrcmZUN.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://8960907.app.suitex.tech/build/assets/app-doXXZgxN.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://8960907.app.suitex.tech/build/assets/app-DRs3e_uZ.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://8960907.app.suitex.tech/livewire/livewire.js?id=df3a17f2
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://8960907.app.suitex.tech/login
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://8960907.app.suitex.tech/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.
Instances 10
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://8960907.app.suitex.tech/login
Method POST
Parameter email
Attack
Evidence password
Other Info userParam=email userValue=zaproxy@example.com passwordParam=password referer=https://8960907.app.suitex.tech/login csrfToken=_token
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
Information Disclosure - Suspicious Comments
Description
The response appears to contain suspicious comments which may help an attacker.
URL https://8960907.app.suitex.tech
Method GET
Parameter
Attack
Evidence query
Other Info The following pattern was used: \bQUERY\b and was detected in likely comment: "//www.w3.org/2000/svg"><path d="M1683 1331l-166 165q-19 19-45 19t-45-19L896 965l-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-", see evidence field for the suspicious comment/snippet.
URL https://8960907.app.suitex.tech/_debugbar/assets/javascript?v=1744785126
Method GET
Parameter
Attack
Evidence username
Other Info The following pattern was used: \bUSERNAME\b and was detected in likely comment: "//,Bt={},_t={},zt="*/".concat("*"),Xt=C.createElement("a");function Ut(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");v", see evidence field for the suspicious comment/snippet.
URL https://8960907.app.suitex.tech/build/assets/app-DRs3e_uZ.js
Method GET
Parameter
Attack
Evidence select
Other Info The following pattern was used: \bSELECT\b and was detected in likely comment: "//www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}funct", see evidence field for the suspicious comment/snippet.
URL https://8960907.app.suitex.tech/login
Method GET
Parameter
Attack
Evidence query
Other Info The following pattern was used: \bQUERY\b and was detected in likely comment: "//www.w3.org/2000/svg"><path d="M1683 1331l-166 165q-19 19-45 19t-45-19L896 965l-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-", see evidence field for the suspicious comment/snippet.
URL https://8960907.app.suitex.tech/sitemap.xml
Method GET
Parameter
Attack
Evidence query
Other Info The following pattern was used: \bQUERY\b and was detected in likely comment: "//www.w3.org/2000/svg"><path d="M1683 1331l-166 165q-19 19-45 19t-45-19L896 965l-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-", see evidence field for the suspicious comment/snippet.
Instances 5
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://8960907.app.suitex.tech
Method GET
Parameter
Attack
Evidence <a href="#" class="flex items-center mt-2 mb-4 text-2xl font-semibold text-white"> <title class="">SuiteX</title> </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://8960907.app.suitex.tech/login
Method GET
Parameter
Attack
Evidence <a href="#" class="flex items-center mt-2 mb-4 text-2xl font-semibold text-white"> <title class="">SuiteX</title> </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://8960907.app.suitex.tech/sitemap.xml
Method GET
Parameter
Attack
Evidence <script src='/_debugbar/assets/javascript?v=1744785126' data-turbolinks-eval='false' data-turbo-eval='false'></script>
Other Info No links have been found while there are scripts, which is an indication that this is a modern web application.
Instances 3
Solution
This is an informational alert and so no changes are required.
Reference
CWE Id
WASC Id
Plugin Id 10109
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://8960907.app.suitex.tech
Method GET
Parameter
Attack
Evidence private
Other Info
URL https://8960907.app.suitex.tech/
Method GET
Parameter
Attack
Evidence private
Other Info
URL https://8960907.app.suitex.tech/login
Method GET
Parameter
Attack
Evidence private
Other Info
URL https://8960907.app.suitex.tech/register
Method GET
Parameter
Attack
Evidence private
Other Info
URL https://8960907.app.suitex.tech/sitemap.xml
Method GET
Parameter
Attack
Evidence private
Other Info
Instances 5
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://8960907.app.suitex.tech
Method GET
Parameter cache-control
Attack
Evidence no-cache, private
Other Info
URL https://8960907.app.suitex.tech/login
Method GET
Parameter cache-control
Attack
Evidence no-cache, private
Other Info
URL https://8960907.app.suitex.tech/robots.txt
Method GET
Parameter cache-control
Attack
Evidence max-age=14400
Other Info
Instances 3
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
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://8960907.app.suitex.tech
Method GET
Parameter suitex_session
Attack
Evidence suitex_session
Other Info cookie:suitex_session cookie:XSRF-TOKEN
URL https://8960907.app.suitex.tech/
Method GET
Parameter suitex_session
Attack
Evidence suitex_session
Other Info cookie:suitex_session cookie:XSRF-TOKEN
URL https://8960907.app.suitex.tech/login
Method GET
Parameter suitex_session
Attack
Evidence suitex_session
Other Info cookie:suitex_session cookie:XSRF-TOKEN
URL https://8960907.app.suitex.tech/register
Method GET
Parameter suitex_session
Attack
Evidence suitex_session
Other Info cookie:suitex_session cookie:XSRF-TOKEN
URL https://8960907.app.suitex.tech/login
Method POST
Parameter suitex_session
Attack
Evidence suitex_session
Other Info cookie:suitex_session cookie:XSRF-TOKEN
URL https://8960907.app.suitex.tech
Method GET
Parameter XSRF-TOKEN
Attack
Evidence XSRF-TOKEN
Other Info cookie:XSRF-TOKEN
Instances 6
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://8960907.app.suitex.tech/_debugbar/assets/javascript?v=1744785126
Method GET
Parameter
Attack
Evidence s-maxage=31536000
Other Info
URL https://8960907.app.suitex.tech/_debugbar/assets/stylesheets?v=1744785126
Method GET
Parameter
Attack
Evidence s-maxage=31536000
Other Info
URL https://8960907.app.suitex.tech/assets/logos/logo_alt.png
Method GET
Parameter
Attack
Evidence max-age=14400
Other Info
URL https://8960907.app.suitex.tech/build/assets/app-ByrcmZUN.css
Method GET
Parameter
Attack
Evidence max-age=14400
Other Info
URL https://8960907.app.suitex.tech/build/assets/app-doXXZgxN.css
Method GET
Parameter
Attack
Evidence max-age=14400
Other Info
URL https://8960907.app.suitex.tech/robots.txt
Method GET
Parameter
Attack
Evidence max-age=14400
Other Info
Instances 6
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

Sequence Details

With the associated active scan results.