SILICON OVERDRIVE Security Assessment Report
REPORT   ade685be-c038-4f5c-8fc8-7a6afd86403b
ISSUED   2026-06-25 18:45 UTC
CONFIDENTIAL
External Web & Network Assessment

Vulnerability findings for the public-facing infrastructure of wildr.co.za

Target: https://wildr.co.za/  ·  197.242.65.111

01   Executive overview Severity distribution across 45 findings

Critical
0
High
0
Medium
8
Low
11
Informational
26
Targethttps://wildr.co.za/
Resolved IP197.242.65.111
Scan window2026-06-25 · 18:45:10 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 wildr.co.za 5
02 Medium CSP: Failure to Define Directive with No Fallback wildr.co.za 3
03 Medium CSP: Wildcard Directive wildr.co.za 3
04 Medium CSP: script-src unsafe-inline wildr.co.za 3
05 Medium CSP: style-src unsafe-inline wildr.co.za 3
06 Medium Content Security Policy (CSP) Header Not Set wildr.co.za 5
07 Medium Missing Anti-clickjacking Header wildr.co.za 5
08 Medium Sub Resource Integrity Attribute Missing wildr.co.za 5
09 Low Cookie No HttpOnly Flag wildr.co.za 5
10 Low Cookie Without Secure Flag wildr.co.za 5
11 Low Cookie without SameSite Attribute wildr.co.za 5
12 Low Cross-Domain JavaScript Source File Inclusion wildr.co.za 5
13 Low Cross-Origin-Embedder-Policy Header Missing or Invalid wildr.co.za 3
14 Low Cross-Origin-Opener-Policy Header Missing or Invalid wildr.co.za 3
15 Low Cross-Origin-Resource-Policy Header Missing or Invalid wildr.co.za 5
16 Low Permissions Policy Header Not Set wildr.co.za 5
17 Low Strict-Transport-Security Header Not Set wildr.co.za 5
18 Low Timestamp Disclosure - Unix wildr.co.za 5
19 Low X-Content-Type-Options Header Missing wildr.co.za 5
20 Informational Authentication Request Identified wildr.co.za 2
21 Informational Charset Mismatch wildr.co.za 1
22 Informational Cookie Poisoning wildr.co.za 5
23 Informational Information Disclosure - Suspicious Comments wildr.co.za 4
24 Informational Modern Web Application wildr.co.za 5
25 Informational Non-Storable Content wildr.co.za 5

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 CVE-352
CONFIDENCE   Low
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/my-account/
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://wildr.co.za/my-account/<form class="woocommerce-form woocommerce-form-login login" method="post" novalidate>
https://wildr.co.za/product/body-shimmer-oil/<form action="https://wildr.co.za/wp-comments-post.php" method="post" id="commentform" class="comment-form">
https://wildr.co.za/product/botanical-cleansing-oil/<form action="https://wildr.co.za/wp-comments-post.php" method="post" id="commentform" class="comment-form">
https://wildr.co.za/product/facial-resin-serum/<form action="https://wildr.co.za/wp-comments-post.php" method="post" id="commentform" class="comment-form">
https://wildr.co.za/product/nourishing-lip-balm-unscented/<form action="https://wildr.co.za/wp-comments-post.php" method="post" id="commentform" class="comment-form">
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

CSP: Failure to Define Directive with No Fallback

Medium Moderate fix zap CVE-693
CONFIDENCE   High
INSTANCES   3
SYSTEMIC   No
Endpoint
https://wildr.co.za/my-account/
Parameter
Content-Security-Policy
What was found

The Content Security Policy fails to define one of the directives that has no fallback. Missing/excluding them is the same as allowing anything.

Evidence
https://wildr.co.za/my-account/frame-ancestors 'self';
https://wildr.co.za/my-account/lost-password/frame-ancestors 'self';
https://wildr.co.za/wp-login.php?reauth=1&redirect_to=https%3A%2F%2Fwildr.co.za%2Fwp-admin%2Fframe-ancestors 'self';
Suggested remediation

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

