SILICON OVERDRIVE Security Assessment Report
REPORT   29d992fb-d2be-413b-83e4-0d6a7f999d75
ISSUED   2026-06-24 09:44 UTC
CONFIDENTIAL
External Web & Network Assessment

Vulnerability findings for the public-facing infrastructure of fancam.com

Target: https://fancam.com/  ·  52.42.86.102

01   Executive overview Severity distribution across 163 findings

Critical
0
High
2
Medium
5
Low
10
Informational
146
Targethttps://fancam.com/
Resolved IP52.42.86.102
Scan window2026-06-24 · 09:44:04 UTC
Toolshttpx · nmap · subfinder · zap

02   Top findings Ranked by severity

Highest-impact issues identified during the assessment (non-informational), ordered by severity.

# Severity Finding Affected Instances
01 High PII Disclosure fancam.com 1
02 High Vulnerable JS Library fancam.com 1
03 Medium Absence of Anti-CSRF Tokens fancam.com 4
04 Medium Content Security Policy (CSP) Header Not Set fancam.com 5
05 Medium Missing Anti-clickjacking Header fancam.com 5
06 Medium Source Code Disclosure - SQL fancam.com 3
07 Medium Sub Resource Integrity Attribute Missing fancam.com 5
08 Low Cross-Domain JavaScript Source File Inclusion fancam.com 5
09 Low Cross-Origin-Embedder-Policy Header Missing or Invalid fancam.com 3
10 Low Cross-Origin-Opener-Policy Header Missing or Invalid fancam.com 3
11 Low Cross-Origin-Resource-Policy Header Missing or Invalid fancam.com 4
12 Low Dangerous JS Functions fancam.com 3
13 Low Permissions Policy Header Not Set fancam.com 5
14 Low Secure Pages Include Mixed Content fancam.com 5
15 Low Strict-Transport-Security Header Not Set fancam.com 5
16 Low Timestamp Disclosure - Unix fancam.com 4
17 Low X-Content-Type-Options Header Missing fancam.com 5
18 Informational Charset Mismatch fancam.com 1
19 Informational Information Disclosure - Suspicious Comments fancam.com 7
20 Informational Modern Web Application fancam.com 1
21 Informational Non-Storable Content fancam.com 3
22 Informational Re-examine Cache-control Directives fancam.com 5
23 Informational Storable and Cacheable Content fancam.com 3
24 Informational Storable but Non-Cacheable Content fancam.com 5
25 Informational User Controllable HTML Element Attribute (Potential XSS) fancam.com 8

03   Findings Detailed observations, ordered by severity

Each finding records what was observed, where it was observed, and supporting evidence from the scanning toolchain.

H-01

PII Disclosure

High Moderate fix zap CVE-359
CONFIDENCE   Medium
INSTANCES   1
SYSTEMIC   No
Endpoint
https://fancam.com/wp-json/wp/v2/pages/8690
What was found

The response contains Personally Identifiable Information, such as CC number, SSN and similar sensitive data.

Evidence
https://fancam.com/wp-json/wp/v2/pages/8690500 408 258 167
Suggested remediation

Check the response for the potential presence of personally identifiable information (PII), ensure nothing sensitive is leaked by the application.

H-02

Vulnerable JS Library

High Moderate fix zap CVE-1395
CONFIDENCE   Medium
INSTANCES   1
SYSTEMIC   No
Endpoint
https://fancam.com/wp-content/plugins/qi-addons-for-elementor/assets/plugins/swiper/8.4.5/swiper.min.js?ver=8.4.5
What was found

The identified library appears to be vulnerable.

Evidence
https://fancam.com/wp-content/plugins/qi-addons-for-elementor/assets/plugins/swiper/8.4.5/swiper.min.js?ver=8.4.5/swiper/8.4.5/swiper
Suggested remediation

Upgrade to the latest version of the affected library.

References
  • https://owasp.org/Top10/A06_2021-Vulnerable_and_Outdated_Components/
M-01

Absence of Anti-CSRF Tokens

Medium Moderate fix zap CVE-352
CONFIDENCE   Low
INSTANCES   4
SYSTEMIC   No
Endpoint
https://fancam.com/contact-us/
What was found

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.

Evidence
https://fancam.com/contact-us/<form method='post' enctype='multipart/form-data' id='gform_2' action='/contact-us/' data-formid='2' novalidate>
https://fancam.com/contact-us/embed/<form method='post' enctype='multipart/form-data' id='gform_2' action='/contact-us/embed/' data-formid='2' novalidate>
https://fancam.com/contact-us/<form method='post' enctype='multipart/form-data' id='gform_2' action='/contact-us/' data-formid='2' novalidate>
https://fancam.com/contact-us/embed/<form method='post' enctype='multipart/form-data' id='gform_2' action='/contact-us/embed/' data-formid='2' novalidate>
Suggested remediation

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.

