ZAP Scanning Report

Summary of Alerts

Risk LevelNumber of Alerts
High4
Medium2
Low1
Informational1

Alert Detail

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://127.0.0.1:5005/add_to_cart/2
MethodPOST
Parameterproduct_size
Attack2
URLhttp://127.0.0.1:5005/add_to_cart/2
MethodPOST
Parameterproduct_quantity
Attack2
URLhttp://127.0.0.1:5005/loadImage?filename=c%3A%2FWindows%2Fsystem.ini
MethodGET
Parameterfilename
Attackc:/Windows/system.ini
Evidence[drivers]
Instances3
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
High (Medium)SQL Injection - SQLite
Description

SQL injection may be possible.

URLhttp://127.0.0.1:5005/login
MethodPOST
Parameteruser_email
Attack'
Evidencenear "test": syntax error
URLhttp://127.0.0.1:5005/login
MethodPOST
Parameteruser_email
Attack'
Evidencenear "p": syntax error
Instances2
Solution

Do not trust client side input, even if there is client side validation in place.

In general, type check all data on the server side.

If the application uses JDBC, use PreparedStatement or CallableStatement, with parameters passed by '?'

If the application uses ASP, use ADO Command Objects with strong type checking and parameterized queries.

If database Stored Procedures can be used, use them.

Do *not* concatenate strings into queries in the stored procedure, or use 'exec', 'exec immediate', or equivalent functionality!

Do not create dynamic SQL queries using simple string concatenation.

Escape all data received from the client.

Apply a 'whitelist' of allowed characters, or a 'blacklist' of disallowed characters in user input.

Apply the principle of least privilege by using the least privileged database user possible.

In particular, avoid using the 'sa' or 'db-owner' database users. This does not eliminate SQL injection, but minimizes its impact.

Grant the minimum database access that is necessary for the application.

Other information

RDBMS [SQLite] likely, given error message regular expression [near ".+": syntax error] matched by the HTML results.

The vulnerability was detected by manipulating the parameter to cause a database error message to be returned and recognised

Reference

https://cheatsheetseries.owasp.org/cheatsheets/SQL_Injection_Prevention_Cheat_Sheet.html

CWE Id89
WASC Id19
Source ID1
High (Medium)Cross Site Scripting (Reflected)
Description

Cross-site Scripting (XSS) is an attack technique that involves echoing attacker-supplied code into a user's browser instance. A browser instance can be a standard web browser client, or a browser object embedded in a software product such as the browser within WinAmp, an RSS reader, or an email client. The code itself is usually written in HTML/JavaScript, but may also extend to VBScript, ActiveX, Java, Flash, or any other browser-supported technology.

When an attacker gets a user's browser to execute his/her code, the code will run within the security context (or zone) of the hosting web site. With this level of privilege, the code has the ability to read, modify and transmit any sensitive data accessible by the browser. A Cross-site Scripted user could have his/her account hijacked (cookie theft), their browser redirected to another location, or possibly shown fraudulent content delivered by the web site they are visiting. Cross-site Scripting attacks essentially compromise the trust relationship between a user and the web site. Applications utilizing browser object instances which load content from the file system may execute code under the local machine zone allowing for system compromise.

There are three types of Cross-site Scripting attacks: non-persistent, persistent and DOM-based.

Non-persistent attacks and DOM-based attacks require a user to either visit a specially crafted link laced with malicious code, or visit a malicious web page containing a web form, which when posted to the vulnerable site, will mount the attack. Using a malicious form will oftentimes take place when the vulnerable resource only accepts HTTP POST requests. In such a case, the form can be submitted automatically, without the victim's knowledge (e.g. by using JavaScript). Upon clicking on the malicious link or submitting the malicious form, the XSS payload will get echoed back and will get interpreted by the user's browser and execute. Another technique to send almost arbitrary requests (GET and POST) is by using an embedded client, such as Adobe Flash.

Persistent attacks occur when the malicious code is submitted to a web site where it's stored for a period of time. Examples of an attacker's favorite targets often include message board posts, web mail messages, and web chat software. The unsuspecting user is not required to interact with any additional site/link (e.g. an attacker site or a malicious link sent via email), just simply view the web page containing the code.

