MOVEON89 Security Assessment Report
REPORT   2ae8c906-9600-434c-8300-8c56201ba4c9
ISSUED   2026-05-04 08:56 UTC
CONFIDENTIAL
External Web & Network Assessment

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

Target: https://moveon89.com/  ·  196.22.132.22

01   Executive overview Severity distribution across 34 findings

Critical
0
High
0
Medium
4
Low
8
Informational
22
Targethttps://moveon89.com/
Resolved IP196.22.132.22
Scan window2026-05-04 · 08:56:08 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 Medium Absence of Anti-CSRF Tokens moveon89.com 4
02 Medium Content Security Policy (CSP) Header Not Set moveon89.com 5
03 Medium Missing Anti-clickjacking Header moveon89.com 5
04 Medium Sub Resource Integrity Attribute Missing moveon89.com 5
05 Low Cross-Domain JavaScript Source File Inclusion moveon89.com 5
06 Low Cross-Origin-Embedder-Policy Header Missing or Invalid moveon89.com 3
07 Low Cross-Origin-Opener-Policy Header Missing or Invalid moveon89.com 3
08 Low Cross-Origin-Resource-Policy Header Missing or Invalid moveon89.com 5
09 Low Permissions Policy Header Not Set moveon89.com 5
10 Low Strict-Transport-Security Header Not Set moveon89.com 5
11 Low Timestamp Disclosure - Unix moveon89.com 5
12 Low X-Content-Type-Options Header Missing moveon89.com 5
13 Informational Charset Mismatch moveon89.com 1
14 Informational Content-Type Header Missing moveon89.com 5
15 Informational Modern Web Application moveon89.com 5
16 Informational Re-examine Cache-control Directives moveon89.com 5
17 Informational Storable and Cacheable Content moveon89.com 5
18 Informational User Controllable HTML Element Attribute (Potential XSS) moveon89.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.

M-01

Absence of Anti-CSRF Tokens

Medium Moderate fix zap CWE-352
CONFIDENCE   Low
INSTANCES   4
SYSTEMIC   Yes
Endpoint
https://moveon89.com/
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://moveon89.com/<form action="/#wpcf7-f556-p2366-o1" method="post" class="wpcf7-form init" aria-label="Contact form" novalidate="novalidate" data-status="init">
https://moveon89.com/bookwithemail/<form action="/bookwithemail/#wpcf7-f556-p361-o1" method="post" class="wpcf7-form init" aria-label="Contact form" novalidate="novalidate" data-status="init">
https://moveon89.com/home/<form action="https://moveon89.com/wp-comments-post.php" method="post" id="commentform" class="comment-form">
https://moveon89.com/<form action="/#wpcf7-f556-p2366-o1" method="post" class="wpcf7-form spam" aria-label="Contact form" novalidate="novalidate" data-status="spam">
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 CWE-693
CONFIDENCE   High
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.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://moveon89.com/
https://moveon89.com/community-resources/
https://moveon89.com/get-vocal-moveon-89-testimonials/
https://moveon89.com/rates/
https://moveon89.com/schedule-class-times/
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 CWE-1021
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.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://moveon89.com/x-frame-options
https://moveon89.com/community-resources/x-frame-options
https://moveon89.com/get-vocal-moveon-89-testimonials/x-frame-options
https://moveon89.com/rates/x-frame-options
https://moveon89.com/schedule-class-times/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

Sub Resource Integrity Attribute Missing

Medium Moderate fix zap CWE-345
CONFIDENCE   High
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.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://moveon89.com/<script async src="https://www.googletagmanager.com/gtag/js?id=G-8C2JVP3ZVX"></script>
https://moveon89.com/<script src="https://s7.addthis.com/js/300/addthis_widget.js?ver=119a71fc2fb52041e8ff0ad8e7129a24#pubid=ra-5be56cd64e575d9a" id="addthis_widget-js"></script>
https://moveon89.com/<script src="https://widgets.healcode.com/javascripts/healcode.js" type="text/javascript"></script>
https://moveon89.com/<script src="https://www.google.com/recaptcha/api.js?hl=en_ZA&amp;onload=recaptchaCallback&amp;render=explicit&amp;ver=2.0" id="google-recaptcha-js"></script>
https://moveon89.com/schedule-class-times/<script async src="https://www.googletagmanager.com/gtag/js?id=G-8C2JVP3ZVX"></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 CWE-829
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.com/
Parameter
https://s7.addthis.com/js/300/addthis_widget.js?ver=119a71fc2fb52041e8ff0ad8e7129a24#pubid=ra-5be56cd64e575d9a
What was found

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

