ZAP Scanning Report

Summary of Alerts

Generated on Thu, 13 May 2021 17:59:27

Risk LevelNumber of Alerts
High0
Medium2
Low7
Informational2

Alerts

NameRisk LevelNumber of Instances
Vulnerable JS LibraryMedium1
X-Frame-Options Header Not SetMedium4
Absence of Anti-CSRF TokensLow7
Application Error DisclosureLow2
Cookie Without Secure FlagLow2
Incomplete or No Cache-control and Pragma HTTP Header SetLow1
Server Leaks Information via "X-Powered-By" HTTP Response Header Field(s)Low17
X-AspNet-Version Response HeaderLow18
X-Content-Type-Options Header MissingLow10
Information Disclosure - Suspicious CommentsInformational21
Timestamp Disclosure - UnixInformational11

Alert Detail

Medium (Medium)Vulnerable JS Library
Description

The identified library jquery, version 1.9.1 is vulnerable.

URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidence* jQuery JavaScript Library v1.9.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://orders.lolagrove.com/Account/ResetPassword
MethodGET
ParameterX-Frame-Options
URLhttps://orders.lolagrove.com/
MethodGET
ParameterX-Frame-Options
URLhttps://orders.lolagrove.com/Account/Registration
MethodGET
ParameterX-Frame-Options
URLhttps://orders.lolagrove.com
MethodGET
ParameterX-Frame-Options
Instances4
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://orders.lolagrove.com/
MethodPOST
Evidence<form action="/" class="separate-sections" method="post">
URLhttps://orders.lolagrove.com/Account/ResetPassword
MethodGET
Evidence<form action="/Account/ResetPassword" class="separate-sections" method="post">
URLhttps://orders.lolagrove.com/
MethodGET
Evidence<form action="/" class="separate-sections" method="post">
URLhttps://orders.lolagrove.com/Account/ResetPassword
MethodPOST
Evidence<form action="/Account/ResetPassword" class="separate-sections" method="post">
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidence<form class="form-inline editableform">
URLhttps://orders.lolagrove.com
MethodGET
Evidence<form action="/" class="separate-sections" method="post">
URLhttps://orders.lolagrove.com/Account/Registration
MethodGET
Evidence<form action="/Account/Registration" class="form-horizontal fill-up" method="post">
Instances7
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: "Name" "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)Application Error Disclosure
Description

This page contains an error/warning message that may disclose sensitive information like the location of the file that produced the unhandled exception. This information can be used to launch further attacks against the web application. The alert could be a false positive if the error message is found inside a documentation page.

URLhttps://orders.lolagrove.com/
MethodPOST
EvidenceHTTP/1.1 500 Internal Server Error
URLhttps://orders.lolagrove.com/Account/ResetPassword
MethodPOST
EvidenceHTTP/1.1 500 Internal Server Error
Instances2
Solution

Review the source code of this page. Implement custom error pages. Consider implementing a mechanism to provide a unique error reference/identifier to the client (browser) while logging the details on the server side and not exposing them to the user.

Reference

CWE Id200
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://orders.lolagrove.com/
MethodGET
ParameterASP.NET_SessionId
EvidenceSet-Cookie: ASP.NET_SessionId
URLhttps://orders.lolagrove.com
MethodGET
ParameterASP.NET_SessionId
EvidenceSet-Cookie: ASP.NET_SessionId
Instances2
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)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://orders.lolagrove.com/Content/css?v=MdN5oXOdiC3nQ3-BJMRAoMPbHcROnHMp6_i6WvaQq7Y1
MethodGET
ParameterCache-Control
Evidencepublic
Instances1
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.