References
  • 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://web.dev/articles/csp#resource-options
M-03

CSP: Wildcard Directive

Medium Moderate fix zap CVE-693
CONFIDENCE   High
INSTANCES   3
SYSTEMIC   No
Endpoint
https://wildr.co.za/my-account/
Parameter
Content-Security-Policy
What was found

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.

Evidence
https://wildr.co.za/my-account/frame-ancestors 'self';
https://wildr.co.za/my-account/lost-password/frame-ancestors 'self';
https://wildr.co.za/wp-login.php?reauth=1&redirect_to=https%3A%2F%2Fwildr.co.za%2Fwp-admin%2Fframe-ancestors 'self';
Suggested remediation

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

References
  • 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://web.dev/articles/csp#resource-options
M-04

CSP: script-src unsafe-inline

Medium Moderate fix zap CVE-693
CONFIDENCE   High
INSTANCES   3
SYSTEMIC   No
Endpoint
https://wildr.co.za/my-account/
Parameter
Content-Security-Policy
What was found

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.

Evidence
https://wildr.co.za/my-account/frame-ancestors 'self';
https://wildr.co.za/my-account/lost-password/frame-ancestors 'self';
https://wildr.co.za/wp-login.php?reauth=1&redirect_to=https%3A%2F%2Fwildr.co.za%2Fwp-admin%2Fframe-ancestors 'self';
Suggested remediation

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

References
  • 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://web.dev/articles/csp#resource-options
M-05

CSP: style-src unsafe-inline

Medium Moderate fix zap CVE-693
CONFIDENCE   High
INSTANCES   3
SYSTEMIC   No
Endpoint
https://wildr.co.za/my-account/
Parameter
Content-Security-Policy
What was found

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.

Evidence
https://wildr.co.za/my-account/frame-ancestors 'self';
https://wildr.co.za/my-account/lost-password/frame-ancestors 'self';
https://wildr.co.za/wp-login.php?reauth=1&redirect_to=https%3A%2F%2Fwildr.co.za%2Fwp-admin%2Fframe-ancestors 'self';
Suggested remediation

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

References
  • 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://web.dev/articles/csp#resource-options
M-06

Content Security Policy (CSP) Header Not Set

Medium Moderate fix zap CVE-693
CONFIDENCE   High
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/
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://wildr.co.za/
https://wildr.co.za/*?add-to-cart
https://wildr.co.za/wp-admin/admin-ajax.php
https://wildr.co.za/wp-content/uploads/wc-logs/
https://wildr.co.za/wp-content/uploads/woocommerce_uploads/
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-07

Missing Anti-clickjacking Header

Medium Easy fix zap CVE-1021
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/
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://wildr.co.za/x-frame-options
https://wildr.co.za/privacy-policy/x-frame-options
https://wildr.co.za/product/body-shimmer-oil/x-frame-options
https://wildr.co.za/product/facial-resin-serum/x-frame-options
https://wildr.co.za/shop/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-08

Sub Resource Integrity Attribute Missing

Medium Moderate fix zap CVE-345
CONFIDENCE   High
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/
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://wildr.co.za/<script data-wp-strategy="defer" defer id="jetpack-stats-js" src="https://stats.wp.com/e-202626.js"></script>
https://wildr.co.za/<script data-wp-strategy="defer" defer id="woocommerce-analytics-js" src="https://stats.wp.com/s-202626.js"></script>
https://wildr.co.za/*?*add-to-cart<script data-wp-strategy="defer" defer id="woocommerce-analytics-js" src="https://stats.wp.com/s-202626.js"></script>
https://wildr.co.za/*?add-to-cart<script data-wp-strategy="defer" defer id="jetpack-stats-js" src="https://stats.wp.com/e-202626.js"></script>
https://wildr.co.za/*?add-to-cart<script data-wp-strategy="defer" defer id="woocommerce-analytics-js" src="https://stats.wp.com/s-202626.js"></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

Cookie No HttpOnly Flag

Low Moderate fix zap CVE-1004
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/?add-to-cart=105&quantity=3
Parameter
woocommerce_cart_hash
What was found