Evidence
https://moveon89.com/<script src="https://s7.addthis.com/js/300/addthis_widget.js?ver=119a71fc2fb52041e8ff0ad8e7129a24#pubid=ra-5be56cd64e575d9a" id="addthis_widget-js"></script>
https://moveon89.com/<script src="https://widgets.healcode.com/javascripts/healcode.js" type="text/javascript"></script>
https://moveon89.com/<script src="https://www.google.com/recaptcha/api.js?hl=en_ZA&amp;onload=recaptchaCallback&amp;render=explicit&amp;ver=2.0" id="google-recaptcha-js"></script>
https://moveon89.com/<script async src="https://www.googletagmanager.com/gtag/js?id=G-8C2JVP3ZVX"></script>
https://moveon89.com/schedule-class-times/<script async src="https://www.googletagmanager.com/gtag/js?id=G-8C2JVP3ZVX"></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 CWE-693
CONFIDENCE   Medium
INSTANCES   3
SYSTEMIC   Yes
Endpoint
https://moveon89.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://moveon89.com/Cross-Origin-Embedder-Policy
https://moveon89.com/get-vocal-moveon-89-testimonials/Cross-Origin-Embedder-Policy
https://moveon89.com/schedule-class-times/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 CWE-693
CONFIDENCE   Medium
INSTANCES   3
SYSTEMIC   Yes
Endpoint
https://moveon89.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://moveon89.com/Cross-Origin-Opener-Policy
https://moveon89.com/get-vocal-moveon-89-testimonials/Cross-Origin-Opener-Policy
https://moveon89.com/schedule-class-times/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 CWE-693
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.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://moveon89.com/Cross-Origin-Resource-Policy
https://moveon89.com/get-vocal-moveon-89-testimonials/Cross-Origin-Resource-Policy
https://moveon89.com/robots.txtCross-Origin-Resource-Policy
https://moveon89.com/schedule-class-times/Cross-Origin-Resource-Policy
https://moveon89.com/sitemap_index.xmlCross-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

Permissions Policy Header Not Set

Low Moderate fix zap CWE-693
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.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://moveon89.com/
https://moveon89.com/community-resources/
https://moveon89.com/get-vocal-moveon-89-testimonials/
https://moveon89.com/rates/
https://moveon89.com/schedule-class-times/
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-06

Strict-Transport-Security Header Not Set

Low Moderate fix zap CWE-319
CONFIDENCE   High
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.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://moveon89.com/
https://moveon89.com/robots.txt
https://moveon89.com/schedule-class-times/
https://moveon89.com/sitemap_index.xml
https://moveon89.com/wp-json/wp/v2/pages/2366
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-07

Timestamp Disclosure - Unix

Low Moderate fix zap CWE-497
CONFIDENCE   Low
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.com/
What was found

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

Evidence
https://moveon89.com/1753805718
https://moveon89.com/1753805732
https://moveon89.com/1753805734
https://moveon89.com/1753805808
https://moveon89.com/1777534016
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-08

X-Content-Type-Options Header Missing

Low Moderate fix zap CWE-693
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.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://moveon89.com/x-content-type-options
https://moveon89.com/get-vocal-moveon-89-testimonials/x-content-type-options
https://moveon89.com/robots.txtx-content-type-options
https://moveon89.com/schedule-class-times/x-content-type-options
https://moveon89.com/sitemap_index.xmlx-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 CWE-436
CONFIDENCE   Low
INSTANCES   1
SYSTEMIC   Yes
Endpoint
https://moveon89.com/wp-json/oembed/1.0/embed?format=xml&url=https%3A%2F%2Fmoveon89.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://moveon89.com/wp-json/oembed/1.0/embed?format=xml&url=https%3A%2F%2Fmoveon89.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

Content-Type Header Missing

Informational Moderate fix zap CWE-345
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.com/wp-content/uploads/2025/08/google-review-moveon89-24x24.webp
Parameter
content-type
What was found

The Content-Type header was either missing or empty.