URLhttp://127.0.0.1:5005/loadImage?filename=%3C%2Ftitle%3E%3Cscript%3Ealert%281%29%3B%3C%2Fscript%3E%3Ctitle%3E
MethodGET
Parameterfilename
Attack</title><script>alert(1);</script><title>
Evidence</title><script>alert(1);</script><title>
URLhttp://127.0.0.1:5005/add_to_cart/2
MethodPOST
Parameterproduct_quantity
Attack</title><script>alert(1);</script><title>
Evidence</title><script>alert(1);</script><title>
Instances2
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.

Examples of libraries and frameworks that make it easier to generate properly encoded output include Microsoft's Anti-XSS library, the OWASP ESAPI Encoding module, and Apache Wicket.

Phases: Implementation; Architecture and Design

Understand the context in which your data will be used and the encoding that will be expected. This is especially important when transmitting data between different components, or when generating outputs that can contain multiple encodings at the same time, such as web pages or multi-part mail messages. Study all expected communication protocols and data representations to determine the required encoding strategies.

For any data that will be output to another web page, especially any data that was received from external inputs, use the appropriate encoding on all non-alphanumeric characters.

Consult the XSS Prevention Cheat Sheet for more details on the types of encoding and escaping that are needed.

Phase: Architecture and Design

For any security checks that are performed on the client side, ensure that these checks are duplicated on the server side, in order to avoid CWE-602. Attackers can bypass the client-side checks by modifying values after the checks have been performed, or by changing the client to remove the client-side checks entirely. Then, these modified values would be submitted to the server.

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.

Phase: Implementation

For every web page that is generated, use and specify a character encoding such as ISO-8859-1 or UTF-8. When an encoding is not specified, the web browser may choose a different encoding by guessing which encoding is actually being used by the web page. This can cause the web browser to treat certain sequences as special, opening up the client to subtle XSS attacks. See CWE-116 for more mitigations related to encoding/escaping.

To help mitigate XSS attacks against the user's session cookie, set the session cookie to be HttpOnly. In browsers that support the HttpOnly feature (such as more recent versions of Internet Explorer and Firefox), this attribute can prevent the user's session cookie from being accessible to malicious client-side scripts that use document.cookie. This is not a complete solution, since HttpOnly is not supported by all browsers. More importantly, XMLHTTPRequest and other powerful browser technologies provide read access to HTTP headers, including the Set-Cookie header in which the HttpOnly flag is set.

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."

Ensure that you perform input validation at well-defined interfaces within the application. This will help protect the application even if a component is reused or moved elsewhere.

Reference

http://projects.webappsec.org/Cross-Site-Scripting

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

CWE Id79
WASC Id8
Source ID1
High (Low)Cross Site Scripting (Reflected)
Description

Cross-site Scripting (XSS) is an attack technique that involves echoing attacker-supplied code into a user's browser instance. A browser instance can be a standard web browser client, or a browser object embedded in a software product such as the browser within WinAmp, an RSS reader, or an email client. The code itself is usually written in HTML/JavaScript, but may also extend to VBScript, ActiveX, Java, Flash, or any other browser-supported technology.

When an attacker gets a user's browser to execute his/her code, the code will run within the security context (or zone) of the hosting web site. With this level of privilege, the code has the ability to read, modify and transmit any sensitive data accessible by the browser. A Cross-site Scripted user could have his/her account hijacked (cookie theft), their browser redirected to another location, or possibly shown fraudulent content delivered by the web site they are visiting. Cross-site Scripting attacks essentially compromise the trust relationship between a user and the web site. Applications utilizing browser object instances which load content from the file system may execute code under the local machine zone allowing for system compromise.

There are three types of Cross-site Scripting attacks: non-persistent, persistent and DOM-based.

Non-persistent attacks and DOM-based attacks require a user to either visit a specially crafted link laced with malicious code, or visit a malicious web page containing a web form, which when posted to the vulnerable site, will mount the attack. Using a malicious form will oftentimes take place when the vulnerable resource only accepts HTTP POST requests. In such a case, the form can be submitted automatically, without the victim's knowledge (e.g. by using JavaScript). Upon clicking on the malicious link or submitting the malicious form, the XSS payload will get echoed back and will get interpreted by the user's browser and execute. Another technique to send almost arbitrary requests (GET and POST) is by using an embedded client, such as Adobe Flash.

Persistent attacks occur when the malicious code is submitted to a web site where it's stored for a period of time. Examples of an attacker's favorite targets often include message board posts, web mail messages, and web chat software. The unsuspecting user is not required to interact with any additional site/link (e.g. an attacker site or a malicious link sent via email), just simply view the web page containing the code.