A cookie has been set without the HttpOnly flag, which means that the cookie can be accessed by JavaScript. If a malicious script can be run on this page then the cookie will be accessible and can be transmitted to another site. If this is a session cookie then session hijacking may be possible.

Evidence
https://wildr.co.za/?add-to-cart=105&quantity=3Set-Cookie: woocommerce_cart_hash
https://wildr.co.za/?add-to-cart=105&quantity=3Set-Cookie: woocommerce_items_in_cart
https://wildr.co.za/product/body-shimmer-oil/?add-to-cart=87&quantity=3Set-Cookie: woocommerce_cart_hash
https://wildr.co.za/wp-comments-post.phpSet-Cookie: comment_author_37bccbf346009193d46f4066ab9f49f9
https://wildr.co.za/wp-comments-post.phpSet-Cookie: comment_author_email_37bccbf346009193d46f4066ab9f49f9
Suggested remediation

Ensure that the HttpOnly flag is set for all cookies.

References
  • https://owasp.org/www-community/HttpOnly
L-02

Cookie Without Secure Flag

Low Moderate fix zap CVE-614
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/?add-to-cart=105&quantity=3
Parameter
woocommerce_cart_hash
What was found

A cookie has been set without the secure flag, which means that the cookie can be accessed via unencrypted connections.

Evidence
https://wildr.co.za/?add-to-cart=105&quantity=3Set-Cookie: woocommerce_cart_hash
https://wildr.co.za/?add-to-cart=105&quantity=3Set-Cookie: woocommerce_items_in_cart
https://wildr.co.za/?p=72Set-Cookie: woocommerce_cart_hash
https://wildr.co.za/product/body-shimmer-oil/?add-to-cart=87&quantity=3Set-Cookie: woocommerce_cart_hash
https://wildr.co.za/product/facial-resin-serum/?add-to-cart=105&quantity=3Set-Cookie: woocommerce_cart_hash
Suggested remediation

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.

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

Cookie without SameSite Attribute

Low Moderate fix zap CVE-1275
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/?add-to-cart=105&quantity=3
Parameter
woocommerce_cart_hash
What was found

A cookie has been set without the SameSite attribute, which means that the cookie can be sent as a result of a 'cross-site' request. The SameSite attribute is an effective counter measure to cross-site request forgery, cross-site script inclusion, and timing attacks.

Evidence
https://wildr.co.za/?add-to-cart=105&quantity=3Set-Cookie: woocommerce_cart_hash
https://wildr.co.za/?add-to-cart=105&quantity=3Set-Cookie: woocommerce_items_in_cart
https://wildr.co.za/?add-to-cart=105&quantity=3Set-Cookie: wp_woocommerce_session_37bccbf346009193d46f4066ab9f49f9
https://wildr.co.za/wp-login.php?reauth=1&redirect_to=https%3A%2F%2Fwildr.co.za%2Fwp-admin%2FSet-Cookie: wordpress_test_cookie
https://wildr.co.za/wp-comments-post.phpSet-Cookie: comment_author_37bccbf346009193d46f4066ab9f49f9
Suggested remediation

Ensure that the SameSite attribute is set to either 'lax' or ideally 'strict' for all cookies.

References
  • https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-cookie-same-site
L-04

Cross-Domain JavaScript Source File Inclusion

Low Moderate fix zap CVE-829
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/
Parameter
https://stats.wp.com/e-202626.js
What was found

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

Evidence
https://wildr.co.za/<script data-wp-strategy="defer" defer id="jetpack-stats-js" src="https://stats.wp.com/e-202626.js"></script>
https://wildr.co.za/<script data-wp-strategy="defer" defer id="woocommerce-analytics-js" src="https://stats.wp.com/s-202626.js"></script>
https://wildr.co.za/*?*add-to-cart<script data-wp-strategy="defer" defer id="woocommerce-analytics-js" src="https://stats.wp.com/s-202626.js"></script>
https://wildr.co.za/*?add-to-cart<script data-wp-strategy="defer" defer id="jetpack-stats-js" src="https://stats.wp.com/e-202626.js"></script>
https://wildr.co.za/*?add-to-cart<script data-wp-strategy="defer" defer id="woocommerce-analytics-js" src="https://stats.wp.com/s-202626.js"></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-05