References
  • https://cheatsheetseries.owasp.org/cheatsheets/Cross-Site_Request_Forgery_Prevention_Cheat_Sheet.html
  • https://cwe.mitre.org/data/definitions/352.html
M-02

Content Security Policy (CSP) Header Not Set

Medium Moderate fix zap CVE-693
CONFIDENCE   High
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://fancam.com/
What was found

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.

Evidence
https://fancam.com/
https://fancam.com/contact-us/
https://fancam.com/fancam-terms-and-conditions-privacy-policy/
https://fancam.com/find-a-fancam/
https://fancam.com/wp-admin/admin-ajax.php
Suggested remediation

Ensure that your web server, application server, load balancer, etc. is configured to set the Content-Security-Policy header.

References
  • https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CSP
  • 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/
M-03

Missing Anti-clickjacking Header

Medium Easy fix zap CVE-1021
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://fancam.com/
Parameter
x-frame-options
What was found

The response does not protect against 'ClickJacking' attacks. It should include either Content-Security-Policy with 'frame-ancestors' directive or X-Frame-Options.

Evidence
https://fancam.com/x-frame-options
https://fancam.com/about-fancam/x-frame-options
https://fancam.com/contact-us/x-frame-options
https://fancam.com/fancam-terms-and-conditions-privacy-policy/x-frame-options
https://fancam.com/find-a-fancam/x-frame-options
Suggested remediation

Modern Web browsers support the Content-Security-Policy and X-Frame-Options HTTP headers. Ensure one of them is set on all web pages returned by your site/app.

If you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. Alternatively consider implementing Content Security Policy's "frame-ancestors" directive.

References
  • https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Frame-Options
M-04

Source Code Disclosure - SQL

Medium Moderate fix zap CVE-540
CONFIDENCE   Medium
INSTANCES   3
SYSTEMIC   No
Endpoint
https://fancam.com/fancam-terms-and-conditions-privacy-policy/
What was found

Application Source Code was disclosed by the web server. - SQL

Evidence
https://fancam.com/fancam-terms-and-conditions-privacy-policy/select or software you download (whether from our Services or other websites
https://fancam.com/fancam-terms-and-conditions-privacy-policy/embed/select or software you download (whether from our Services or other websites
https://fancam.com/wp-json/wp/v2/pages/770select or software you download (whether from our Services or other websites
Suggested remediation

Ensure that application Source Code is not available with alternative extensions, and ensure that source code is not present within other files or data deployed to the web server, or served by the web server.

References
  • https://nhimg.org/twitter-breach
M-05

Sub Resource Integrity Attribute Missing

Medium Moderate fix zap CVE-345
CONFIDENCE   High
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://fancam.com/
What was found

The integrity attribute is missing on a script or link tag served by an external server. The integrity tag prevents an attacker who have gained access to this server from injecting a malicious content.

Evidence
https://fancam.com/<script async id="google_gtagjs" src="https://www.googletagmanager.com/gtag/js?id=G-DZ428VJY9H"></script>
https://fancam.com/about-fancam/<script async id="google_gtagjs" src="https://www.googletagmanager.com/gtag/js?id=G-DZ428VJY9H"></script>
https://fancam.com/contact-us/<script async id="google_gtagjs" src="https://www.googletagmanager.com/gtag/js?id=G-DZ428VJY9H"></script>
https://fancam.com/fancam-terms-and-conditions-privacy-policy/<script async id="google_gtagjs" src="https://www.googletagmanager.com/gtag/js?id=G-DZ428VJY9H"></script>
https://fancam.com/find-a-fancam/<script async id="google_gtagjs" src="https://www.googletagmanager.com/gtag/js?id=G-DZ428VJY9H"></script>
Suggested remediation

Provide a valid integrity attribute to the tag.

References
  • https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity
L-01

Cross-Domain JavaScript Source File Inclusion

Low Moderate fix zap CVE-829
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://fancam.com/
Parameter
https://www.googletagmanager.com/gtag/js?id=G-DZ428VJY9H
What was found

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

Evidence
https://fancam.com/<script async id="google_gtagjs" src="https://www.googletagmanager.com/gtag/js?id=G-DZ428VJY9H"></script>
https://fancam.com/about-fancam/<script async id="google_gtagjs" src="https://www.googletagmanager.com/gtag/js?id=G-DZ428VJY9H"></script>
https://fancam.com/contact-us/<script async id="google_gtagjs" src="https://www.googletagmanager.com/gtag/js?id=G-DZ428VJY9H"></script>
https://fancam.com/fancam-terms-and-conditions-privacy-policy/<script async id="google_gtagjs" src="https://www.googletagmanager.com/gtag/js?id=G-DZ428VJY9H"></script>
https://fancam.com/find-a-fancam/<script async id="google_gtagjs" src="https://www.googletagmanager.com/gtag/js?id=G-DZ428VJY9H"></script>
Suggested remediation