URLhttp://127.0.0.1:5005/login
MethodPOST
Parameteruser_email
Attack'"<script>alert(1);</script>
Evidence'"<script>alert(1);</script>
URLhttp://127.0.0.1:5005/login
MethodPOST
Parameteruser_password
Attack'"<script>alert(1);</script>
Evidence'"<script>alert(1);</script>
Instances2
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.

Examples of libraries and frameworks that make it easier to generate properly encoded output include Microsoft's Anti-XSS library, the OWASP ESAPI Encoding module, and Apache Wicket.

Phases: Implementation; Architecture and Design

Understand the context in which your data will be used and the encoding that will be expected. This is especially important when transmitting data between different components, or when generating outputs that can contain multiple encodings at the same time, such as web pages or multi-part mail messages. Study all expected communication protocols and data representations to determine the required encoding strategies.

For any data that will be output to another web page, especially any data that was received from external inputs, use the appropriate encoding on all non-alphanumeric characters.

Consult the XSS Prevention Cheat Sheet for more details on the types of encoding and escaping that are needed.

Phase: Architecture and Design

For any security checks that are performed on the client side, ensure that these checks are duplicated on the server side, in order to avoid CWE-602. Attackers can bypass the client-side checks by modifying values after the checks have been performed, or by changing the client to remove the client-side checks entirely. Then, these modified values would be submitted to the server.

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.

Phase: Implementation

For every web page that is generated, use and specify a character encoding such as ISO-8859-1 or UTF-8. When an encoding is not specified, the web browser may choose a different encoding by guessing which encoding is actually being used by the web page. This can cause the web browser to treat certain sequences as special, opening up the client to subtle XSS attacks. See CWE-116 for more mitigations related to encoding/escaping.

To help mitigate XSS attacks against the user's session cookie, set the session cookie to be HttpOnly. In browsers that support the HttpOnly feature (such as more recent versions of Internet Explorer and Firefox), this attribute can prevent the user's session cookie from being accessible to malicious client-side scripts that use document.cookie. This is not a complete solution, since HttpOnly is not supported by all browsers. More importantly, XMLHTTPRequest and other powerful browser technologies provide read access to HTTP headers, including the Set-Cookie header in which the HttpOnly flag is set.

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."

Ensure that you perform input validation at well-defined interfaces within the application. This will help protect the application even if a component is reused or moved elsewhere.

Reference

http://projects.webappsec.org/Cross-Site-Scripting

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

CWE Id79
WASC Id8
Source ID1
Medium (Medium)Buffer Overflow
Description

Buffer overflow errors are characterized by the overwriting of memory spaces of the background web process, which should have never been modified intentionally or unintentionally. Overwriting values of the IP (Instruction Pointer), BP (Base Pointer) and other registers causes exceptions, segmentation faults, and other process errors to occur. Usually these errors end execution of the application in an unexpected way.