URLhttps://orders.lolagrove.com/Account/ResetPassword
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/favicon.ico
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/robots.txt
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/content/coreadmin/javascripts/vendor/excanvas.js
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/
MethodPOST
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/sitemap.xml
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/Content/css?v=MdN5oXOdiC3nQ3-BJMRAoMPbHcROnHMp6_i6WvaQq7Y1
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/Account/ResetPassword
MethodPOST
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/Account/Registration
MethodPOST
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/MVC-Ajax?v=YsFURkQOqaorKPNGgL6TqG-cY1i-AfbwpPAojOwClko1
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/Account/Registration
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/content/images/logos/lolagrove.png
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/content/coreadmin/javascripts/vendor/html5shiv.js
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/Modernizr-Script?v=wBEWDufH_8Md-Pbioxomt90vm6tJN2Pyy9u9zHtWsPo1
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com
MethodGET
EvidenceX-Powered-By: ASP.NET
URLhttps://orders.lolagrove.com/
MethodGET
EvidenceX-Powered-By: ASP.NET
Instances17
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://orders.lolagrove.com/Account/Registration
MethodGET
Evidence4.0.30319
URLhttps://orders.lolagrove.com/Content/css?v=MdN5oXOdiC3nQ3-BJMRAoMPbHcROnHMp6_i6WvaQq7Y1
MethodGET
Evidence4.0.30319
URLhttps://orders.lolagrove.com
MethodGET
Evidence4.0
URLhttps://orders.lolagrove.com/Account/ResetPassword
MethodPOST
Evidence4.0
URLhttps://orders.lolagrove.com/MVC-Ajax?v=YsFURkQOqaorKPNGgL6TqG-cY1i-AfbwpPAojOwClko1
MethodGET
Evidence4.0.30319
URLhttps://orders.lolagrove.com/Modernizr-Script?v=wBEWDufH_8Md-Pbioxomt90vm6tJN2Pyy9u9zHtWsPo1
MethodGET
Evidence4.0.30319
URLhttps://orders.lolagrove.com/
MethodGET
Evidence4.0.30319
URLhttps://orders.lolagrove.com
MethodGET
Evidence4.0.30319
URLhttps://orders.lolagrove.com/Account/Registration
MethodPOST
Evidence4.0
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidence4.0.30319
URLhttps://orders.lolagrove.com/Account/Registration
MethodGET
Evidence4.0
URLhttps://orders.lolagrove.com/Account/ResetPassword
MethodGET
Evidence4.0
URLhttps://orders.lolagrove.com/
MethodPOST
Evidence4.0.30319
URLhttps://orders.lolagrove.com/Account/ResetPassword
MethodGET
Evidence4.0.30319
URLhttps://orders.lolagrove.com/
MethodGET
Evidence4.0
URLhttps://orders.lolagrove.com/
MethodPOST
Evidence4.0
URLhttps://orders.lolagrove.com/Account/Registration
MethodPOST
Evidence4.0.30319
URLhttps://orders.lolagrove.com/Account/ResetPassword
MethodPOST
Evidence4.0.30319
Instances18
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://orders.lolagrove.com/Modernizr-Script?v=wBEWDufH_8Md-Pbioxomt90vm6tJN2Pyy9u9zHtWsPo1
MethodGET
ParameterX-Content-Type-Options
URLhttps://orders.lolagrove.com/Content/css?v=MdN5oXOdiC3nQ3-BJMRAoMPbHcROnHMp6_i6WvaQq7Y1
MethodGET
ParameterX-Content-Type-Options
URLhttps://orders.lolagrove.com/favicon.ico
MethodGET
ParameterX-Content-Type-Options
URLhttps://orders.lolagrove.com/content/images/logos/lolagrove.png
MethodGET
ParameterX-Content-Type-Options
URLhttps://orders.lolagrove.com/Account/Registration
MethodGET
ParameterX-Content-Type-Options
URLhttps://orders.lolagrove.com/Account/ResetPassword
MethodGET
ParameterX-Content-Type-Options
URLhttps://orders.lolagrove.com
MethodGET
ParameterX-Content-Type-Options
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
ParameterX-Content-Type-Options
URLhttps://orders.lolagrove.com/
MethodGET
ParameterX-Content-Type-Options
URLhttps://orders.lolagrove.com/MVC-Ajax?v=YsFURkQOqaorKPNGgL6TqG-cY1i-AfbwpPAojOwClko1
MethodGET
ParameterX-Content-Type-Options
Instances10
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://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidencequery
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
EvidenceXXX
URLhttps://orders.lolagrove.com/Account/Registration
MethodGET
EvidenceAdmin
URLhttps://orders.lolagrove.com/Account/ResetPassword
MethodGET
EvidenceAdmin
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidencebugs
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidencefrom
URLhttps://orders.lolagrove.com
MethodGET
EvidenceAdmin
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidencelater
URLhttps://orders.lolagrove.com/
MethodGET
EvidenceAdmin
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidenceselect
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidenceusername
URLhttps://orders.lolagrove.com/Modernizr-Script?v=wBEWDufH_8Md-Pbioxomt90vm6tJN2Pyy9u9zHtWsPo1
MethodGET
Evidenceselect
URLhttps://orders.lolagrove.com/
MethodPOST
EvidenceAdmin
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidencewhere
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidenceuser
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
EvidenceTODO
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidencebug
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
EvidenceADMIN
URLhttps://orders.lolagrove.com/
MethodPOST
Evidenceuser
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
EvidenceFIXME
Instances21
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: \bQUERY\b and was detected 49 times, the first in the element starting with: " //key/values into a query string ", 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://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidence10119793
URLhttps://orders.lolagrove.com/Content/css?v=MdN5oXOdiC3nQ3-BJMRAoMPbHcROnHMp6_i6WvaQq7Y1
MethodGET
Evidence80000000
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidence99000000
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidence113868655
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidence16777216
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidence16711680
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidence20030331
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidence0123456789
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidence20110929
URLhttps://orders.lolagrove.com/Content/css?v=MdN5oXOdiC3nQ3-BJMRAoMPbHcROnHMp6_i6WvaQq7Y1
MethodGET
Evidence00000000
URLhttps://orders.lolagrove.com/Core-Admin-Script?v=9ruMAll_xR7bI94g1RUvn6J2qh1qEFj8bHrxn6Ot4381
MethodGET
Evidence123456789
Instances11
Solution

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

Other information

10119793, which evaluates to: 1970-04-28 04:03:13

Reference

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

CWE Id200
WASC Id13
Source ID3