Ensure JavaScript source files are loaded from only trusted sources, and the sources can't be controlled by end users of the application.

L-02

Cross-Origin-Embedder-Policy Header Missing or Invalid

Low Moderate fix zap CVE-693
CONFIDENCE   Medium
INSTANCES   3
SYSTEMIC   No
Endpoint
https://fancam.com/
Parameter
Cross-Origin-Embedder-Policy
What was found

Cross-Origin-Embedder-Policy header is a response header that prevents a document from loading any cross-origin resources that don't explicitly grant the document permission (using CORP or CORS).

Evidence
https://fancam.com/Cross-Origin-Embedder-Policy
https://fancam.com/fancam-terms-and-conditions-privacy-policy/Cross-Origin-Embedder-Policy
https://fancam.com/find-a-fancam/Cross-Origin-Embedder-Policy
Suggested remediation

Ensure that the application/web server sets the Cross-Origin-Embedder-Policy header appropriately, and that it sets the Cross-Origin-Embedder-Policy header to 'require-corp' for documents.

If possible, ensure that the end user uses a standards-compliant and modern web browser that supports the Cross-Origin-Embedder-Policy header (https://caniuse.com/mdn-http_headers_cross-origin-embedder-policy).

References
  • https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Cross-Origin-Embedder-Policy
L-03

Cross-Origin-Opener-Policy Header Missing or Invalid

Low Moderate fix zap CVE-693
CONFIDENCE   Medium
INSTANCES   3
SYSTEMIC   No
Endpoint
https://fancam.com/
Parameter
Cross-Origin-Opener-Policy
What was found

Cross-Origin-Opener-Policy header is a response header that allows a site to control if others included documents share the same browsing context. Sharing the same browsing context with untrusted documents might lead to data leak.

Evidence
https://fancam.com/Cross-Origin-Opener-Policy
https://fancam.com/fancam-terms-and-conditions-privacy-policy/Cross-Origin-Opener-Policy
https://fancam.com/find-a-fancam/Cross-Origin-Opener-Policy
Suggested remediation

Ensure that the application/web server sets the Cross-Origin-Opener-Policy header appropriately, and that it sets the Cross-Origin-Opener-Policy header to 'same-origin' for documents.

'same-origin-allow-popups' is considered as less secured and should be avoided.

If possible, ensure that the end user uses a standards-compliant and modern web browser that supports the Cross-Origin-Opener-Policy header (https://caniuse.com/mdn-http_headers_cross-origin-opener-policy).

References
  • https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Cross-Origin-Opener-Policy
L-04

Cross-Origin-Resource-Policy Header Missing or Invalid

Low Easy fix zap CVE-693
CONFIDENCE   Medium
INSTANCES   4
SYSTEMIC   No
Endpoint
https://fancam.com/
Parameter
Cross-Origin-Resource-Policy
What was found

Cross-Origin-Resource-Policy header is an opt-in header designed to counter side-channels attacks like Spectre. Resource should be specifically set as shareable amongst different origins.

Evidence
https://fancam.com/Cross-Origin-Resource-Policy
https://fancam.com/fancam-terms-and-conditions-privacy-policy/Cross-Origin-Resource-Policy
https://fancam.com/find-a-fancam/Cross-Origin-Resource-Policy
https://fancam.com/robots.txtCross-Origin-Resource-Policy
Suggested remediation

Ensure that the application/web server sets the Cross-Origin-Resource-Policy header appropriately, and that it sets the Cross-Origin-Resource-Policy header to 'same-origin' for all web pages.

'same-site' is considered as less secured and should be avoided.

If resources must be shared, set the header to 'cross-origin'.

If possible, ensure that the end user uses a standards-compliant and modern web browser that supports the Cross-Origin-Resource-Policy header (https://caniuse.com/mdn-http_headers_cross-origin-resource-policy).

References
  • https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Cross-Origin-Embedder-Policy
L-05

Dangerous JS Functions

Low Moderate fix zap CVE-749
CONFIDENCE   Low
INSTANCES   3
SYSTEMIC   No
Endpoint
https://fancam.com/wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.min.js?ver=5.6.6
What was found

A dangerous JS function seems to be in use that would leave the site vulnerable.

Evidence
https://fancam.com/wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.min.js?ver=5.6.6eval(
https://fancam.com/wp-content/plugins/gravityforms/js/gravityforms.min.js?ver=2.10.4eval(
https://fancam.com/wp-content/plugins/gravityforms/js/jquery.json.min.js?ver=2.10.4eval(
Suggested remediation

See the references for security advice on the use of these functions.

References
  • https://v17.angular.io/guide/security
L-06

Permissions Policy Header Not Set

Low Moderate fix zap CVE-693
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://fancam.com/
What was found

Permissions Policy Header is an added layer of security that helps to restrict from unauthorized access or usage of browser/client features by web resources. This policy ensures the user privacy by limiting or specifying the features of the browsers can be used by the web resources. Permissions Policy provides a set of standard HTTP headers that allow website owners to limit which features of browsers can be used by the page such as camera, microphone, location, full screen etc.

Evidence
https://fancam.com/
https://fancam.com/contact-us/
https://fancam.com/fancam-terms-and-conditions-privacy-policy/
https://fancam.com/find-a-fancam/
https://fancam.com/wp-admin/admin-ajax.php
Suggested remediation

Ensure that your web server, application server, load balancer, etc. is configured to set the Permissions-Policy header.

References
  • https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Permissions-Policy
  • https://developer.chrome.com/blog/feature-policy/
  • https://scotthelme.co.uk/a-new-security-header-feature-policy/
  • https://w3c.github.io/webappsec-feature-policy/
  • https://www.smashingmagazine.com/2018/12/feature-policy/
L-07

Secure Pages Include Mixed Content

Low Moderate fix zap CVE-311
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://fancam.com/cardboard-cutouts-2-0-a-unique-opportunity/
What was found

The page includes mixed content, that is content accessed via HTTP instead of HTTPS.

Evidence
https://fancam.com/cardboard-cutouts-2-0-a-unique-opportunity/http://fancam.com/wp-content/uploads/2020/08/philles-zoom-720-30.mov
https://fancam.com/fill-your-stadium-digitally/http://fancam.com/wp-content/uploads/2020/05/germany-stadium-borussia-monchengladbach-1.jpg
https://fancam.com/take-your-fans-behind-the-scenes-in-360o/http://fancam.com/wp-content/uploads/2020/05/Screen-Shot-2020-05-27-at-11.45.26-AM.png
https://fancam.com/the-effect-of-capturing-multiple-games-on-engagement-results/http://52.42.86.102/wp-content/uploads/2017/09/broncos-stats.jpg
https://fancam.com/zoom-backgrounds-for-sportsbiz-folks/http://fancam.com/wp-content/uploads/2020/04/49ers-1-5.jpg
Suggested remediation

A page that is available over SSL/TLS must be comprised completely of content which is transmitted over SSL/TLS.

The page must not contain any content that is transmitted over unencrypted HTTP.

This includes content from third party sites.

References
  • https://cheatsheetseries.owasp.org/cheatsheets/Transport_Layer_Protection_Cheat_Sheet.html
L-08

Strict-Transport-Security Header Not Set

Low Moderate fix zap CVE-319
CONFIDENCE   High
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://fancam.com/
What was found

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.

Evidence
https://fancam.com/
https://fancam.com/fancam-terms-and-conditions-privacy-policy/
https://fancam.com/find-a-fancam/
https://fancam.com/robots.txt
https://fancam.com/wp-admin/admin-ajax.php
Suggested remediation

Ensure that your web server, application server, load balancer, etc. is configured to enforce Strict-Transport-Security.

References
  • 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
L-09

Timestamp Disclosure - Unix

Low Moderate fix zap CVE-497
CONFIDENCE   Low
INSTANCES   4
SYSTEMIC   No
Endpoint
https://fancam.com/
What was found

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

Evidence
https://fancam.com/1754991328
https://fancam.com/1754992397
https://fancam.com/1781864991
https://fancam.com/1781864995
Suggested remediation

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

References
  • https://cwe.mitre.org/data/definitions/200.html
L-10

X-Content-Type-Options Header Missing

Low Moderate fix zap CVE-693
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://fancam.com/
Parameter
x-content-type-options
What was found

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.

Evidence
https://fancam.com/x-content-type-options
https://fancam.com/contact-us/x-content-type-options
https://fancam.com/fancam-terms-and-conditions-privacy-policy/x-content-type-options
https://fancam.com/find-a-fancam/x-content-type-options
https://fancam.com/robots.txtx-content-type-options
Suggested remediation

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.

References
  • 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
X-01

Charset Mismatch

Informational Moderate fix zap CVE-436
CONFIDENCE   Low
INSTANCES   1
SYSTEMIC   No
Endpoint
https://fancam.com/wp-json/oembed/1.0/embed?format=xml&url=https%3A%2F%2Ffancam.com%2F
What was found

This check identifies responses where the HTTP Content-Type header declares a charset different from the charset defined by the body of the HTML or XML. When there's a charset mismatch between the HTTP header and content body Web browsers can be forced into an undesirable content-sniffing mode to determine the content's correct character set.

An attacker could manipulate content on the page to be interpreted in an encoding of their choice. For example, if an attacker can control content at the beginning of the page, they could inject script using UTF-7 encoded text and manipulate some browsers into interpreting that text.

Evidence
https://fancam.com/wp-json/oembed/1.0/embed?format=xml&url=https%3A%2F%2Ffancam.com%2F
Suggested remediation

Force UTF-8 for all text content in both the HTTP header and meta tags in HTML or encoding declarations in XML.

References
  • https://code.google.com/archive/p/browsersec/wikis/Part2.wiki#Character_set_handling_and_detection
X-02

Information Disclosure - Suspicious Comments

Informational Moderate fix zap CVE-615
CONFIDENCE   Medium
INSTANCES   7
SYSTEMIC   No
Endpoint
https://fancam.com/contact-us/
What was found

The response appears to contain suspicious comments which may help an attacker.

Evidence
https://fancam.com/contact-us/lliseconds to fix a bug in chrome */
https://fancam.com/contact-us/embed/lliseconds to fix a bug in chrome */
https://fancam.com/wp-content/plugins/qi-addons-for-elementor/inc/plugins/elementor/assets/js/elementor.js?ver=7.0nd print the module where is the error.
https://fancam.com/contact-us// - Page not served from cache -->
https://fancam.com/contact-us/lliseconds to fix a bug in chrome */
https://fancam.com/contact-us/embed// - Page not served from cache -->
https://fancam.com/contact-us/embed/lliseconds to fix a bug in chrome */
Suggested remediation

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

X-03

Modern Web Application

Informational Moderate fix zap CVE--1
CONFIDENCE   Medium
INSTANCES   1
SYSTEMIC   No
Endpoint
https://fancam.com/
What was found

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.

Evidence
https://fancam.com/<a href="#" class="ekit_global_links"> <!-- end link opening --> <div class="elementskit-infobox text-center text- icon-top-align elementor-animation- "> <div class="elementskit-box-header elementor-animation-"> <div class="elementskit-info-box-icon "> <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" viewBox="0 0 761.4 456.14"><defs><style> .st0 { fill: #fff; } </style></defs><path class="st0" d="M97.78,179.57h126.66v-88.36c0-8.31-3.39-15.78-8.91-21.28-5.37-5.36-13.01-8.74-21.2-8.74h-66.44c-8.2,0-15.83,3.38-21.2,8.74-5.51,5.5-8.91,12.97-8.91,21.28v88.36Z"></path><path class="st0" d="M315.62,179.57h126.66v-88.36c0-8.31-3.39-15.78-8.91-21.28-5.37-5.36-13.01-8.74-21.2-8.74h-66.44c-8.2,0-15.83,3.38-21.2,8.74-5.51,5.5-8.91,12.97-8.91,21.28v88.36Z"></path><path class="st0" d="M532.89,179.57h126.66v-88.36c0-8.31-3.39-15.78-8.91-21.28-5.37-5.36-13.01-8.74-21.2-8.74h-66.44c-8.2,0-15.83,3.38-21.2,8.74-5.51,5.5-8.91,12.97-8.91,21.28v88.36Z"></path><path class="st0" d="M97.78,179.57h126.66v-88.36c0-8.31-3.39-15.78-8.76-21.28-5.51-5.36-13.01-8.74-21.35-8.74h-66.3c-8.34,0-15.83,3.38-21.35,8.74-5.51,5.5-8.91,12.97-8.91,21.28v88.36ZM577.98,91.63h36.47v13.81h-36.47v-13.81ZM360.71,91.63h36.47v13.81h-36.47v-13.81ZM143.02,91.63h36.33v13.81h-36.33v-13.81ZM83.65,179.57h.28v-88.36c0-12.12,4.95-23.11,12.86-31,8.06-8.03,19.08-12.97,31.24-12.97h66.3c12.16,0,23.18,4.93,31.1,12.97,8.06,7.89,13.01,18.88,13.01,31v88.36h.28c5.23,0,9.9,2.11,13.29,5.5,3.39,3.38,5.51,8.03,5.51,13.25v1.41h25.16v-1.41c0-5.21,2.12-9.86,5.51-13.25,3.39-3.38,8.06-5.5,13.15-5.5h.28v-88.36c0-12.12,5.09-23.11,13.01-31,8.06-8.03,19.08-12.97,31.1-12.97h66.44c12.16,0,23.18,4.93,31.1,12.97,8.06,7.89,13.01,18.88,13.01,31v88.36h.28c5.09,0,9.75,2.11,13.15,5.5,3.39,3.38,5.51,8.03,5.51,13.25v1.41h24.74v-1.41c0-5.21,2.12-9.86,5.51-13.25,3.39-3.38,8.06-5.5,13.29-5.5h.28v-88.36c0-12.12,4.95-23.11,12.86-31,8.06-8.03,19.08-12.97,31
Suggested remediation

This is an informational alert and so no changes are required.

X-04

Non-Storable Content

Informational Moderate fix zap CVE-524
CONFIDENCE   Medium
INSTANCES   3
SYSTEMIC   No
Endpoint
https://fancam.com/404/
What was found

The response contents are not storable by caching components such as proxy servers. If the response does not contain sensitive, personal or user-specific information, it may benefit from being stored and cached, to improve performance.

Evidence
https://fancam.com/404/no-store
https://fancam.com/wp-admin/302
https://fancam.com/wp-admin/admin-ajax.phpno-store
Suggested remediation

The content may be marked as storable by ensuring that the following conditions are satisfied:

The request method must be understood by the cache and defined as being cacheable ("GET", "HEAD", and "POST" are currently defined as cacheable)

The response status code must be understood by the cache (one of the 1XX, 2XX, 3XX, 4XX, or 5XX response classes are generally understood)

The "no-store" cache directive must not appear in the request or response header fields

For caching by "shared" caches such as "proxy" caches, the "private" response directive must not appear in the response

For caching by "shared" caches such as "proxy" caches, the "Authorization" header field must not appear in the request, unless the response explicitly allows it (using one of the "must-revalidate", "public", or "s-maxage" Cache-Control response directives)

In addition to the conditions above, at least one of the following conditions must also be satisfied by the response:

It must contain an "Expires" header field

It must contain a "max-age" response directive

For "shared" caches such as "proxy" caches, it must contain a "s-maxage" response directive

It must contain a "Cache Control Extension" that allows it to be cached

It must have a status code that is defined as cacheable by default (200, 203, 204, 206, 300, 301, 404, 405, 410, 414, 501).

References
  • https://datatracker.ietf.org/doc/html/rfc7234
  • https://datatracker.ietf.org/doc/html/rfc7231
  • https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html
X-05

Re-examine Cache-control Directives

Informational Moderate fix zap CVE-525
CONFIDENCE   Low
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://fancam.com/
Parameter
cache-control
What was found

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.

Evidence
https://fancam.com/no-cache
https://fancam.com/contact-us/no-cache
https://fancam.com/fancam-terms-and-conditions-privacy-policy/no-cache
https://fancam.com/find-a-fancam/no-cache
https://fancam.com/robots.txtcache-control
Suggested remediation

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

References
  • https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html#web-content-caching
  • https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Cache-Control
  • https://grayduck.mn/2021/09/13/cache-control-recommendations/
X-06

Storable and Cacheable Content

Informational Moderate fix zap CVE-524
CONFIDENCE   Medium
INSTANCES   3
SYSTEMIC   No
Endpoint
https://fancam.com/robots.txt
What was found

The response contents are storable by caching components such as proxy servers, and may be retrieved directly from the cache, rather than from the origin server by the caching servers, in response to similar requests from other users. If the response data is sensitive, personal or user-specific, this may result in sensitive information being leaked. In some cases, this may even result in a user gaining complete control of the session of another user, depending on the configuration of the caching components in use in their environment. This is primarily an issue where "shared" caching servers such as "proxy" caches are configured on the local network. This configuration is typically found in corporate or educational environments, for instance.

Evidence
https://fancam.com/robots.txt
https://fancam.com/sitemap.xml
https://fancam.com/wp-json/oembed/1.0/embed?format=xml&url=https%3A%2F%2Ffancam.com%2F
Suggested remediation

Validate that the response does not contain sensitive, personal or user-specific information. If it does, consider the use of the following HTTP response headers, to limit, or prevent the content being stored and retrieved from the cache by another user:

Cache-Control: no-cache, no-store, must-revalidate, private

Pragma: no-cache

Expires: 0

This configuration directs both HTTP 1.0 and HTTP 1.1 compliant caching servers to not store the response, and to not retrieve the response (without validation) from the cache, in response to a similar request.

References
  • https://datatracker.ietf.org/doc/html/rfc7234
  • https://datatracker.ietf.org/doc/html/rfc7231
  • https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html
X-07

Storable but Non-Cacheable Content

Informational zap CVE-524
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   No
Endpoint
https://fancam.com/
What was found

The response contents are storable by caching components such as proxy servers, but will not be retrieved directly from the cache, without validating the request upstream, in response to similar requests from other users.

Evidence
https://fancam.com/no-cache
https://fancam.com/about-fancam/no-cache
https://fancam.com/contact-us/no-cache
https://fancam.com/fancam-terms-and-conditions-privacy-policy/no-cache
https://fancam.com/find-a-fancam/no-cache
References
  • https://datatracker.ietf.org/doc/html/rfc7234
  • https://datatracker.ietf.org/doc/html/rfc7231
  • https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html
X-08

User Controllable HTML Element Attribute (Potential XSS)

Informational Moderate fix zap CVE-20
CONFIDENCE   Low
INSTANCES   8
SYSTEMIC   No
Endpoint
https://fancam.com/contact-us/
Parameter
gform_source_page_number_2
What was found

This check looks at user-supplied input in query string parameters and POST data to identify where certain HTML attribute values might be controlled. This provides hot-spot detection for XSS (cross-site scripting) that will require further review by a security analyst to determine exploitability.

Evidence
https://fancam.com/contact-us/gform_source_page_number_2
https://fancam.com/contact-us/gform_submission_method
https://fancam.com/contact-us/gform_theme
https://fancam.com/contact-us/gform_unique_id
https://fancam.com/contact-us/input_3
https://fancam.com/contact-us/input_6
https://fancam.com/contact-us/input_8
https://fancam.com/contact-us/state_2
Suggested remediation

Validate all input and sanitize output it before writing to any HTML attributes.

References
  • https://cheatsheetseries.owasp.org/cheatsheets/Input_Validation_Cheat_Sheet.html

04   Network & transport 138 observations

#EndpointServiceDetailSeverity
N-01 52.42.86.102:22 ssh Service ssh on 52.42.86.102:22/tcp Info
N-02 52.42.86.102:443 https Service https on 52.42.86.102:443/tcp Info
N-03 52.42.86.102:80 http Service http on 52.42.86.102:80/tcp Info
N-04 https://fancam.com/ Status 200 Apache HTTP Server, Elementor:4.0.5, Google Analytics, MySQL, PHP, Popper, Swiper, UIKit, WP-Optimize, WordPress:7.0, jQuery, jQuery Migrate:3.4.1 Info
N-05 brisbanelions.fancam.com subfinder source: hackertarget Info
N-06 cottonbowl.fancam.com subfinder source: hackertarget Info
N-07 12thmanfoundation.fancam.com subfinder source: hackertarget Info
N-08 chargers.fancam.com subfinder source: hackertarget Info
N-09 dallascowboys.fancam.com subfinder source: hackertarget Info
N-10 cowboys.fancam.com subfinder source: hackertarget Info
N-11 colors.fancam.com subfinder source: hackertarget Info
N-12 browns.fancam.com subfinder source: hackertarget Info
N-13 acctourney.fancam.com subfinder source: hackertarget Info
N-14 12thmanlive.fancam.com subfinder source: hackertarget Info
N-15 charlottefc.fancam.com subfinder source: hackertarget Info
N-16 buffalobills.fancam.com subfinder source: hackertarget Info
N-17 buccaneers.fancam.com subfinder source: hackertarget Info
N-18 armedforcesbowl.fancam.com subfinder source: hackertarget Info
N-19 blues.fancam.com subfinder source: hackertarget Info
N-20 538livexxl.fancam.com subfinder source: hackertarget Info
N-21 athletics.fancam.com subfinder source: hackertarget Info
N-22 collingwoodfc.fancam.com subfinder source: hackertarget Info
N-23 astros.fancam.com subfinder source: submd Info
N-24 goheels.fancam.com subfinder source: submd Info
N-25 nyconferences.fancam.com subfinder source: submd Info
N-26 u2.fancam.com subfinder source: submd Info
N-27 braves.fancam.com subfinder source: submd Info
N-28 detroitlions.fancam.com subfinder source: submd Info
N-29 emirateswt20.fancam.com subfinder source: submd Info
N-30 richardprattcup.fancam.com subfinder source: submd Info
N-31 vikings.fancam.com subfinder source: submd Info
N-32 cocacola600.fancam.com subfinder source: submd Info
N-33 crowdiq.fancam.com subfinder source: submd Info
N-34 ohiostate.fancam.com subfinder source: submd Info
N-35 steelers.fancam.com subfinder source: submd Info
N-36 blackhawks.fancam.com subfinder source: submd Info
N-37 directaxis.fancam.com subfinder source: submd Info
N-38 cavs.fancam.com subfinder source: submd Info
N-39 livenation.fancam.com subfinder source: submd Info
N-40 syracuse.fancam.com subfinder source: submd Info
N-41 torontofc.fancam.com subfinder source: submd Info
N-42 coke600.fancam.com subfinder source: submd Info
N-43 pennstate.fancam.com subfinder source: submd Info
N-44 leningrad.fancam.com subfinder source: submd Info
N-45 admin.fancam.com subfinder source: submd Info
N-46 cubuffs.fancam.com subfinder source: submd Info
N-47 cardinals.fancam.com subfinder source: submd Info
N-48 dcunited.fancam.com subfinder source: submd Info
N-49 dynamo.fancam.com subfinder source: submd Info
N-50 newyorkrangers.fancam.com subfinder source: submd Info
N-51 wildcard.fancam.com subfinder source: submd Info
N-52 www.fancam.com subfinder source: submd Info
N-53 armynavy.fancam.com subfinder source: submd Info
N-54 bigten.fancam.com subfinder source: submd Info
N-55 newyorkknicks.fancam.com subfinder source: submd Info
N-56 crowdiq-staging.fancam.com subfinder source: submd Info
N-57 madeinamericafest.fancam.com subfinder source: submd Info
N-58 shop-staging.fancam.com subfinder source: submd Info
N-59 iowacorncyhawkseries.fancam.com subfinder source: submd Info
N-60 seatconference.fancam.com subfinder source: submd Info
N-61 knicks.fancam.com subfinder source: submd Info
N-62 orlandocity.fancam.com subfinder source: submd Info
N-63 warriors.fancam.com subfinder source: submd Info
N-64 nikon.fancam.com subfinder source: submd Info
N-65 houston.fancam.com subfinder source: submd Info
N-66 operaattheballpark.fancam.com subfinder source: submd Info
N-67 vodafone.fancam.com subfinder source: submd Info
N-68 serieatim.fancam.com subfinder source: submd Info
N-69 skrapid.fancam.com subfinder source: submd Info
N-70 tacobell.fancam.com subfinder source: submd Info
N-71 twins.fancam.com subfinder source: submd Info
N-72 broncos.fancam.com subfinder source: submd Info
N-73 daytona500.fancam.com subfinder source: submd Info
N-74 rangers.fancam.com subfinder source: submd Info
N-75 shop.fancam.com subfinder source: submd Info
N-76 aveclexv.fancam.com subfinder source: submd Info
N-77 magic.fancam.com subfinder source: submd Info
N-78 panthers.fancam.com subfinder source: submd Info
N-79 sasquatch.fancam.com subfinder source: submd Info
N-80 taylorswift.fancam.com subfinder source: submd Info
N-81 frozenfour.fancam.com subfinder source: submd Info
N-82 lollapalooza.fancam.com subfinder source: submd Info
N-83 rockettes.fancam.com subfinder source: submd Info
N-84 sanfrancisco.fancam.com subfinder source: submd Info
N-85 superbowl.fancam.com subfinder source: submd Info
N-86 unicredit.fancam.com subfinder source: submd Info
N-87 goodyear.fancam.com subfinder source: submd Info
N-88 gophers.fancam.com subfinder source: submd Info
N-89 nascar.fancam.com subfinder source: submd Info
N-90 49ers.fancam.com subfinder source: submd Info
N-91 allianz-riviera.fancam.com subfinder source: submd Info
N-92 celtics.fancam.com subfinder source: submd Info
N-93 endit.fancam.com subfinder source: submd Info
N-94 packers.fancam.com subfinder source: submd Info
N-95 patriots.fancam.com subfinder source: submd Info
N-96 portadelaidefc.fancam.com subfinder source: submd Info
N-97 accchamps.fancam.com subfinder source: submd Info
N-98 capitaloneorangebowl.fancam.com subfinder source: submd Info
N-99 hurricanesandy.fancam.com subfinder source: submd Info
N-100 jaguars.fancam.com subfinder source: submd Info
N-101 mets.fancam.com subfinder source: submd Info
N-102 rbleipzig.fancam.com subfinder source: submd Info
N-103 redbull.fancam.com subfinder source: submd Info
N-104 atp.fancam.com subfinder source: submd Info
N-105 bluejays.fancam.com subfinder source: submd Info
N-106 geicocardinals.fancam.com subfinder source: submd Info
N-107 kentucky.fancam.com subfinder source: submd Info
N-108 energyair.fancam.com subfinder source: submd Info
N-109 fsu.fancam.com subfinder source: submd Info
N-110 wild.fancam.com subfinder source: submd Info
N-111 bruins.fancam.com subfinder source: submd Info
N-112 cpanel.fancam.com subfinder source: submd Info
N-113 jingleball.fancam.com subfinder source: submd Info
N-114 michiganbasketball.fancam.com subfinder source: submd Info
N-115 aeroflotmanutd.fancam.com subfinder source: submd Info
N-116 cokezero.fancam.com subfinder source: submd Info
N-117 mavs.fancam.com subfinder source: submd Info
N-118 developer.fancam.com subfinder source: submd Info
N-119 devils.fancam.com subfinder source: submd Info
N-120 budweiser.fancam.com subfinder source: submd Info
N-121 phillies.fancam.com subfinder source: submd Info
N-122 enterprise.fancam.com subfinder source: submd Info
N-123 italy01.fancam.com subfinder source: submd Info
N-124 letrot.fancam.com subfinder source: submd Info
N-125 sfgiants.fancam.com subfinder source: submd Info
N-126 texans.fancam.com subfinder source: submd Info
N-127 sanfrancisco.giants.mlb.fancam.com subfinder source: submd Info
N-128 www.coke600.fancam.com subfinder source: submd Info
N-129 capequilters.fancam.com subfinder source: submd Info
N-130 outback.fancam.com subfinder source: submd Info
N-131 www.rangers.fancam.com subfinder source: submd Info
N-132 chiefs.fancam.com subfinder source: thc Info
N-133 lvbp.fancam.com subfinder source: thc Info
N-134 mnufc.fancam.com subfinder source: thc Info
N-135 le12emehommeol.fancam.com subfinder source: thc Info
N-136 rams.fancam.com subfinder source: thc Info
N-137 lsu.fancam.com subfinder source: thc Info
N-138 bieber.fancam.com subfinder source: thc Info

05   Additional informational findings 0 items

#FindingAffectedInstances