URLhttp://127.0.0.1:5005/checkout
MethodPOST
Parameterexpiry_date
EvidencePOST http://127.0.0.1:5005/checkout HTTP/1.1 Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1OTQ3NDAyNzUsIm5iZiI6MTU5NDc0MDI3NSwianRpIjoiMjQ0OWUxYjAtZDc3MC00OTk3LWEwN2QtYWFhNmU1NWZkNDgzIiwiZXhwIjoxNTk0NzQxMjc1LCJpZGVudGl0eSI6InRlc3QyQGdtYWlsLmNvbSIsImZyZXNoIjpmYWxzZSwidHlwZSI6ImFjY2VzcyJ9.Z_LV6wZCbaQNTHA9S_epxWZov_0MAc-WzF26Q3-PvIs Content-Type: application/json User-Agent: PostmanRuntime/7.26.1 Accept: */* Postman-Token: 5b639c38-885e-41e9-83de-27089b176bd6 Connection: keep-alive Content-Length: 2323 Host: 127.0.0.1:5005
URLhttp://127.0.0.1:5005/checkout
MethodPOST
Parameterverification_number
EvidencePOST http://127.0.0.1:5005/checkout HTTP/1.1 Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1OTQ3NDAyNzUsIm5iZiI6MTU5NDc0MDI3NSwianRpIjoiMjQ0OWUxYjAtZDc3MC00OTk3LWEwN2QtYWFhNmU1NWZkNDgzIiwiZXhwIjoxNTk0NzQxMjc1LCJpZGVudGl0eSI6InRlc3QyQGdtYWlsLmNvbSIsImZyZXNoIjpmYWxzZSwidHlwZSI6ImFjY2VzcyJ9.Z_LV6wZCbaQNTHA9S_epxWZov_0MAc-WzF26Q3-PvIs Content-Type: application/json User-Agent: PostmanRuntime/7.26.1 Accept: */* Postman-Token: 5b639c38-885e-41e9-83de-27089b176bd6 Connection: keep-alive Content-Length: 2325 Host: 127.0.0.1:5005
URLhttp://127.0.0.1:5005/checkout
MethodPOST
Parameterbilling_address
EvidencePOST http://127.0.0.1:5005/checkout HTTP/1.1 Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1OTQ3NDAyNzUsIm5iZiI6MTU5NDc0MDI3NSwianRpIjoiMjQ0OWUxYjAtZDc3MC00OTk3LWEwN2QtYWFhNmU1NWZkNDgzIiwiZXhwIjoxNTk0NzQxMjc1LCJpZGVudGl0eSI6InRlc3QyQGdtYWlsLmNvbSIsImZyZXNoIjpmYWxzZSwidHlwZSI6ImFjY2VzcyJ9.Z_LV6wZCbaQNTHA9S_epxWZov_0MAc-WzF26Q3-PvIs Content-Type: application/json User-Agent: PostmanRuntime/7.26.1 Accept: */* Postman-Token: 5b639c38-885e-41e9-83de-27089b176bd6 Connection: keep-alive Content-Length: 2317 Host: 127.0.0.1:5005
URLhttp://127.0.0.1:5005/checkout
MethodPOST
Parametercard_number
EvidencePOST http://127.0.0.1:5005/checkout HTTP/1.1 Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1OTQ3NDAyNzUsIm5iZiI6MTU5NDc0MDI3NSwianRpIjoiMjQ0OWUxYjAtZDc3MC00OTk3LWEwN2QtYWFhNmU1NWZkNDgzIiwiZXhwIjoxNTk0NzQxMjc1LCJpZGVudGl0eSI6InRlc3QyQGdtYWlsLmNvbSIsImZyZXNoIjpmYWxzZSwidHlwZSI6ImFjY2VzcyJ9.Z_LV6wZCbaQNTHA9S_epxWZov_0MAc-WzF26Q3-PvIs Content-Type: application/json User-Agent: PostmanRuntime/7.26.1 Accept: */* Postman-Token: 5b639c38-885e-41e9-83de-27089b176bd6 Connection: keep-alive Content-Length: 2312 Host: 127.0.0.1:5005
URLhttp://127.0.0.1:5005/checkout
MethodPOST
Parametercard_type
EvidencePOST http://127.0.0.1:5005/checkout HTTP/1.1 Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1OTQ3NDAyNzUsIm5iZiI6MTU5NDc0MDI3NSwianRpIjoiMjQ0OWUxYjAtZDc3MC00OTk3LWEwN2QtYWFhNmU1NWZkNDgzIiwiZXhwIjoxNTk0NzQxMjc1LCJpZGVudGl0eSI6InRlc3QyQGdtYWlsLmNvbSIsImZyZXNoIjpmYWxzZSwidHlwZSI6ImFjY2VzcyJ9.Z_LV6wZCbaQNTHA9S_epxWZov_0MAc-WzF26Q3-PvIs Content-Type: application/json User-Agent: PostmanRuntime/7.26.1 Accept: */* Postman-Token: 5b639c38-885e-41e9-83de-27089b176bd6 Connection: keep-alive Content-Length: 2327 Host: 127.0.0.1:5005
URLhttp://127.0.0.1:5005/checkout
MethodPOST
Parameterpostal_code
EvidencePOST http://127.0.0.1:5005/checkout HTTP/1.1 Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1OTQ3NDAyNzUsIm5iZiI6MTU5NDc0MDI3NSwianRpIjoiMjQ0OWUxYjAtZDc3MC00OTk3LWEwN2QtYWFhNmU1NWZkNDgzIiwiZXhwIjoxNTk0NzQxMjc1LCJpZGVudGl0eSI6InRlc3QyQGdtYWlsLmNvbSIsImZyZXNoIjpmYWxzZSwidHlwZSI6ImFjY2VzcyJ9.Z_LV6wZCbaQNTHA9S_epxWZov_0MAc-WzF26Q3-PvIs Content-Type: application/json User-Agent: PostmanRuntime/7.26.1 Accept: */* Postman-Token: 5b639c38-885e-41e9-83de-27089b176bd6 Connection: keep-alive Content-Length: 2322 Host: 127.0.0.1:5005
URLhttp://127.0.0.1:5005/checkout
MethodPOST
Parametershipping_method
EvidencePOST http://127.0.0.1:5005/checkout HTTP/1.1 Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1OTQ3NDAyNzUsIm5iZiI6MTU5NDc0MDI3NSwianRpIjoiMjQ0OWUxYjAtZDc3MC00OTk3LWEwN2QtYWFhNmU1NWZkNDgzIiwiZXhwIjoxNTk0NzQxMjc1LCJpZGVudGl0eSI6InRlc3QyQGdtYWlsLmNvbSIsImZyZXNoIjpmYWxzZSwidHlwZSI6ImFjY2VzcyJ9.Z_LV6wZCbaQNTHA9S_epxWZov_0MAc-WzF26Q3-PvIs Content-Type: application/json User-Agent: PostmanRuntime/7.26.1 Accept: */* Postman-Token: 5b639c38-885e-41e9-83de-27089b176bd6 Connection: keep-alive Content-Length: 2327 Host: 127.0.0.1:5005
Instances7
Solution