Cross-Origin-Embedder-Policy Header Missing or Invalid

Low Moderate fix zap CVE-693
CONFIDENCE   Medium
INSTANCES   3
SYSTEMIC   No
Endpoint
https://wildr.co.za/
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://wildr.co.za/Cross-Origin-Embedder-Policy
https://wildr.co.za/shop/Cross-Origin-Embedder-Policy
https://wildr.co.za/wp-sitemap.xmlCross-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-06

Cross-Origin-Opener-Policy Header Missing or Invalid

Low Moderate fix zap CVE-693
CONFIDENCE   Medium
INSTANCES   3
SYSTEMIC   No
Endpoint
https://wildr.co.za/
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://wildr.co.za/Cross-Origin-Opener-Policy
https://wildr.co.za/shop/Cross-Origin-Opener-Policy
https://wildr.co.za/wp-sitemap.xmlCross-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-07

Cross-Origin-Resource-Policy Header Missing or Invalid

Low Easy fix zap CVE-693
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   No
Endpoint
https://wildr.co.za/
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://wildr.co.za/Cross-Origin-Resource-Policy
https://wildr.co.za/robots.txtCross-Origin-Resource-Policy
https://wildr.co.za/shop/Cross-Origin-Resource-Policy
https://wildr.co.za/wp-content/uploads/2026/05/Wildroot-Edition-Catalogue.pdfCross-Origin-Resource-Policy
https://wildr.co.za/wp-sitemap.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-08

Permissions Policy Header Not Set

Low Moderate fix zap CVE-693
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/
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://wildr.co.za/
https://wildr.co.za/*?add-to-cart
https://wildr.co.za/wp-admin/admin-ajax.php
https://wildr.co.za/wp-content/uploads/wc-logs/
https://wildr.co.za/wp-content/uploads/woocommerce_uploads/
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-09

Strict-Transport-Security Header Not Set

Low Moderate fix zap CVE-319
CONFIDENCE   High
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/robots.txt
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://wildr.co.za/robots.txt
https://wildr.co.za/wp-admin/admin-ajax.php
https://wildr.co.za/wp-content/uploads/wc-logs/
https://wildr.co.za/wp-content/uploads/woocommerce_uploads/
https://wildr.co.za/wp-sitemap.xml
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-10

Timestamp Disclosure - Unix

Low Moderate fix zap CVE-497
CONFIDENCE   Low
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/cart/
What was found

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

Evidence
https://wildr.co.za/cart/1782411758
https://wildr.co.za/cart/?add-to-cart=1821782411778
https://wildr.co.za/cart/?add-to-cart=1151782411779
https://wildr.co.za/elementor-9/1780385684
https://wildr.co.za/wp-content/plugins/woocommerce/assets/client/blocks/wc-cart-checkout-vendors-frontend.js?ver=e5df053d8bcfb11ea8681540483477
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-11

X-Content-Type-Options Header Missing

Low Moderate fix zap CVE-693
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/
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://wildr.co.za/x-content-type-options
https://wildr.co.za/my-account/x-content-type-options
https://wildr.co.za/robots.txtx-content-type-options
https://wildr.co.za/wp-content/uploads/2026/05/Wildroot-Edition-Catalogue.pdfx-content-type-options
https://wildr.co.za/wp-sitemap.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

Authentication Request Identified

Informational Moderate fix zap CVE--1
CONFIDENCE   Low
INSTANCES   2
SYSTEMIC   No
Endpoint
https://wildr.co.za/my-account/
Parameter
login
What was found

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.

Evidence
https://wildr.co.za/my-account/password
https://wildr.co.za/my-account/lost-password/wc_reset_password
Suggested remediation

This is an informational alert rather than a vulnerability and so there is nothing to fix.

References
  • https://www.zaproxy.org/docs/desktop/addons/authentication-helper/auth-req-id/
