| Risk Level | Number of Alerts |
|---|---|
|
High
|
0
|
|
Medium
|
3
|
|
Low
|
6
|
|
Informational
|
6
|
|
False Positives:
|
0
|
| Name | Risk Level | Number of Instances |
|---|---|---|
| Absence of Anti-CSRF Tokens | Medium | 4 |
| CSP: Wildcard Directive | Medium | 31 |
| Content Security Policy (CSP) Header Not Set | Medium | 1 |
| CSP: Notices | Low | 30 |
| Cookie Without Secure Flag | Low | 58 |
| Cross-Domain JavaScript Source File Inclusion | Low | 39 |
| Strict-Transport-Security Header Not Set | Low | 5 |
| X-Content-Type-Options Header Missing | Low | 3 |
| ZAP is Out of Date | Low | 1 |
| Authentication Request Identified | Informational | 2 |
| Information Disclosure - Sensitive Information in URL | Informational | 15 |
| Information Disclosure - Suspicious Comments | Informational | 9 |
| Modern Web Application | Informational | 24 |
| Re-examine Cache-control Directives | Informational | 1 |
| Session Management Response Identified | Informational | 58 |
|
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.
|
| URL | https://staging.letsfish.africa/forgot-password |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | <form id="email-form-newsletter" name="email-form" data-name="Email Form" method="get" class="footer-form" data-wf-page-id="6810fb3d43dfb21fb0f9879e" data-wf-element-id="27694c21-cbfc-58f0-1e5c-e47458f6d8e3" > |
| Other Info | No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token] was found in the following HTML form: [Form 1: "footer-email" ]. |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | <form id="email-form-newsletter" name="email-form" data-name="Email Form" method="get" class="footer-form" data-wf-page-id="6810fb3d43dfb21fb0f9879e" data-wf-element-id="27694c21-cbfc-58f0-1e5c-e47458f6d8e3" > |
| Other Info | No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token] was found in the following HTML form: [Form 1: "footer-email" ]. |
| URL | https://staging.letsfish.africa/login |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | <form id="email-form-newsletter" name="email-form" data-name="Email Form" method="get" class="footer-form" data-wf-page-id="6810fb3d43dfb21fb0f9879e" data-wf-element-id="27694c21-cbfc-58f0-1e5c-e47458f6d8e3" > |
| Other Info | No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token] was found in the following HTML form: [Form 1: "footer-email" ]. |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | <form id="email-form-newsletter" name="email-form" data-name="Email Form" method="get" class="footer-form" data-wf-page-id="6810fb3d43dfb21fb0f9879e" data-wf-element-id="27694c21-cbfc-58f0-1e5c-e47458f6d8e3" > |
| Other Info | No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token] was found in the following HTML form: [Form 1: "footer-email" ]. |
| Instances | 4 |
| 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.
|
| Reference |
https://cheatsheetseries.owasp.org/cheatsheets/Cross-Site_Request_Forgery_Prevention_Cheat_Sheet.html
https://cwe.mitre.org/data/definitions/352.html |
| CWE Id | 352 |
| WASC Id | 9 |
| Plugin Id | 10202 |
|
Medium |
CSP: Wildcard Directive |
|---|---|
| Description |
Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks. Including (but not limited to) Cross Site Scripting (XSS), and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
|
| URL | https://staging.letsfish.africa |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/ |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/forgot-password |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/login |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/privacy |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/privacy?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/register |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/register?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/sitemap.xml |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/sitemap.xml?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/terms |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/terms?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/forgot-password |
| Method | POST |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/login |
| Method | POST |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| Instances | 31 |
| Solution |
Ensure that your web server, application server, load balancer, etc. is properly configured to set the Content-Security-Policy header.
|
| Reference |
https://www.w3.org/TR/CSP/
https://caniuse.com/#search=content+security+policy https://content-security-policy.com/ https://github.com/HtmlUnit/htmlunit-csp https://developers.google.com/web/fundamentals/security/csp#policy_applies_to_a_wide_variety_of_resources |
| CWE Id | 693 |
| WASC Id | 15 |
| Plugin Id | 10055 |
|
Medium |
Content Security Policy (CSP) Header Not Set |
|---|---|
| Description |
Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks, including Cross Site Scripting (XSS) and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
|
| URL | https://staging.letsfish.africa/cdn-cgi/l/email-protection |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | |
| Instances | 1 |
| Solution |
Ensure that your web server, application server, load balancer, etc. is configured to set the Content-Security-Policy header.
|
| Reference |
https://developer.mozilla.org/en-US/docs/Web/Security/CSP/Introducing_Content_Security_Policy
https://cheatsheetseries.owasp.org/cheatsheets/Content_Security_Policy_Cheat_Sheet.html https://www.w3.org/TR/CSP/ https://w3c.github.io/webappsec-csp/ https://web.dev/articles/csp https://caniuse.com/#feat=contentsecuritypolicy https://content-security-policy.com/ |
| CWE Id | 693 |
| WASC Id | 15 |
| Plugin Id | 10038 |
|
Low |
CSP: Notices |
|---|---|
| Description |
Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks. Including (but not limited to) Cross Site Scripting (XSS), and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
|
| URL | https://staging.letsfish.africa |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/ |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/forgot-password |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/login |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/privacy |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/privacy?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/register |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/register?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/sitemap.xml?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/terms |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/terms?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/forgot-password |
| Method | POST |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/login |
| Method | POST |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | Content-Security-Policy |
| Attack | |
| Evidence | default-src 'self' connect-src 'self'; |
| Other Info | Warnings: Duplicate source-expression 'self' |
| Instances | 30 |
| Solution |
Ensure that your web server, application server, load balancer, etc. is properly configured to set the Content-Security-Policy header.
|
| Reference |
https://www.w3.org/TR/CSP/
https://caniuse.com/#search=content+security+policy https://content-security-policy.com/ https://github.com/HtmlUnit/htmlunit-csp https://developers.google.com/web/fundamentals/security/csp#policy_applies_to_a_wide_variety_of_resources |
| CWE Id | 693 |
| WASC Id | 15 |
| Plugin Id | 10055 |
|
Low |
Cookie Without Secure Flag |
|---|---|
| Description |
A cookie has been set without the secure flag, which means that the cookie can be accessed via unencrypted connections.
|
| URL | https://staging.letsfish.africa/?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/css/auth-redesign/fish-africa.webflow.css |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/css/auth-redesign/normalize.css |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/css/auth-redesign/webflow.css |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/css/fish-africa.webflow.css |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/css/normalize.css |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/css/webflow.css |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/CALL-CENTER--PBX-SOLUTION-copy_2-min-p-1080.jpg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/CALL-CENTER--PBX-SOLUTION-copy_2-min-p-500.jpg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/CALL-CENTER--PBX-SOLUTION-copy_2-min-p-800.jpg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/CALL-CENTER--PBX-SOLUTION-copy_2-min.jpg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/check.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/favicon.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/FISH-AFRICA-Logo-p-800.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/google.svg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/webclip.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/email-icon.svg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/favicon.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/Feature-Icon-03.svg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/FISH-AFRICA-Logo-p-800.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/images/webclip.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/js/auth-redesign/webflow.js |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/js/pages/forgot-password.js |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/js/pages/login.js |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/js/pages/register.js |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/assets/js/webflow.js |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/forgot-password |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/login |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/privacy |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/privacy?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/register |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/register?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/sitemap.xml?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/terms |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/terms?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/forgot-password |
| Method | POST |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/login |
| Method | POST |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| URL | https://staging.letsfish.africa/register |
| Method | POST |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | Set-Cookie: DLPCONSOLESESSIONIDstaging |
| Other Info | |
| Instances | 58 |
| Solution |
Whenever a cookie contains sensitive information or is a session token, then it should always be passed using an encrypted channel. Ensure that the secure flag is set for cookies containing such sensitive information.
|
| Reference | https://owasp.org/www-project-web-security-testing-guide/v41/4-Web_Application_Security_Testing/06-Session_Management_Testing/02-Testing_for_Cookies_Attributes.html |
| CWE Id | 614 |
| WASC Id | 13 |
| Plugin Id | 10011 |
|
Low |
Cross-Domain JavaScript Source File Inclusion |
|---|---|
| Description |
The page includes one or more script files from a third-party domain.
|
| URL | https://staging.letsfish.africa |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/ |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/forgot-password |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/login |
| Method | GET |
| Parameter | https://accounts.google.com/gsi/client |
| Attack | |
| Evidence | <script src="https://accounts.google.com/gsi/client" async></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/login |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/login |
| Method | GET |
| Parameter | https://challenges.cloudflare.com/turnstile/v0/api.js |
| Attack | |
| Evidence | <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://accounts.google.com/gsi/client |
| Attack | |
| Evidence | <script src="https://accounts.google.com/gsi/client" async></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://challenges.cloudflare.com/turnstile/v0/api.js |
| Attack | |
| Evidence | <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/privacy |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/privacy?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/register |
| Method | GET |
| Parameter | https://accounts.google.com/gsi/client |
| Attack | |
| Evidence | <script src="https://accounts.google.com/gsi/client" async></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/register |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/register |
| Method | GET |
| Parameter | https://challenges.cloudflare.com/turnstile/v0/api.js |
| Attack | |
| Evidence | <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/register?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://accounts.google.com/gsi/client |
| Attack | |
| Evidence | <script src="https://accounts.google.com/gsi/client" async></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/register?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/register?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://challenges.cloudflare.com/turnstile/v0/api.js |
| Attack | |
| Evidence | <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/sitemap.xml |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/sitemap.xml?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/terms |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/terms?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/forgot-password |
| Method | POST |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/login |
| Method | POST |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js |
| Attack | |
| Evidence | <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript" ></script> |
| Other Info | |
| Instances | 39 |
| 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 Id | 829 |
| WASC Id | 15 |
| Plugin Id | 10017 |
|
Low |
Strict-Transport-Security Header Not Set |
|---|---|
| Description |
HTTP Strict Transport Security (HSTS) is a web security policy mechanism whereby a web server declares that complying user agents (such as a web browser) are to interact with it using only secure HTTPS connections (i.e. HTTP layered over TLS/SSL). HSTS is an IETF standards track protocol and is specified in RFC 6797.
|
| URL | https://staging.letsfish.africa/cdn-cgi/l/email-protection |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | |
| URL | https://staging.letsfish.africa/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | |
| URL | https://staging.letsfish.africa/cdn-cgi/styles/cf.errors.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | |
| URL | https://staging.letsfish.africa/cdn-cgi/styles/cf.errors.ie.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | |
| URL | https://staging.letsfish.africa/robots.txt |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | |
| Instances | 5 |
| Solution |
Ensure that your web server, application server, load balancer, etc. is configured to enforce Strict-Transport-Security.
|
| Reference |
https://cheatsheetseries.owasp.org/cheatsheets/HTTP_Strict_Transport_Security_Cheat_Sheet.html
https://owasp.org/www-community/Security_Headers https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security https://caniuse.com/stricttransportsecurity https://datatracker.ietf.org/doc/html/rfc6797 |
| CWE Id | 319 |
| WASC Id | 15 |
| Plugin Id | 10035 |
|
Low |
X-Content-Type-Options Header Missing |
|---|---|
| Description |
The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.
|
| URL | https://staging.letsfish.africa/cdn-cgi/styles/cf.errors.css |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | https://staging.letsfish.africa/cdn-cgi/styles/cf.errors.ie.css |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | https://staging.letsfish.africa/robots.txt |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| Instances | 3 |
| Solution |
Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.
If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.
|
| Reference |
https://learn.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/compatibility/gg622941(v=vs.85)
https://owasp.org/www-community/Security_Headers |
| CWE Id | 693 |
| WASC Id | 15 |
| Plugin Id | 10021 |
|
Low |
ZAP is Out of Date |
|---|---|
| Description |
The version of ZAP you are using to test your app is out of date and is no longer being updated.
The risk level is set based on how out of date your ZAP version is.
|
| URL | https://staging.letsfish.africa/robots.txt |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | The latest version of ZAP is 2.16.1 |
| Instances | 1 |
| Solution |
Download the latest version of ZAP from https://www.zaproxy.org/download/ and install it.
|
| Reference | https://www.zaproxy.org/download/ |
| CWE Id | 1104 |
| WASC Id | 45 |
| Plugin Id | 10116 |
|
Informational |
Authentication Request Identified |
|---|---|
| Description |
The given request has been identified as an authentication request. The 'Other Info' field contains a set of key=value lines which identify any relevant fields. If the request is in a context which has an Authentication Method set to "Auto-Detect" then this rule will change the authentication to match the request identified.
|
| URL | https://staging.letsfish.africa/login |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | password |
| Other Info | userParam=email userValue=foo-bar@example.com passwordParam=password referer=https://staging.letsfish.africa/login csrfToken=csrf-token |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | password |
| Other Info | userParam=email userValue=foo-bar@example.com passwordParam=password referer=https://staging.letsfish.africa/login?email-2=foo-bar%40example.com csrfToken=csrf-token |
| Instances | 2 |
| Solution |
This is an informational alert rather than a vulnerability and so there is nothing to fix.
|
| Reference | https://www.zaproxy.org/docs/desktop/addons/authentication-helper/auth-req-id/ |
| CWE Id | |
| WASC Id | |
| Plugin Id | 10111 |
|
Informational |
Information Disclosure - Sensitive Information in URL |
|---|---|
| Description |
The request appeared to contain sensitive information leaked in the URL. This can violate PCI and most organizational compliance policies. You can configure the list of strings for this check to add or remove values specific to your environment.
|
| URL | https://staging.letsfish.africa/?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/privacy?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/register?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/sitemap.xml?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/terms?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | email-2 |
| Attack | |
| Evidence | foo-bar@example.com |
| Other Info | The URL contains email address(es). |
| Instances | 15 |
| Solution |
Do not pass sensitive information in URIs.
|
| Reference | |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10024 |
|
Informational |
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.
|
| URL | https://staging.letsfish.africa/assets/js/auth-redesign/webflow.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | bug |
| Other Info | The following pattern was used: \bBUG\b and was detected 2 times, the first in the element starting with: "spurious results.`)}}return!1};class Y{constructor(e,t="GraphQL request",n={line:1,column:1}){"string"==typeof e||(0,N.a)(!1,`Bo", see evidence field for the suspicious comment/snippet. |
| URL | https://staging.letsfish.africa/assets/js/auth-redesign/webflow.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | from |
| Other Info | The following pattern was used: \bFROM\b and was detected 2 times, the first in the element starting with: "versions may have different capabilities and behavior. The data from one", see evidence field for the suspicious comment/snippet. |
| URL | https://staging.letsfish.africa/assets/js/auth-redesign/webflow.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | QUERY |
| Other Info | The following pattern was used: \bQUERY\b and was detected 4 times, the first in the element starting with: "`,l=r.split(/\r\n|[\n\r]/g),d=l[i];if(d.length>120){let e=Math.floor(c/80),t=[];for(let e=0;e<d.length;e+=80)t.push(d.slice(e,e+", see evidence field for the suspicious comment/snippet. |
| URL | https://staging.letsfish.africa/assets/js/auth-redesign/webflow.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | user |
| Other Info | The following pattern was used: \bUSER\b and was detected 2 times, the first in the element starting with: " user {", see evidence field for the suspicious comment/snippet. |
| URL | https://staging.letsfish.africa/assets/js/pages/forgot-password.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | from |
| Other Info | The following pattern was used: \bFROM\b and was detected in the element starting with: "import {Feedback} from "../modules/feedback.js";", see evidence field for the suspicious comment/snippet. |
| URL | https://staging.letsfish.africa/assets/js/pages/forgot-password.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | later |
| Other Info | The following pattern was used: \bLATER\b and was detected in the element starting with: " feedback.error("An error occurred. Please try again later.");", see evidence field for the suspicious comment/snippet. |
| URL | https://staging.letsfish.africa/assets/js/pages/login.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | from |
| Other Info | The following pattern was used: \bFROM\b and was detected in the element starting with: "import {Feedback} from "../modules/feedback.js";", see evidence field for the suspicious comment/snippet. |
| URL | https://staging.letsfish.africa/assets/js/pages/register.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | from |
| Other Info | The following pattern was used: \bFROM\b and was detected in the element starting with: "import {Feedback} from "../modules/feedback.js";", see evidence field for the suspicious comment/snippet. |
| URL | https://staging.letsfish.africa/assets/js/pages/register.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | select |
| Other Info | The following pattern was used: \bSELECT\b and was detected 2 times, the first in the element starting with: " feedback.error("Please select a country");", see evidence field for the suspicious comment/snippet. |
| Instances | 9 |
| Solution |
Remove all comments that return information that may help an attacker and fix any underlying problems they refer to.
|
| Reference | |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10027 |
|
Informational |
Modern Web Application |
|---|---|
| Description |
The application appears to be a modern web application. If you need to explore it automatically then the Ajax Spider may well be more effective than the standard one.
|
| URL | https://staging.letsfish.africa/forgot-password |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block"> <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none"> <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor"></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block"> <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none"> <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor"></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/login |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a href="#" class="social-button w-inline-block" style="display: flex; align-items: center; justify-content: center; width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; text-decoration: none; color: #333; margin-bottom: 15px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 400;"> <img src='https://staging.letsfish.africa/assets/images/auth-redesign/google.svg' loading="lazy" alt="" class="social-icon" style="margin-right: 10px; width: 20px; height: 20px;" /> <div>Continue with Google</div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a href="#" class="social-button w-inline-block" style="display: flex; align-items: center; justify-content: center; width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; text-decoration: none; color: #333; margin-bottom: 15px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 400;"> <img src='https://staging.letsfish.africa/assets/images/auth-redesign/google.svg' loading="lazy" alt="" class="social-icon" style="margin-right: 10px; width: 20px; height: 20px;" /> <div>Continue with Google</div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/register |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a href="#" id="google-signin-button" class="social-button w-inline-block" style="display: flex; align-items: center; justify-content: center; width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; text-decoration: none; color: #333; margin-bottom: 15px;"> <img src='https://staging.letsfish.africa/assets/images/auth-redesign/google.svg' loading="lazy" alt="" class="social-icon" style="margin-right: 10px; width: 20px; height: 20px;" /> <div>Continue with Google</div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/register?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a href="#" id="google-signin-button" class="social-button w-inline-block" style="display: flex; align-items: center; justify-content: center; width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; text-decoration: none; color: #333; margin-bottom: 15px;"> <img src='https://staging.letsfish.africa/assets/images/auth-redesign/google.svg' loading="lazy" alt="" class="social-icon" style="margin-right: 10px; width: 20px; height: 20px;" /> <div>Continue with Google</div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/sitemap.xml?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/forgot-password |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/login |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | <a data-w-id="130124a7-bbf1-5bcd-78bb-026d5089a8b4" href="#" class="banner-button-small w-inline-block" > <div class="icon-small w-embed"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none" > <path d="M12.2 3.80667C11.94 3.54667 11.52 3.54667 11.26 3.80667L7.99998 7.06L4.73998 3.8C4.47998 3.54 4.05998 3.54 3.79998 3.8C3.53998 4.06 3.53998 4.48 3.79998 4.74L7.05998 8L3.79998 11.26C3.53998 11.52 3.53998 11.94 3.79998 12.2C4.05998 12.46 4.47998 12.46 4.73998 12.2L7.99998 8.94L11.26 12.2C11.52 12.46 11.94 12.46 12.2 12.2C12.46 11.94 12.46 11.52 12.2 11.26L8.93998 8L12.2 4.74C12.4533 4.48667 12.4533 4.06 12.2 3.80667Z" fill="currentColor" ></path> </svg> </div> </a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| Instances | 24 |
| Solution |
This is an informational alert and so no changes are required.
|
| Reference | |
| CWE Id | |
| WASC Id | |
| Plugin Id | 10109 |
|
Informational |
Re-examine Cache-control Directives |
|---|---|
| Description |
The cache-control header has not been set properly or is missing, allowing the browser and proxies to cache content. For static assets like css, js, or image files this might be intended, however, the resources should be reviewed to ensure that no sensitive content will be cached.
|
| URL | https://staging.letsfish.africa/robots.txt |
| Method | GET |
| Parameter | cache-control |
| Attack | |
| Evidence | |
| Other Info | |
| Instances | 1 |
| Solution |
For secure content, ensure the cache-control HTTP header is set with "no-cache, no-store, must-revalidate". If an asset should be cached consider setting the directives "public, max-age, immutable".
|
| Reference |
https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html#web-content-caching
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control https://grayduck.mn/2021/09/13/cache-control-recommendations/ |
| CWE Id | 525 |
| WASC Id | 13 |
| Plugin Id | 10015 |
|
Informational |
Session Management Response Identified |
|---|---|
| Description |
The given response has been identified as containing a session management token. The 'Other Info' field contains a set of header tokens that can be used in the Header Based Session Management Method. If the request is in a context which has a Session Management Method set to "Auto-Detect" then this rule will change the session management to use the tokens identified.
|
| URL | https://staging.letsfish.africa/?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/css/auth-redesign/fish-africa.webflow.css |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/css/auth-redesign/normalize.css |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/css/auth-redesign/webflow.css |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/css/fish-africa.webflow.css |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/css/normalize.css |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/css/webflow.css |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/CALL-CENTER--PBX-SOLUTION-copy_2-min-p-1080.jpg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/CALL-CENTER--PBX-SOLUTION-copy_2-min-p-500.jpg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/CALL-CENTER--PBX-SOLUTION-copy_2-min-p-800.jpg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/CALL-CENTER--PBX-SOLUTION-copy_2-min.jpg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/check.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/favicon.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/FISH-AFRICA-Logo-p-800.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/google.svg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/auth-redesign/webclip.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/email-icon.svg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/favicon.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/Feature-Icon-03.svg |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/FISH-AFRICA-Logo-p-800.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/images/webclip.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/js/auth-redesign/webflow.js |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/js/pages/forgot-password.js |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/js/pages/login.js |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/js/pages/register.js |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/assets/js/webflow.js |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/forgot-password |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/frontend/assets/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo-p-500.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/images/auth-redesign/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo-p-800.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/images/FISH-AFRICA-Logo.png?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/login |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/privacy |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/privacy?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/register |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/register?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/sitemap.xml?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/terms |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/terms?email-2=foo-bar%40example.com |
| Method | GET |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/forgot-password |
| Method | POST |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/forgot-password?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/login |
| Method | POST |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/login?email-2=foo-bar%40example.com |
| Method | POST |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| URL | https://staging.letsfish.africa/register |
| Method | POST |
| Parameter | DLPCONSOLESESSIONIDstaging |
| Attack | |
| Evidence | ejP6YDYOnMCeHSmCPIznE-0irL7NsLti_z19c9XBl38 |
| Other Info | cookie:DLPCONSOLESESSIONIDstaging |
| Instances | 58 |
| Solution |
This is an informational alert rather than a vulnerability and so there is nothing to fix.
|
| Reference | https://www.zaproxy.org/docs/desktop/addons/authentication-helper/session-mgmt-id |
| CWE Id | |
| WASC Id | |
| Plugin Id | 10112 |