Scanned sites / webcohawaii.com / 2026-09-19-0800
webcohawaii.com scan from 9/19/2026, 8:00:03 AM
Scan 2026-09-19-0800
Scanned 9/19/2026, 8:00:03 AM, finished 9/19/2026, 8:02:40 AM. Found on page 1 of chatgpt for browser (api usage) results
Site: https://webcohawaii.com/
Download SQLite databaseEvery page and asset from this scan, with the crawl events, in one file.
On September 19, 2026 the Site Spider crawled 15 pages and 248 assets of webcohawaii.com, starting from https://webcohawaii.com/. It scored 78 out of 100, a good result. 8 of 14 checks found something to fix, led by title tags (8), meta descriptions (8), headings (7); 6 checks passed. The list below shows each check's result, the fix plan, when present, explains what to do first, and the security review at the end of the page covers headers, transport, libraries and exposed files.
Security review: Medium3 medium, 1 low and 1 info findings. See the security findings ↓
- Pages crawled
- 15
- Assets fetched
- 248
- Status
- Completed
- Checks with issues
- 8 of 14
- Title tags8 issues8 of 10 pages have title issues. 2 noindex or canonicalized pages excluded.
- Meta descriptions8 issues8 of 10 pages have meta description issues. 2 noindex or canonicalized pages excluded.
- Headings7 issues7 of 10 pages have heading issues. 2 noindex or canonicalized pages excluded.
- Broken linksOK0 internal links point at 0 broken URLs.
- Redirects3 issues4 redirecting URLs, 0 of them chained.
- Non-200 responsesOK23 URLs did not return a 2xx response.
- Rate limitedOKThe site did not rate limit the crawler.
- IndexabilityOK0 of 10 indexable pages have indexability warnings. 2 pages noindex by design.
- Image alt text2 issues2 of 108 image references have no alt attribute. 56 use an empty alt (decorative), which is fine.
- Heavy assetsOK0 assets larger than 500 KB among the 100 heaviest.
- Orphan pages4 issues4 pages have no internal links pointing at them.
- Sitemap coverage4 issues5 sitemaps listing 10 URLs: 0 crawled pages missing, 0 listed URLs broken or redirecting, 4 reachable only via the sitemap.
- Thin content3 issues3 of 10 pages have fewer than 200 words. 2 noindex or canonicalized pages excluded.
- Duplicate contentOK0 groups of pages with identical HTML.
Where this scan sits among all scanned sites
1101 sites, median 82%, average 80%
webcohawaii.com scores 78%, higher than 33% of the 1101 scanned sites. See the full ranking.
Green 90% and up (Excellent), lime 75 to 89 (Good), amber 50 to 74 (Needs work), red below 50 (Poor).
Internal link map
Loading the link map...
Fix plan
Written by gpt-4o-mini from the scan findingsYour website has several important SEO issues to address, including title and meta description problems that can impact visibility. Focusing on these will enhance search performance.
- 1
Fix Non-200 Responses
Why: 23 URLs return errors, affecting user experience and SEO.
How: Redirect or revise URLs as needed for accessibility. Check status codes for corrections.
Checks: status-codes
- 2
Improve Title Tags
Why: 8 pages have short or missing titles, limiting search optimization.
How: Rewrite titles to exceed 30 characters, ensuring relevance to content.
Checks: titles
- 3
Enhance Meta Descriptions
Why: 8 pages lack descriptions, affecting click-through rates from search results.
How: Add engaging meta descriptions of 50-160 characters for all affected pages.
Checks: meta-descriptions
- 4
Resolve Redirects
Why: 4 URLs redirect unnecessarily, which can harm link equity.
How: Remove or correct redirects to ensure users reach the final destination directly.
Checks: redirects
- 5
Correct Heading Issues
Why: 7 pages have multiple H1 tags, confusing search engines and users.
How: Ensure each page has a single H1, and use H2s for subheadings.
Checks: headings
- 6
Link Orphan Pages
Why: 4 pages currently lack internal links, reducing their visibility.
How: Add internal links to these pages from other relevant content.
Checks: orphan-pages
Generated automatically; verify each change against your own site before relying on it.
Security review
Written by gpt-4o-mini from 16 checks over the crawlThe site has several security gaps, notably the absence of HSTS which can expose users to man-in-the-middle attacks. Additionally, protective flags on cookies are missing, and sensitive keys are exposed in page code. Implementing the recommended changes can significantly improve site security.
- 0 high
- 3 medium
- 1 low
- 1 info
- 1
Missing HTTP Strict Transport Security (HSTS)Medium
Why it matters: Without HSTS, users can be intercepted during their first request over HTTP.
Fix: Add the header: Strict-Transport-Security: max-age=31536000; includeSubDomains
Evidence: HTTP Strict Transport Security
- 2
Missing Cookie FlagsMedium
Why it matters: Cookies without protective flags can be accessed by scripts, risking user data.
Fix: Set the cookies wordpress_test_cookie with: HttpOnly; Secure; SameSite=Strict
Evidence: Cookie flags
- 3
Leaked Google API KeyMedium
Why it matters: The Google API key in the page can be abused if not properly restricted.
Fix: Restrict the API key by HTTP referrer in the Google Cloud console.
Evidence: Keys and secrets in page code
- 4
Missing X-Content-Type-Options HeaderLow
Why it matters: Absence of this header may cause files to be executed as scripts based on content.
Fix: Add the header: X-Content-Type-Options: nosniff
Evidence: MIME sniffing protection
- 5
Missing Permissions-Policy HeaderInfo
Why it matters: This header can restrict harmful script behaviors on the site.
Fix: Add the header: Permissions-Policy: geolocation=(self), microphone=(), camera=()
Evidence: Permissions policy
What the checks found
- FoundHTTP Strict Transport SecurityMedium
10 of 12 HTML pages send strict-transport-security. Without it a visitor who types the address without https:// can be intercepted on the first request.
- https://webcohawaii.com/wp-login.php → no strict-transport-security
- https://webcohawaii.com/wp-login.php?action=lostpassword → no strict-transport-security
- FoundMIME sniffing protectionLow
10 of 12 HTML pages send x-content-type-options. Without X-Content-Type-Options: nosniff a browser may run a file as a script because of its contents rather than its declared type.
- https://webcohawaii.com/wp-login.php → no x-content-type-options
- https://webcohawaii.com/wp-login.php?action=lostpassword → no x-content-type-options
- FoundPermissions policyInfo
10 of 12 HTML pages send permissions-policy. A Permissions-Policy header turns off browser features the site does not use (camera, microphone, geolocation), limiting what an injected script could do.
- https://webcohawaii.com/wp-login.php → no permissions-policy
- https://webcohawaii.com/wp-login.php?action=lostpassword → no permissions-policy
- FoundCookie flagsMedium
1 of 1 cookie are missing protective flags. Without HttpOnly a script can read the cookie; without Secure it travels over plain HTTP; without SameSite it is sent on cross-site requests.
- wordpress_test_cookie (set by https://webcohawaii.com/wp-login.php) lacks SameSite
- FoundKeys and secrets in page codeMedium
1 credential-like value found in code served to every visitor: Google API key.
- Google API key AIzaSy…ww (39 chars) in https://webcohawaii.com/contact/: browser keys are expected in pages, but must be restricted by HTTP referrer and API in the Google Cloud console
- NoteSoftware version disclosure
Responses name the framework in an X-Powered-By header but hide the version.
- server: nginx (263 responses)
- x-powered-by: WP Engine (24 responses)
- NoteThird-party scripts
Scripts run from 4 other domains without Subresource Integrity, so a compromise of any of them changes what runs on this site. (Tag managers and analytics rarely support SRI; a Content-Security-Policy that names these hosts is the usual control.)
- www.googletagmanager.com (10 script tags)
- cdn.canvasjs.com (10 script tags)
- www.google.com (2 script tags)
- maps.googleapis.com (1 script tag)
- NoteSensitive paths in robots.txt
robots.txt lists 1 path that look private. robots.txt is public and does not restrict access, so it doubles as a map for anyone probing the site; those paths need real access control.
- Disallow: /wp-admin/
8 checks passed
- OKHTTPS
All 12 crawled pages were served over HTTPS.
- OKContent Security Policy
A Content-Security-Policy is set.
- OKClickjacking protection
x-frame-options is set on all 12 HTML pages.
- OKReferrer policy
referrer-policy is set on all 12 HTML pages.
- OKMixed content
No HTTPS page loads a script, stylesheet, font or image over plain HTTP.
- OKForms over HTTPS
15 forms found, all on HTTPS pages posting to HTTPS addresses.
- OKVulnerable JavaScript libraries
2 library versions recognised, none with known vulnerabilities.
- OKExposed files and listings
None of the crawled URLs is a configuration file, backup, dump, repository folder or directory listing.
A passive review of what the crawl recorded: response headers, page and script contents and the URLs it found. It does not probe the site, test TLS settings or look for files that were not linked. Generated automatically; verify each finding against your own site before acting on it.
This report was produced by the DIY SEO Hub Site Spider crawling webcohawaii.com from its public pages. Anyone can run a scan of any site they own or are authorised to check. Is this your site? Claim it to manage the listing, or ask for removal through the support form.