X-02

Charset Mismatch

Informational Moderate fix zap CVE-436
CONFIDENCE   Low
INSTANCES   1
SYSTEMIC   No
Endpoint
https://wildr.co.za/wp-json/oembed/1.0/embed?format=xml&url=https%3A%2F%2Fwildr.co.za%2Fmy-account%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://wildr.co.za/wp-json/oembed/1.0/embed?format=xml&url=https%3A%2F%2Fwildr.co.za%2Fmy-account%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-03

Cookie Poisoning

Informational Moderate fix zap CVE-565
CONFIDENCE   Low
INSTANCES   5
SYSTEMIC   No
Endpoint
https://wildr.co.za/wp-comments-post.php
Parameter
author
What was found

This check looks at user-supplied input in query string parameters and POST data to identify where cookie parameters might be controlled. This is called a cookie poisoning attack, and becomes exploitable when an attacker can manipulate the cookie in various ways. In some cases this will not be exploitable, however, allowing URL parameters to set cookie values is generally considered a bug.

Evidence
https://wildr.co.za/wp-comments-post.phpauthor
https://wildr.co.za/wp-comments-post.phpemail
https://wildr.co.za/wp-comments-post.phpauthor
https://wildr.co.za/wp-comments-post.phpemail
https://wildr.co.za/wp-comments-post.phpurl
Suggested remediation

Do not allow user input to control cookie names and values. If some query string parameters must be set in cookie values, be sure to filter out semicolon's that can serve as name/value pair delimiters.

References
  • https://en.wikipedia.org/wiki/HTTP_cookie
  • https://cwe.mitre.org/data/definitions/565.html
X-04

Information Disclosure - Suspicious Comments

Informational Moderate fix zap CVE-615
CONFIDENCE   Medium
INSTANCES   4
SYSTEMIC   No
Endpoint
https://wildr.co.za/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.10.8.1
What was found

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

Evidence
https://wildr.co.za/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.10.8.1ires jQuery v1.7 or later * * Examples at:
https://wildr.co.za/wp-login.php//# sourceURL=user-profile-js-extra
https://wildr.co.za/wp-login.php?reauth=1&redirect_to=https%3A%2F%2Fwildr.co.za%2Fwp-admin%2F//# sourceURL=user-profile-js-extra
https://wildr.co.za/wp-login.php//# sourceURL=user-profile-js-extra
Suggested remediation

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

X-05

Modern Web Application

