ZAP Scanning Report

Summary of Alerts

Risk LevelNumber of Alerts
High2
Medium3
Low10
Informational0

Alert Detail

High (Medium)Remote OS Command Injection
Description

Attack technique used for unauthorized execution of operating system commands. This attack is possible when an application accepts untrusted input to build operating system commands in an insecure manner involving improper data sanitization, and/or improper calling of external programs.

URLhttp://dev.investorstatelawguide.com/assets/images/Team/liam-murphy-burke.png?query=query%27%3Bstart-sleep+-s+15
MethodGET
Parameterquery
Attackquery';start-sleep -s 15
Instances1
Solution

If at all possible, use library calls rather than external processes to recreate the desired functionality.

Run your code in a "jail" or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which files can be accessed in a particular directory or which commands can be executed by your software.

OS-level examples include the Unix chroot jail, AppArmor, and SELinux. In general, managed code may provide some protection. For example, java.io.FilePermission in the Java SecurityManager allows you to specify restrictions on file operations.

This may not be a feasible solution, and it only limits the impact to the operating system; the rest of your application may still be subject to compromise.

For any data that will be used to generate a command to be executed, keep as much of that data out of external control as possible. For example, in web applications, this may require storing the command locally in the session's state instead of sending it out to the client in a hidden form field.

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, consider using the ESAPI Encoding control or a similar tool, library, or framework. These will help the programmer encode outputs in a manner less prone to error.

If you need to use dynamically-generated query strings or commands in spite of the risk, properly quote arguments and escape any special characters within those arguments. The most conservative approach is to escape or filter all characters that do not pass an extremely strict whitelist (such as everything that is not alphanumeric or white space). If some special characters are still needed, such as white space, wrap each argument in quotes after the escaping/filtering step. Be careful of argument injection.

If the program to be executed allows arguments to be specified within an input file or from standard input, then consider using that mode to pass arguments instead of the command line.

If available, use structured mechanisms that automatically enforce the separation between data and code. These mechanisms may be able to provide the relevant quoting, encoding, and validation automatically, instead of relying on the developer to provide this capability at every point where output is generated.

Some languages offer multiple functions that can be used to invoke commands. Where possible, identify any function that invokes a command shell using a single string, and replace it with a function that requires individual arguments. These functions typically perform appropriate quoting and filtering of arguments. For example, in C, the system() function accepts a string that contains the entire command to be executed, whereas execl(), execve(), and others require an array of strings, one for each argument. In Windows, CreateProcess() only accepts one command at a time. In Perl, if system() is provided with an array of arguments, then it will quote each of the arguments.

Assume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a whitelist of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. Do not rely exclusively on looking for malicious or malformed inputs (i.e., do not rely on a blacklist). However, blacklists can be useful for detecting potential attacks or determining which inputs are so malformed that they should be rejected outright.

When performing input validation, consider all potentially relevant properties, including length, type of input, the full range of acceptable values, missing or extra inputs, syntax, consistency across related fields, and conformance to business rules. As an example of business rule logic, "boat" may be syntactically valid because it only contains alphanumeric characters, but it is not valid if you are expecting colors such as "red" or "blue."

When constructing OS command strings, use stringent whitelists that limit the character set based on the expected value of the parameter in the request. This will indirectly limit the scope of an attack, but this technique is less important than proper output encoding and escaping.

Note that proper output encoding, escaping, and quoting is the most effective solution for preventing OS command injection, although input validation may provide some defense-in-depth. This is because it effectively limits what will appear in output. Input validation will not always prevent OS command injection, especially if you are required to support free-form text fields that could contain arbitrary characters. For example, when invoking a mail program, you might need to allow the subject field to contain otherwise-dangerous inputs like ";" and ">" characters, which would need to be escaped or otherwise handled. In this case, stripping the character might reduce the risk of OS command injection, but it would produce incorrect behavior because the subject field would not be recorded as the user intended. This might seem to be a minor inconvenience, but it could be more important when the program relies on well-structured subject lines in order to pass messages to other components.