Rewrite the background program using proper return length checking. This will require a recompile of the background executable.

Other information

Potential Buffer Overflow. The script closed the connection and threw a 500 Internal Server Error

Reference

https://owasp.org/www-community/attacks/Buffer_overflow_attack

CWE Id120
WASC Id7
Source ID1
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.

URLhttp://127.0.0.1:5005/
MethodGET
ParameterX-Frame-Options
Instances1
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. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Reference

https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options

CWE Id16
WASC Id15
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://127.0.0.1:5005/shopping_cart
MethodGET
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/customer_details/2
MethodGET
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/product_details/2
MethodGET
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/add_product
MethodPOST
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/products_page/?size=20&page=1
MethodGET
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/delete_staff/2
MethodDELETE
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/login
MethodPOST
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/delete_product/1
MethodDELETE
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/update_cart/1
MethodPUT
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/update_customer
MethodPUT
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/create_staff
MethodPOST
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/
MethodGET
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/delete_customer/1
MethodDELETE
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/products
MethodGET
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/staff_details/1
MethodGET
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/register
MethodPOST
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/logout
MethodDELETE
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/view_orders
MethodGET
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/update_staff
MethodPUT
ParameterX-Content-Type-Options
URLhttp://127.0.0.1:5005/customers
MethodGET
ParameterX-Content-Type-Options
Instances26
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://owasp.org/www-community/Security_Headers

CWE Id16
WASC Id15
Source ID3
Informational (Low)Timestamp Disclosure - Unix
Description

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

URLhttp://127.0.0.1:5005/staffs
MethodGET
Evidence84937823
URLhttp://127.0.0.1:5005/update_staff
MethodPUT
Evidence91242132
URLhttp://127.0.0.1:5005/checkout
MethodPOST
Evidence91234567
URLhttp://127.0.0.1:5005/staff_details/1
MethodGET
Evidence92837182
URLhttp://127.0.0.1:5005/create_staff
MethodPOST
Evidence91232347
URLhttp://127.0.0.1:5005/update_details
MethodPUT
Evidence91234567
URLhttp://127.0.0.1:5005/staffs
MethodGET
Evidence92837182
URLhttp://127.0.0.1:5005/customers
MethodGET
Evidence83782983
URLhttp://127.0.0.1:5005/customers
MethodGET
Evidence92783652
URLhttp://127.0.0.1:5005/customers
MethodGET
Evidence91234569
URLhttp://127.0.0.1:5005/customer_details/2
MethodGET
Evidence93829173
URLhttp://127.0.0.1:5005/update_customer
MethodPUT
Evidence81234567
URLhttp://127.0.0.1:5005/customers
MethodGET
Evidence93829173
URLhttp://127.0.0.1:5005/staffs
MethodGET
Evidence83782918
Instances14
Solution

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

Other information

84937823, which evaluates to: 1972-09-10 09:20:23

Reference

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

CWE Id200
WASC Id13
Source ID3