Informational Moderate fix zap CVE--1
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/
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://wildr.co.za/<a tabindex="-1" href="#" ><img fetchpriority="high" data-wp-on--click="actions.openDialog" data-wp-on--mouseleave="actions.resetZoom" data-wp-on--mousemove="actions.startZoom" data-wp-on--touchend="actions.onTouchEnd" data-wp-on--touchmove="actions.onTouchMove" data-wp-on--touchstart="actions.onTouchStart" draggable="false" fetchpriority="high" tabindex="-1" width="600" height="820" src="https://wildr.co.za/wp-content/uploads/2026/05/50ml-BODY-SHIMMER-OIL-cropped-600x820.png" class="attachment-woocommerce_single size-woocommerce_single wc-block-woocommerce-product-gallery-large-image__image wc-block-woocommerce-product-gallery-large-image__image--full-screen-on-click wc-block-woocommerce-product-gallery-large-image__image--hoverZoom" alt="BODY SHIMMER OIL" data-testid="product-image" data-image-id="101" style="object-fit:cover;" loading="eager" decoding="async" srcset="https://wildr.co.za/wp-content/uploads/2026/05/50ml-BODY-SHIMMER-OIL-cropped-600x820.png 600w, https://wildr.co.za/wp-content/uploads/2026/05/50ml-BODY-SHIMMER-OIL-cropped-219x300.png 219w, https://wildr.co.za/wp-content/uploads/2026/05/50ml-BODY-SHIMMER-OIL-cropped-749x1024.png 749w, https://wildr.co.za/wp-content/uploads/2026/05/50ml-BODY-SHIMMER-OIL-cropped-768x1050.png 768w, https://wildr.co.za/wp-content/uploads/2026/05/50ml-BODY-SHIMMER-OIL-cropped-1124x1536.png 1124w, https://wildr.co.za/wp-content/uploads/2026/05/50ml-BODY-SHIMMER-OIL-cropped-1498x2048.png 1498w, https://wildr.co.za/wp-content/uploads/2026/05/50ml-BODY-SHIMMER-OIL-cropped-1170x1599.png 1170w, https://wildr.co.za/wp-content/uploads/2026/05/50ml-BODY-SHIMMER-OIL-cropped-scaled.png 1873w" sizes="auto, (max-width: 600px) 100vw, 600px" /><div class="wc-block-components-product-image__inner-container"></div></a>
https://wildr.co.za/*?*add-to-cart<a data-wp-bind--hidden="state.isProductHiddenFromCatalog" data-wp-bind--href="state.cartItem.permalink" tabindex="-1"> <img data-wp-bind--hidden="context.isImageHidden" data-wp-bind--src="state.itemThumbnail" data-wp-bind--alt="state.cartItemName" data-wp-bind--srcset="state.itemSrcset" data-wp-bind--sizes="state.itemSizes" data-wp-on--error="actions.hideImage" > </a>
https://wildr.co.za/*?add-to-cart<a data-wp-bind--hidden="state.isProductHiddenFromCatalog" data-wp-bind--href="state.cartItem.permalink" tabindex="-1"> <img data-wp-bind--hidden="context.isImageHidden" data-wp-bind--src="state.itemThumbnail" data-wp-bind--alt="state.cartItemName" data-wp-bind--srcset="state.itemSrcset" data-wp-bind--sizes="state.itemSizes" data-wp-on--error="actions.hideImage" > </a>
https://wildr.co.za/my-account/<a data-wp-bind--hidden="state.isProductHiddenFromCatalog" data-wp-bind--href="state.cartItem.permalink" tabindex="-1"> <img data-wp-bind--hidden="context.isImageHidden" data-wp-bind--src="state.itemThumbnail" data-wp-bind--alt="state.cartItemName" data-wp-bind--srcset="state.itemSrcset" data-wp-bind--sizes="state.itemSizes" data-wp-on--error="actions.hideImage" > </a>
https://wildr.co.za/wp-content/uploads/woocommerce_transient_files/<a data-wp-bind--hidden="state.isProductHiddenFromCatalog" data-wp-bind--href="state.cartItem.permalink" tabindex="-1"> <img data-wp-bind--hidden="context.isImageHidden" data-wp-bind--src="state.itemThumbnail" data-wp-bind--alt="state.cartItemName" data-wp-bind--srcset="state.itemSrcset" data-wp-bind--sizes="state.itemSizes" data-wp-on--error="actions.hideImage" > </a>
Suggested remediation

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

X-06

Non-Storable Content

