ZAP Scanning Report

Summary of Alerts

Generated on Fri, 23 Apr 2021 10:18:53

Risk LevelNumber of Alerts
High0
Medium2
Low9
Informational2

Alerts

NameRisk LevelNumber of Instances
Vulnerable JS LibraryMedium1
X-Frame-Options Header Not SetMedium6
Absence of Anti-CSRF TokensLow4
Cookie Without SameSite AttributeLow1
Cookie Without Secure FlagLow3
Cross-Domain JavaScript Source File InclusionLow13
Incomplete or No Cache-control and Pragma HTTP Header SetLow11
Server Leaks Information via "X-Powered-By" HTTP Response Header Field(s)Low33
X-AspNet-Version Response HeaderLow27
X-Content-Type-Options Header MissingLow22
Information Disclosure - Suspicious CommentsInformational24
Timestamp Disclosure - UnixInformational471

Alert Detail

Medium (Medium)Vulnerable JS Library
Description

The identified library jquery, version 2.1.1 is vulnerable.

URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence/*! jQuery v2.1.1
Instances1
Solution

Please upgrade to the latest version of jquery.

Other information

CVE-2020-11023

CVE-2020-11022

CVE-2015-9251

CVE-2019-11358

Reference

https://github.com/jquery/jquery/issues/2432

http://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/

http://research.insecurelabs.org/jquery/test/

https://blog.jquery.com/2019/04/10/jquery-3-4-0-released/

https://nvd.nist.gov/vuln/detail/CVE-2019-11358

https://nvd.nist.gov/vuln/detail/CVE-2015-9251

https://github.com/jquery/jquery/commit/753d591aea698e57d6db58c9f722cd0808619b1b

https://bugs.jquery.com/ticket/11974

https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/

CWE Id829
Source ID3
Medium (Medium)X-Frame-Options Header Not Set
Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URLhttps://v4.lolagrove.com
MethodGET
ParameterX-Frame-Options
URLhttps://v4.lolagrove.com/Security
MethodGET
ParameterX-Frame-Options
URLhttps://v4.lolagrove.com/
MethodGET
ParameterX-Frame-Options
URLhttps://v4.lolagrove.com/ResetPassword
MethodGET
ParameterX-Frame-Options
URLhttps://v4.lolagrove.com/Agreements
MethodGET
ParameterX-Frame-Options
URLhttps://v4.lolagrove.com/Login
MethodGET
ParameterX-Frame-Options
Instances6
Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (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 Id16
WASC Id15
Source ID3
Low (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.

URLhttps://v4.lolagrove.com/Login
MethodGET
Evidence<form action="/" class="validate smart-form client-form form-horizontal" id="smartValForm" method="post">
URLhttps://v4.lolagrove.com/ResetPassword
MethodGET
Evidence<form action="/ResetPassword" class="client-form validate smart-form" id="smartValForm" method="post">
URLhttps://v4.lolagrove.com
MethodGET
Evidence<form action="/" class="validate smart-form client-form form-horizontal" id="smartValForm" method="post">
URLhttps://v4.lolagrove.com/
MethodGET
Evidence<form action="/" class="validate smart-form client-form form-horizontal" id="smartValForm" method="post">
Instances4
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.

Other information

No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF] was found in the following HTML form: [Form 1: "Email" "Password" ].

Reference

http://projects.webappsec.org/Cross-Site-Request-Forgery

http://cwe.mitre.org/data/definitions/352.html

CWE Id352
WASC Id9
Source ID3
Low (Medium)Cookie Without SameSite Attribute
Description

A cookie has been set without the SameSite attribute, which means that the cookie can be sent as a result of a 'cross-site' request. The SameSite attribute is an effective counter measure to cross-site request forgery, cross-site script inclusion, and timing attacks.

URLhttps://v4.lolagrove.com/Register
MethodGET
Parameter__RequestVerificationToken
EvidenceSet-Cookie: __RequestVerificationToken
Instances1
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 Id16
WASC Id13
Source ID3
Low (Medium)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.

URLhttps://v4.lolagrove.com
MethodGET
ParameterASP.NET_SessionId
EvidenceSet-Cookie: ASP.NET_SessionId
URLhttps://v4.lolagrove.com/Register
MethodGET
Parameter__RequestVerificationToken
EvidenceSet-Cookie: __RequestVerificationToken
URLhttps://v4.lolagrove.com/
MethodGET
ParameterASP.NET_SessionId
EvidenceSet-Cookie: ASP.NET_SessionId
Instances3
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 Id614
WASC Id13
Source ID3
Low (Medium)Cross-Domain JavaScript Source File Inclusion
Description

The page includes one or more script files from a third-party domain.

URLhttps://v4.lolagrove.com/Login
MethodGET
Parameterhttps://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit
Evidence<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit"></script>
URLhttps://v4.lolagrove.com/
MethodGET
Parameterhttps://www.googletagmanager.com/gtag/js?id=UA-25670708-1
Evidence<script async src="https://www.googletagmanager.com/gtag/js?id=UA-25670708-1"></script>
URLhttps://v4.lolagrove.com
MethodGET
Parameterhttps://www.googletagmanager.com/gtag/js?id=UA-25670708-1
Evidence<script async src="https://www.googletagmanager.com/gtag/js?id=UA-25670708-1"></script>
URLhttps://v4.lolagrove.com/Security
MethodGET
Parameterhttps://www.googletagmanager.com/gtag/js?id=UA-25670708-1
Evidence<script async src="https://www.googletagmanager.com/gtag/js?id=UA-25670708-1"></script>
URLhttps://v4.lolagrove.com/Register
MethodGET
Parameterhttps://www.googletagmanager.com/gtag/js?id=UA-25670708-1
Evidence<script async src="https://www.googletagmanager.com/gtag/js?id=UA-25670708-1"></script>
URLhttps://v4.lolagrove.com/
MethodGET
Parameterhttps://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit
Evidence<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit"></script>
URLhttps://v4.lolagrove.com
MethodGET
Parameterhttps://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit
Evidence<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit"></script>
URLhttps://v4.lolagrove.com/ResetPassword
MethodGET
Parameterhttps://www.googletagmanager.com/gtag/js?id=UA-25670708-1
Evidence<script async src="https://www.googletagmanager.com/gtag/js?id=UA-25670708-1"></script>
URLhttps://v4.lolagrove.com/Register
MethodGET
Parameterhttps://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit
Evidence<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit"></script>
URLhttps://v4.lolagrove.com/Login
MethodGET
Parameterhttps://www.googletagmanager.com/gtag/js?id=UA-25670708-1
Evidence<script async src="https://www.googletagmanager.com/gtag/js?id=UA-25670708-1"></script>
URLhttps://v4.lolagrove.com/registration
MethodGET
Parameterhttps://www.googletagmanager.com/gtag/js?id=UA-25670708-1
Evidence<script async src="https://www.googletagmanager.com/gtag/js?id=UA-25670708-1"></script>
URLhttps://v4.lolagrove.com/Agreements
MethodGET
Parameterhttps://www.googletagmanager.com/gtag/js?id=UA-25670708-1
Evidence<script async src="https://www.googletagmanager.com/gtag/js?id=UA-25670708-1"></script>
URLhttps://v4.lolagrove.com/registration
MethodGET
Parameterhttps://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit
Evidence<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit"></script>
Instances13
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 Id829
WASC Id15
Source ID3
Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set
Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URLhttps://v4.lolagrove.com/ResetPassword
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://v4.lolagrove.com/
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://v4.lolagrove.com/Register
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://v4.lolagrove.com/Security
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://v4.lolagrove.com
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://v4.lolagrove.com/Login
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://v4.lolagrove.com/Agreements
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://v4.lolagrove.com/registration
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://v4.lolagrove.com/Smart-Admin-Style?v=ulrGW1N23hVR-R0qXjJFmWpvLAER6FlF8K7rhcDxQZw1
MethodGET
ParameterCache-Control
Evidencepublic
URLhttps://v4.lolagrove.com/Content/Static-SmartAdmin-plugin?v=Nk_BA4_D6QdprHYUmZjftJu7_FejdTkUj5AZuCHkBec1
MethodGET
ParameterCache-Control
Evidencepublic
URLhttps://v4.lolagrove.com/Content/Static-WebPage?v=5KK7b6lsRY84qIsnoxDrHQrsUFu1RAggJLdR79IanpI1
MethodGET
ParameterCache-Control
Evidencepublic
Instances11
Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate; and that the pragma HTTP header is set with no-cache.

Reference

https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html#web-content-caching

CWE Id525
WASC Id13
Source ID3
Low (Medium)Server Leaks Information via "X-Powered-By" HTTP Response Header Field(s)
Description

The web/application server is leaking information via one or more "X-Powered-By" HTTP response headers. Access to such information may facilitate attackers identifying other frameworks/components your web application is reliant upon and the vulnerabilities such components may be subject to.

URLhttp://v4.lolagrove.com/registration
MethodGET
EvidenceX-Powered-By: ASP.NET
Instances1
Solution

Ensure that your web server, application server, load balancer, etc. is configured to suppress "X-Powered-By" headers.

Reference

http://blogs.msdn.com/b/varunm/archive/2013/04/23/remove-unwanted-http-response-headers.aspx

http://www.troyhunt.com/2012/02/shhh-dont-let-your-response-headers.html

CWE Id200
WASC Id13
Source ID3
Low (Medium)Server Leaks Information via "X-Powered-By" HTTP Response Header Field(s)
Description

The web/application server is leaking information via one or more "X-Powered-By" HTTP response headers. Access to such information may facilitate attackers identifying other frameworks/components your web application is reliant upon and the vulnerabilities such components may be subject to.

URLhttps://v4.lolagrove.com/Static-Webpage?v=usXVu7g81Ous_JFAorPfuwz8Or6f1E6n8ObEYAY1DDo1
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/Content/StaticWeb/img/mybg.png
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/Content/images/[email protected]
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/content/coreadmin/javascripts/vendor/excanvas.js
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/Content/StaticWeb/fonts/ecoicons/ecoicons.woff
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/registration
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/Agreements
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/Content/SmartAdmin/fonts/glyphicons-halflings-regular.woff2
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/Security
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/Register
MethodPOST
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/Content/CustomFiles/images/mybg.png
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/content/coreadmin/javascripts/vendor/html5shiv.js
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/robots.txt
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/
MethodPOST
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/favicon.ico
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/sitemap.xml
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/content/images/lolagrove-logo.png
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://v4.lolagrove.com/Content/SmartAdmin/fonts/font-awesome/fontawesome-webfont.woff?v=4.5.0
MethodGET
EvidenceX-Powered-By: ASP.NET
Instances32
Solution

Ensure that your web server, application server, load balancer, etc. is configured to suppress "X-Powered-By" headers.

Reference

http://blogs.msdn.com/b/varunm/archive/2013/04/23/remove-unwanted-http-response-headers.aspx

http://www.troyhunt.com/2012/02/shhh-dont-let-your-response-headers.html

CWE Id200
WASC Id13
Source ID3
Low (High)X-AspNet-Version Response Header
Description

Server leaks information via "X-AspNet-Version"/"X-AspNetMvc-Version" HTTP response header field(s).

URLhttps://v4.lolagrove.com/registration
MethodGET
Evidence4.0.30319
URLhttps://v4.lolagrove.com/Security
MethodGET
Evidence4.0.30319
URLhttps://v4.lolagrove.com/
MethodPOST
Evidence4.0.30319
URLhttps://v4.lolagrove.com/Agreements
MethodGET
Evidence4.0.30319
URLhttps://v4.lolagrove.com/ResetPassword
MethodPOST
Evidence4.0.30319
URLhttps://v4.lolagrove.com/Register
MethodGET
Evidence5.2
URLhttps://v4.lolagrove.com
MethodGET
Evidence5.2
URLhttps://v4.lolagrove.com/Login
MethodGET
Evidence4.0.30319
URLhttps://v4.lolagrove.com/
MethodGET
Evidence5.2
URLhttps://v4.lolagrove.com/ResetPassword
MethodPOST
Evidence5.2
URLhttps://v4.lolagrove.com/Static-Webpage?v=usXVu7g81Ous_JFAorPfuwz8Or6f1E6n8ObEYAY1DDo1
MethodGET
Evidence4.0.30319
URLhttps://v4.lolagrove.com/Content/Static-SmartAdmin-plugin?v=Nk_BA4_D6QdprHYUmZjftJu7_FejdTkUj5AZuCHkBec1
MethodGET
Evidence4.0.30319
URLhttps://v4.lolagrove.com/Smart-Admin-Style?v=ulrGW1N23hVR-R0qXjJFmWpvLAER6FlF8K7rhcDxQZw1
MethodGET
Evidence4.0.30319
URLhttps://v4.lolagrove.com
MethodGET
Evidence4.0.30319
URLhttps://v4.lolagrove.com/registration
MethodGET
Evidence5.2
URLhttps://v4.lolagrove.com/Register
MethodPOST
Evidence4.0.30319
URLhttps://v4.lolagrove.com/ResetPassword
MethodGET
Evidence5.2
URLhttps://v4.lolagrove.com/Content/Static-WebPage?v=5KK7b6lsRY84qIsnoxDrHQrsUFu1RAggJLdR79IanpI1
MethodGET
Evidence4.0.30319
URLhttps://v4.lolagrove.com/Register
MethodGET
Evidence4.0.30319
URLhttps://v4.lolagrove.com/
MethodGET
Evidence4.0.30319
Instances27
Solution

Configure the server so it will not return those headers.

Other information

An attacker can use this information to exploit known vulnerabilities.

Reference

https://www.troyhunt.com/shhh-dont-let-your-response-headers/

https://blogs.msdn.microsoft.com/varunm/2013/04/23/remove-unwanted-http-response-headers/

CWE Id933
WASC Id14
Source ID3
Low (Medium)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.

URLhttps://v4.lolagrove.com/Content/Static-SmartAdmin-plugin?v=Nk_BA4_D6QdprHYUmZjftJu7_FejdTkUj5AZuCHkBec1
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/content/images/lolagrove-logo.png
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Content/CustomFiles/css/font/fontawesome-webfont.woff?v=3.0.1
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Agreements
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Content/CustomFiles/images/mybg.png
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Content/images/[email protected]
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Content/StaticWeb/fonts/ecoicons/ecoicons.woff
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/registration
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Content/SmartAdmin/fonts/font-awesome/fontawesome-webfont.woff?v=4.5.0
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Scripts/pdf/pdf.worker.js
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Login
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Content/SmartAdmin/fonts/glyphicons-halflings-regular.woff
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/ResetPassword
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/favicon.ico
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Content/Static-WebPage?v=5KK7b6lsRY84qIsnoxDrHQrsUFu1RAggJLdR79IanpI1
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Security
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Register
MethodGET
ParameterX-Content-Type-Options
URLhttps://v4.lolagrove.com/Static-Webpage?v=usXVu7g81Ous_JFAorPfuwz8Or6f1E6n8ObEYAY1DDo1
MethodGET
ParameterX-Content-Type-Options
Instances22
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.

Other information

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.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://owasp.org/www-community/Security_Headers

CWE Id16
WASC Id15
Source ID3
Informational (Low)Information Disclosure - Suspicious Comments
Description

The response appears to contain suspicious comments which may help an attacker. Note: Matches made within script blocks or files are against the entire content not only comments.

URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidencelater
URLhttps://v4.lolagrove.com/Scripts/pdf/pdf.worker.js
MethodGET
Evidenceselect
URLhttps://v4.lolagrove.com/Agreements
MethodGET
EvidenceAdmin
URLhttps://v4.lolagrove.com/Scripts/pdf/pdf.worker.js
MethodGET
Evidencequery
URLhttps://v4.lolagrove.com/Security
MethodGET
EvidenceAdmin
URLhttps://v4.lolagrove.com
MethodGET
EvidenceAdmin
URLhttps://v4.lolagrove.com/Scripts/pdf/pdf.worker.js
MethodGET
Evidencefrom
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidenceusername
URLhttps://v4.lolagrove.com/Login
MethodGET
EvidenceAdmin
URLhttps://v4.lolagrove.com/registration
MethodGET
Evidenceuser
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidencefrom
URLhttps://v4.lolagrove.com/Static-Webpage?v=usXVu7g81Ous_JFAorPfuwz8Or6f1E6n8ObEYAY1DDo1
MethodGET
Evidenceuser
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidencequery
URLhttps://v4.lolagrove.com/ResetPassword
MethodGET
EvidenceAdmin
URLhttps://v4.lolagrove.com/
MethodGET
EvidenceAdmin
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
EvidenceXXX
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
EvidenceTODO
URLhttps://v4.lolagrove.com/Register
MethodGET
EvidenceAdmin
URLhttps://v4.lolagrove.com/Scripts/pdf/pdf.worker.js
MethodGET
EvidenceXXX
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidencedb
Instances24
Solution

Remove all comments that return information that may help an attacker and fix any underlying problems they refer to.

Other information

The following pattern was used: \bLATER\b and was detected in the element starting with: " // cache stuff for faster recalcs later ", see evidence field for the suspicious comment/snippet.

Reference

CWE Id200
WASC Id13
Source ID3
Informational (Low)Timestamp Disclosure - Unix
Description

A timestamp was disclosed by the application/web server - Unix

URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence592401234
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence0669812345
URLhttps://v4.lolagrove.com/Agreements
MethodGET
Evidence05443168
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence412345678
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence14567890
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence28212345
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence933301234
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence300123456
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence878123456
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence590271234
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence30161234
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence870012345
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence72001234
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence16711680
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence917123456
URLhttps://v4.lolagrove.com/Content/Static-WebPage?v=5KK7b6lsRY84qIsnoxDrHQrsUFu1RAggJLdR79IanpI1
MethodGET
Evidence00000000
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence80112345
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence803123456
URLhttps://v4.lolagrove.com/Smart-Admin-Script?v=rKLpEUoqdgm0GvZ08SKBLN9TLXgEDqO_1v1vH6rmi_A1
MethodGET
Evidence697861234
URLhttps://v4.lolagrove.com
MethodGET
Evidence25670708
Instances471
Solution

Manually confirm that the timestamp data is not sensitive, and that the data cannot be aggregated to disclose exploitable patterns.

Other information

592401234, which evaluates to: 1988-10-09 12:53:54

Reference

http://projects.webappsec.org/w/page/13246936/Information%20Leakage

CWE Id200
WASC Id13
Source ID3