Evidence
https://moveon89.com/wp-content/uploads/2025/08/google-review-moveon89-24x24.webpcontent-type
https://moveon89.com/wp-content/uploads/2025/08/google-review-moveon89-36x36.webpcontent-type
https://moveon89.com/wp-content/uploads/2025/08/google-review-moveon89-48x48.webpcontent-type
https://moveon89.com/wp-content/uploads/2025/08/google-review-moveon89.webpcontent-type
https://moveon89.com/wp-content/uploads/2026/03/Inflammation-and-Nutrition-How-Your-Diet-Impacts-Your-Health-768x489.webpcontent-type
Suggested remediation

Ensure each page is setting the specific and appropriate content-type value for the content being delivered.

References
  • https://learn.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/compatibility/gg622941(v=vs.85)
X-03

Modern Web Application

Informational Moderate fix zap CWE--1
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.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://moveon89.com/<a href="#" class="elementor-item elementor-item-anchor">COMMUNITY</a>
https://moveon89.com/community-resources/<a href="#" class="elementor-item elementor-item-anchor">COMMUNITY</a>
https://moveon89.com/get-vocal-moveon-89-testimonials/<a href="#" class="elementor-item elementor-item-anchor">COMMUNITY</a>
https://moveon89.com/rates/<a href="#" class="elementor-item elementor-item-anchor">COMMUNITY</a>
https://moveon89.com/schedule-class-times/<a href="#" class="elementor-item elementor-item-anchor">COMMUNITY</a>
Suggested remediation

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

X-04

Re-examine Cache-control Directives

Informational Moderate fix zap CWE-525
CONFIDENCE   Low
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.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://moveon89.com/cache-control
https://moveon89.com/robots.txtcache-control
https://moveon89.com/schedule-class-times/cache-control
https://moveon89.com/sitemap_index.xmlcache-control
https://moveon89.com/wp-json/wp/v2/pages/2366cache-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-05

Storable and Cacheable Content

Informational Moderate fix zap CWE-524
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://moveon89.com/
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://moveon89.com/
https://moveon89.com/index.php/bookwithemail/
https://moveon89.com/robots.txt
https://moveon89.com/sitemap.xml
https://moveon89.com/sitemap_index.xml
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-06

User Controllable HTML Element Attribute (Potential XSS)

Informational Moderate fix zap CWE-20
CONFIDENCE   Low
INSTANCES   8
SYSTEMIC   No
Endpoint
https://moveon89.com/
Parameter
_wpcf7
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://moveon89.com/_wpcf7
https://moveon89.com/_wpcf7_container_post
https://moveon89.com/_wpcf7_locale
https://moveon89.com/_wpcf7_unit_tag
https://moveon89.com/_wpcf7_version
https://moveon89.com/your-email
https://moveon89.com/your-name
https://moveon89.com/your-subject
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 16 observations

#EndpointServiceDetailSeverity
N-01 196.22.132.22:110 pop3 Service pop3 on 196.22.132.22:110/tcp Info
N-02 196.22.132.22:143 imap Service imap on 196.22.132.22:143/tcp Info
N-03 196.22.132.22:21 ftp Service ftp on 196.22.132.22:21/tcp Info
N-04 196.22.132.22:22 ssh Service ssh on 196.22.132.22:22/tcp Info
N-05 196.22.132.22:443 https Service https on 196.22.132.22:443/tcp Info
N-06 196.22.132.22:465 smtps Service smtps on 196.22.132.22:465/tcp Info
N-07 196.22.132.22:587 submission Service submission on 196.22.132.22:587/tcp Info
N-08 196.22.132.22:80 http Service http on 196.22.132.22:80/tcp Info
N-09 196.22.132.22:993 imaps Service imaps on 196.22.132.22:993/tcp Info
N-10 196.22.132.22:995 pop3s Service pop3s on 196.22.132.22:995/tcp Info
N-11 https://moveon89.com/ Status 200 AddThis, Apache HTTP Server, Contact Form 7:6.1.5, Elementor:4.0.1, Font Awesome, Google Analytics, MindBody, MySQL, PHP, ReCaptcha v2 for Contact Form 7:1.2, The Events Calendar, WordPress, Yoast SEO Info
N-12 imap.moveon89.com subfinder source: submd Info
N-13 mail.moveon89.com subfinder source: submd Info
N-14 pop.moveon89.com subfinder source: submd Info
N-15 smtp.moveon89.com subfinder source: submd Info
N-16 www.moveon89.com subfinder source: submd Info

05   Additional informational findings 0 items

#FindingAffectedInstances