Informational Moderate fix zap CVE-524
CONFIDENCE   Medium
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/*?add-to-cart
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://wildr.co.za/*?add-to-cartno-store
https://wildr.co.za/wp-admin/no-store
https://wildr.co.za/wp-admin/admin-ajax.phpno-store
https://wildr.co.za/wp-content/uploads/wc-logs/403
https://wildr.co.za/wp-content/uploads/woocommerce_uploads/403
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-07

Re-examine Cache-control Directives

Informational Moderate fix zap CVE-525
CONFIDENCE   Low
INSTANCES   5
SYSTEMIC   Yes
Endpoint
https://wildr.co.za/
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://wildr.co.za/cache-control
https://wildr.co.za/my-account/no-cache, must-revalidate, max-age=0, private
https://wildr.co.za/robots.txtcache-control
https://wildr.co.za/shop/cache-control
https://wildr.co.za/wp-sitemap.xmlcache-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-08

Session Management Response Identified

Informational Moderate fix zap CVE--1
CONFIDENCE   Medium
INSTANCES   8
SYSTEMIC   No
Endpoint
https://wildr.co.za/?add-to-cart=105&quantity=3
Parameter
wp_woocommerce_session_37bccbf346009193d46f4066ab9f49f9
What was found

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.

Evidence
https://wildr.co.za/?add-to-cart=105&quantity=3wp_woocommerce_session_37bccbf346009193d46f4066ab9f49f9
https://wildr.co.za/?p=72woocommerce_cart_hash
https://wildr.co.za/cart/?add-to-cart=182woocommerce_cart_hash
https://wildr.co.za/product/body-shimmer-oil/?add-to-cart=87&quantity=3woocommerce_cart_hash
https://wildr.co.za/product/facial-resin-serum/?add-to-cart=105&quantity=3woocommerce_cart_hash
https://wildr.co.za/product/nourishing-lip-balm-unscented/?add-to-cart=111&quantity=3woocommerce_cart_hash
https://wildr.co.za/wp-login.php?reauth=1&redirect_to=https%3A%2F%2Fwildr.co.za%2Fwp-admin%2Fwordpress_test_cookie
https://wildr.co.za/wp-comments-post.phpcomment_author_email_37bccbf346009193d46f4066ab9f49f9
Suggested remediation

This is an informational alert rather than a vulnerability and so there is nothing to fix.

References
  • https://www.zaproxy.org/docs/desktop/addons/authentication-helper/session-mgmt-id/
X-09

Storable and Cacheable Content

Informational Moderate fix zap CVE-524
CONFIDENCE   Medium
INSTANCES   4
SYSTEMIC   No
Endpoint
https://wildr.co.za/
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://wildr.co.za/
https://wildr.co.za/sitemap.xml
https://wildr.co.za/wp-content/uploads/2026/05/Wildroot-Edition-Catalogue.pdf
https://wildr.co.za/wp-sitemap.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-10

User Controllable HTML Element Attribute (Potential XSS)

Informational Moderate fix zap CVE-20
CONFIDENCE   Low
INSTANCES   2
SYSTEMIC   No
Endpoint
https://wildr.co.za/?add-to-cart=105&quantity=3
Parameter
add-to-cart
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://wildr.co.za/?add-to-cart=105&quantity=3add-to-cart
https://wildr.co.za/wp-login.php?reauth=1&redirect_to=https%3A%2F%2Fwildr.co.za%2Fwp-admin%2Fredirect_to
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 197.242.65.111:110 pop3 Service pop3 on 197.242.65.111:110/tcp Info
N-02 197.242.65.111:143 imap Service imap on 197.242.65.111:143/tcp Info
N-03 197.242.65.111:21 ftp Service ftp on 197.242.65.111:21/tcp Info
N-04 197.242.65.111:22 ssh Service ssh on 197.242.65.111:22/tcp Info
N-05 197.242.65.111:3306 mysql Service mysql on 197.242.65.111:3306/tcp Info
N-06 197.242.65.111:443 https Service https on 197.242.65.111:443/tcp Info
N-07 197.242.65.111:465 smtps Service smtps on 197.242.65.111:465/tcp Info
N-08 197.242.65.111:587 submission Service submission on 197.242.65.111:587/tcp Info
N-09 197.242.65.111:80 http Service http on 197.242.65.111:80/tcp Info
N-10 197.242.65.111:993 imaps Service imaps on 197.242.65.111:993/tcp Info
N-11 197.242.65.111:995 pop3s Service pop3s on 197.242.65.111:995/tcp Info
N-12 https://wildr.co.za/ Status 200 Apache HTTP Server, Elementor:4.1.1, Jetpack, MySQL, PHP, WooCommerce:10.8.1, WordPress Block Editor, WordPress Site Editor, WordPress:7.0, jQuery, jQuery Migrate:3.4.1 Info
N-13 imap.wildr.co.za subfinder source: thc Info
N-14 mail.wildr.co.za subfinder source: thc Info
N-15 smtp.wildr.co.za subfinder source: thc Info
N-16 www.wildr.co.za subfinder source: thc Info

05   Additional informational findings 0 items

#FindingAffectedInstances