Even if you make a mistake in your validation (such as forgetting one out of 100 input fields), appropriate encoding is still likely to protect you from injection-based attacks. As long as it is not done in isolation, input validation is still a useful technique, since it may significantly reduce your attack surface, allow you to detect some attacks, and provide other security benefits that proper encoding does not address.

Reference

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

https://www.owasp.org/index.php/Command_Injection

CWE Id78
WASC Id31
Source ID1
High (Medium)Path Traversal
Description

The Path Traversal attack technique allows an attacker access to files, directories, and commands that potentially reside outside the web document root directory. An attacker may manipulate a URL in such a way that the web site will execute or reveal the contents of arbitrary files anywhere on the web server. Any device that exposes an HTTP-based interface is potentially vulnerable to Path Traversal.

Most web sites restrict user access to a specific portion of the file-system, typically called the "web document root" or "CGI root" directory. These directories contain the files intended for user access and the executable necessary to drive web application functionality. To access files or execute commands anywhere on the file-system, Path Traversal attacks will utilize the ability of special-characters sequences.

The most basic Path Traversal attack uses the "../" special-character sequence to alter the resource location requested in the URL. Although most popular web servers will prevent this technique from escaping the web document root, alternate encodings of the "../" sequence may help bypass the security filters. These method variations include valid and invalid Unicode-encoding ("..%u2216" or "..%c0%af") of the forward slash character, backslash characters ("..\") on Windows-based servers, URL encoded characters "%2e%2e%2f"), and double URL encoding ("..%255c") of the backslash character.

Even if the web server properly restricts Path Traversal attempts in the URL path, a web application itself may still be vulnerable due to improper handling of user-supplied input. This is a common problem of web applications that use template mechanisms or load static text from files. In variations of the attack, the original URL parameter value is substituted with the file name of one of the web application's dynamic scripts. Consequently, the results can reveal source code because the file is interpreted as text instead of an executable script. These techniques often employ additional special characters such as the dot (".") to reveal the listing of the current working directory, or "%00" NULL characters in order to bypass rudimentary file extension checks.

URLhttp://dev.investorstatelawguide.com/start-your-trial?City=ZAP&Country=Albania&Email=start-your-trial&EnableEditProfile=1&Firm_Institution=ZAP&FirstName=ZAP&I_am_18years_or_Older=1&LastName=ZAP&Position=ZAP&SheduleTutorial=false&TermsConditions=1&active=0&g-recaptcha-response=&id=54&save=y&signup=y&toc=content
MethodPOST
ParameterEmail
Attackstart-your-trial
Instances1
Solution

Assume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a whitelist of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. Do not rely exclusively on looking for malicious or malformed inputs (i.e., do not rely on a blacklist). However, blacklists can be useful for detecting potential attacks or determining which inputs are so malformed that they should be rejected outright.

When performing input validation, consider all potentially relevant properties, including length, type of input, the full range of acceptable values, missing or extra inputs, syntax, consistency across related fields, and conformance to business rules. As an example of business rule logic, "boat" may be syntactically valid because it only contains alphanumeric characters, but it is not valid if you are expecting colors such as "red" or "blue."

For filenames, use stringent whitelists that limit the character set to be used. If feasible, only allow a single "." character in the filename to avoid weaknesses, and exclude directory separators such as "/". Use a whitelist of allowable file extensions.

Warning: if you attempt to cleanse your data, then do so that the end result is not in the form that can be dangerous. A sanitizing mechanism can remove characters such as '.' and ';' which may be required for some exploits. An attacker can try to fool the sanitizing mechanism into "cleaning" data into a dangerous form. Suppose the attacker injects a '.' inside a filename (e.g. "sensi.tiveFile") and the sanitizing mechanism removes the character resulting in the valid filename, "sensitiveFile". If the input data are now assumed to be safe, then the file may be compromised.

Inputs should be decoded and canonicalized to the application's current internal representation before being validated. Make sure that your application does not decode the same input twice. Such errors could be used to bypass whitelist schemes by introducing dangerous inputs after they have been checked.

Use a built-in path canonicalization function (such as realpath() in C) that produces the canonical version of the pathname, which effectively removes ".." sequences and symbolic links.

Run your code using the lowest privileges that are required to accomplish the necessary tasks. If possible, create isolated accounts with limited privileges that are only used for a single task. That way, a successful attack will not immediately give the attacker access to the rest of the software or its environment. For example, database applications rarely need to run as the database administrator, especially in day-to-day operations.

When the set of acceptable objects, such as filenames or URLs, is limited or known, create a mapping from a set of fixed input values (such as numeric IDs) to the actual filenames or URLs, and reject all other inputs.

Run your code in a "jail" or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which files can be accessed in a particular directory or which commands can be executed by your software.

OS-level examples include the Unix chroot jail, AppArmor, and SELinux. In general, managed code may provide some protection. For example, java.io.FilePermission in the Java SecurityManager allows you to specify restrictions on file operations.

This may not be a feasible solution, and it only limits the impact to the operating system; the rest of your application may still be subject to compromise.

Reference

http://projects.webappsec.org/Path-Traversal

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

CWE Id22
WASC Id33
Source ID1
Medium (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://dev.investorstatelawguide.com/start-your-trial
MethodPOST
EvidenceHTTP/1.1 500 Internal Server Error
Instances1
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
Medium (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.

URLhttp://dev.investorstatelawguide.com/Home/Register?Length=0
MethodPOST
EvidenceHTTP/1.1 500 Internal Server Error
URLhttp://dev.investorstatelawguide.com/start-your-trial
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
Medium (Medium)Format String Error
Description

A Format String error occurs when the submitted data of an input string is evaluated as a command by the application.

URLhttp://dev.investorstatelawguide.com/start-your-trial?City=ZAP&Country=Albania&Email=ZAP+%251%21s%252%21s%253%21s%254%21s%255%21s%256%21s%257%21s%258%21s%259%21s%2510%21s%2511%21s%2512%21s%2513%21s%2514%21s%2515%21s%2516%21s%2517%21s%2518%21s%2519%21s%2520%21s%2521%21n%2522%21n%2523%21n%2524%21n%2525%21n%2526%21n%2527%21n%2528%21n%2529%21n%2530%21n%2531%21n%2532%21n%2533%21n%2534%21n%2535%21n%2536%21n%2537%21n%2538%21n%2539%21n%2540%21n%0A&EnableEditProfile=1&Firm_Institution=ZAP&FirstName=ZAP&I_am_18years_or_Older=1&LastName=ZAP&Position=ZAP&SheduleTutorial=false&TermsConditions=1&active=0&g-recaptcha-response=&id=54&save=y&signup=y&toc=content
MethodPOST
ParameterEmail
AttackZAP %1!s%2!s%3!s%4!s%5!s%6!s%7!s%8!s%9!s%10!s%11!s%12!s%13!s%14!s%15!s%16!s%17!s%18!s%19!s%20!s%21!n%22!n%23!n%24!n%25!n%26!n%27!n%28!n%29!n%30!n%31!n%32!n%33!n%34!n%35!n%36!n%37!n%38!n%39!n%40!n
URLhttp://dev.investorstatelawguide.com/Home/Register?City=ZAP&Country=Albania&Email=ZAP+%251%21s%252%21s%253%21s%254%21s%255%21s%256%21s%257%21s%258%21s%259%21s%2510%21s%2511%21s%2512%21s%2513%21s%2514%21s%2515%21s%2516%21s%2517%21s%2518%21s%2519%21s%2520%21s%2521%21n%2522%21n%2523%21n%2524%21n%2525%21n%2526%21n%2527%21n%2528%21n%2529%21n%2530%21n%2531%21n%2532%21n%2533%21n%2534%21n%2535%21n%2536%21n%2537%21n%2538%21n%2539%21n%2540%21n%0A&EnableEditProfile=1&Firm_Institution=ZAP&FirstName=ZAP&I_am_18years_or_Older=1&LastName=ZAP&Length=0&Position=ZAP&SheduleTutorial=false&TermsConditions=1&active=0&g-recaptcha-response=&id=54&save=y&signup=y&toc=content
MethodPOST
ParameterEmail
AttackZAP %1!s%2!s%3!s%4!s%5!s%6!s%7!s%8!s%9!s%10!s%11!s%12!s%13!s%14!s%15!s%16!s%17!s%18!s%19!s%20!s%21!n%22!n%23!n%24!n%25!n%26!n%27!n%28!n%29!n%30!n%31!n%32!n%33!n%34!n%35!n%36!n%37!n%38!n%39!n%40!n
Instances2
Solution

Rewrite the background program using proper deletion of bad character strings. This will require a recompile of the background executable.

Other information

Potential Format String Error. The script closed the connection on a microsoft format string error

Reference

https://www.owasp.org/index.php/Format_string_attack

CWE Id134
WASC Id6
Source ID1
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://dev.investorstatelawguide.com/about-islg/Liam_Murphy_Burke
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/notepad-login
MethodPOST
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/about-islg/Hassan_Kamalinejad
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/assets/images/Team/ProfilePlaceholder.png
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/about-islg/Andres_Felipe
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/assets/images/product/fts.png
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/about-islg/Christopher_Thomas
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/about-islg/Csaba_Kovacs
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/assets/images/Team/laura-yvonne-zielinski.png
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/resources-events
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/about-islg/Alejandro_Barragan
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/assets/images/Home/marci-hoffman.png
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/about-islg/Paul_Moon
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/contact-us
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/Home/ForGetUserName?token=%2fJJ1P12gJvRpftktHjszEg%3d%3d
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/notepad-login
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/assets/images/Team/csaba-kovacs.png
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/assets/images/Home/clients/Curtis.png
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/assets/images/Team/marysia-raptis.png
MethodGET
ParameterX-Content-Type-Options
URLhttps://dev.investorstatelawguide.com/admin/adminlogin
MethodGET
ParameterX-Content-Type-Options
Instances140
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 scanner 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://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id16
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://dev.investorstatelawguide.com/about-islg/Olga_Boltenko
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/admin/adminlogin
MethodPOST
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/about-islg/Christopher_Thomas
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/admin/adminlogin
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/about-islg/Alejandro_Barragan
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/about-islg/Andrew_Newcombe
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/about-islg/Liam_Murphy_Burke
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/Home/ForGetPassWord?Length=0
MethodPOST
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/about-islg/Andres_Felipe
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/Home/ForGetPassWord?Length=0
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/Home/ForGetUserName?token=%2fJJ1P12gJvRpftktHjszEg%3d%3d
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/contact-us
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/about-islg/Harpreet_K_Dhillon
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/about-islg/Paul_Moon
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/about-islg/Irit_Weinfeld
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/resources-events
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/start-your-trial
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/about-islg/Csaba_Kovacs
MethodGET
ParameterCache-Control
Evidenceprivate
URLhttps://dev.investorstatelawguide.com/notepad-login
MethodPOST
ParameterCache-Control
Evidenceprivate
Instances63
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://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id525
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://dev.investorstatelawguide.com/about-islg/Ximena_Iturriaga
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/about-islg/Madalena_Beaudet
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/Views/MasterPages/image/Gear-Favicon.ico
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/recaptcha/api/fallback?k=6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/start-your-trial?City=ZAP&Country=Albania&Email=ZAP&EnableEditProfile=1&Firm_Institution=ZAP&FirstName=ZAP&I_am_18years_or_Older=1&LastName=ZAP&Position=ZAP&SheduleTutorial=false&TermsConditions=1&active=0&g-recaptcha-response&id=54&save=y&signup=y&toc=content
MethodPOST
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/about-islg
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/about-islg/Jeremy_Bocock
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/Home/ForGetUserName?Length=0
MethodPOST
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/start-your-trial?City=ZAP&Country=Albania&Email=ZAP&EnableEditProfile=1&Firm_Institution=ZAP&FirstName=ZAP&I_am_18years_or_Older=1&LastName=ZAP&Position=ZAP&SheduleTutorial=false&TermsConditions=1&active=0&g-recaptcha-response&id=54&save=y&signup=y&toc=content
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/assets/icons/mstile-150x150.png
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/contact-us
MethodGET
Parameterhttps://www.google.com/recaptcha/api.js?render=reCAPTCHA_site_key
Evidence<script type="text/javascript" src="https://www.google.com/recaptcha/api.js?render=reCAPTCHA_site_key"></script>
URLhttps://dev.investorstatelawguide.com/Home/ForGetUserName?Length=0
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/about-islg/Laura_Yvonne_Zielinski
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/Views/Scripts/jquery-ui.js
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/resources-events
MethodGET
Parameterhttps://platform.twitter.com/widgets.js
Evidence<script async="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
URLhttps://dev.investorstatelawguide.com/about-islg/Eleo_Szulc
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/about-islg/Ivaylo_Dimitrov
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/about-islg/Sapna_Jhangiani
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/about-islg/Jennifer_Radford
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttps://dev.investorstatelawguide.com/product
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
Instances63
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)Web Browser XSS Protection Not Enabled
Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URLhttps://dev.investorstatelawguide.com/about-islg/Sapna_Jhangiani
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/about-islg/Jennifer_Radford
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/contact-us?g-recaptcha-response
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/about-islg/Peter_Nikitin
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/assets/icons/android-chrome-192x192.png
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/ResearchTools/ShowDescription?Id=294
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/assets/icons/apple-touch-icon.png
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/about-islg/Greg_Tereposky
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/ResearchTools/ShowDescription?Id=249
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/contactus
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/about-islg/Cameron_Mowatt
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/about-islg/Nafiseh_Arghandeh
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/product
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/admin/adminlogin
MethodPOST
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/about-islg/Andrew_Newcombe
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/admin/adminlogin
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/about-islg/Ximena_Iturriaga
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/about-islg/Christopher_Thomas
MethodGET
ParameterX-XSS-Protection
URLhttps://dev.investorstatelawguide.com/about-islg
MethodGET
ParameterX-XSS-Protection
Instances62
Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id933
WASC Id14
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://dev.investorstatelawguide.com/notepad-login
MethodGET
ParameterUserId
EvidenceSet-Cookie: UserId
URLhttps://dev.investorstatelawguide.com/notepad-login
MethodGET
ParameterPassword
EvidenceSet-Cookie: Password
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

http://www.owasp.org/index.php/Testing_for_cookies_attributes_(OWASP-SM-002)

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

URLhttps://dev.investorstatelawguide.com/notepad-login
MethodGET
ParameterUserId
EvidenceSet-Cookie: UserId
URLhttps://dev.investorstatelawguide.com/notepad-login
MethodGET
ParameterPassword
EvidenceSet-Cookie: Password
Instances2
Solution

Ensure that the HttpOnly flag is set for all cookies.

Reference

http://www.owasp.org/index.php/HttpOnly

CWE Id16
WASC Id13
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.

URLhttp://dev.investorstatelawguide.com/about-islg/Eleo_Szulc
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/assets/images/product/Article-citator.png
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/assets/scripts/min/sassquatch.min.js
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/CSS/font-awesome-4.7.0/css/font-awesome.min.css
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/assets/images/Home/map-relationships-icon.png
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/assets/images/Team/AndresTovar.png
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/assets/images/ISLG-logo.svg
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/Scripts/MicrosoftMvcValidation.js
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/assets/images/product/subjectnavgraphic.png
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/about-islg/Morgan_Maguire
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/assets/images/Team/ProfilePlaceholder.png
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/about-islg/Marysia_Raptis
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/assets/scripts/libraries/slick.js
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/about-islg/Jeremy_Bocock
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/assets/images/Team/laura-yvonne-zielinski.png
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/assets/styles/sassquatch.css
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/about-islg/Csaba_Kovacs
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/Home/Acknowledge
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/assets/images/Team/liam-murphy-burke.png
MethodGET
ParameterX-Content-Type-Options
URLhttp://dev.investorstatelawguide.com/assets/images/Team/jennifer-radford.png
MethodGET
ParameterX-Content-Type-Options
Instances144
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 scanner 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://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id16
WASC Id15
Source ID3
Low (Medium)Web Browser XSS Protection Not Enabled
Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URLhttp://dev.investorstatelawguide.com/sitemap.xml
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/about-islg/Alejandro_Barragan
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/ResearchTools/ShowDescription?Id=249
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/Home/ForGetUserName?token=%2fJJ1P12gJvRpftktHjszEg%3d%3d
MethodPOST
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/about-islg
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/ResearchTools/ShowDescription?Id=294
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/about-islg/Harpreet_K_Dhillon
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/about-islg/Olga_Boltenko
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/about-islg/Christopher_Thomas
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/about-islg/Irit_Weinfeld
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/about-islg/Andres_Felipe
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/Home/ForGetPassword?token=%2fJJ1P12gJvRpftktHjszEg%3d%3d
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/Home/ForGetUserName?token=%2fJJ1P12gJvRpftktHjszEg%3d%3d
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/Home/Register?Length=0
MethodPOST
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/Home/ForGetUserName?Length=0
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/Home/ForGetPassword?token=%2fJJ1P12gJvRpftktHjszEg%3d%3d
MethodPOST
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/about-islg/Marysia_Raptis
MethodGET
ParameterX-XSS-Protection
URLhttp://dev.investorstatelawguide.com/Home/ForGetUserName?Length=0
MethodPOST
ParameterX-XSS-Protection
Instances69
Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id933
WASC Id14
Source ID3
Low (Medium)Cross-Domain JavaScript Source File Inclusion
Description

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

URLhttp://dev.investorstatelawguide.com/about-islg/Mark_Skilling
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/about-islg/Juliana_Sirotsky_Soria
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/Home/Register?City=ZAP&Country=Albania&Email=ZAP&EnableEditProfile=1&Firm_Institution=ZAP&FirstName=ZAP&I_am_18years_or_Older=1&LastName=ZAP&Length=0&Position=ZAP&SheduleTutorial=false&TermsConditions=1&active=0&g-recaptcha-response&id=54&save=y&signup=y&toc=content
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/Home/ForGetPassWord?Length=0
MethodPOST
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/resources-events
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/about-islg/Cameron_Mowatt
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/contactus
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/about-islg/Nafiseh_Arghandeh
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/contact-us?g-recaptcha-response
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/Home/ForGetPassWord?Length=0
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/about-islg/Jennifer_Radford
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/about-islg/Sapna_Jhangiani
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/recaptcha/api/fallback?k=6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/product
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/robots.txt
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/about-islg/Laura_Yvonne_Zielinski
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/about-islg/Diana_Ruiz
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
URLhttp://dev.investorstatelawguide.com/contact-us?g-recaptcha-response
MethodGET
Parameterhttps://www.google.com/recaptcha/api.js?render=reCAPTCHA_site_key
Evidence<script type="text/javascript" src="https://www.google.com/recaptcha/api.js?render=reCAPTCHA_site_key"></script>
URLhttp://dev.investorstatelawguide.com/resources-events
MethodGET
Parameterhttps://platform.twitter.com/widgets.js
Evidence<script async="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
URLhttp://dev.investorstatelawguide.com/about-islg/Alejandro_Barragan
MethodGET
Parameterhttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
Evidence<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
Instances71
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)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.

URLhttp://dev.investorstatelawguide.com/notepad-login
MethodGET
ParameterPassword
EvidenceSet-Cookie: Password
URLhttp://dev.investorstatelawguide.com/notepad-login
MethodGET
ParameterUserId
EvidenceSet-Cookie: UserId
Instances2
Solution

Ensure that the HttpOnly flag is set for all cookies.

Reference

http://www.owasp.org/index.php/HttpOnly

CWE Id16
WASC Id13
Source ID3