Scanned sites / saladdaysproduce.com / 2026-09-26-1500
saladdaysproduce.com scan from 9/26/2026, 3:00:02 PM
Scan 2026-09-26-1500
Scanned 9/26/2026, 3:00:02 PM, finished 9/26/2026, 3:01:31 PM. Found on page 1 of chatgpt for browser (api usage) results
Site: https://saladdaysproduce.com/
Download SQLite databaseEvery page and asset from this scan, with the crawl events, in one file.
On September 26, 2026 the Site Spider crawled 29 pages and 2 assets of saladdaysproduce.com, starting from https://saladdaysproduce.com/. It scored 90 out of 100, an excellent result. 8 of 15 checks found something to fix, led by meta descriptions (8), title tags (6), headings (8); 5 checks passed. Most of the points went to meta descriptions (−2.3), title tags (−2.1), headings (−1.7). 2 checks found something the score does not count, listed as noted. 1 check was not run because the crawl fetched nothing for it. 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, 2 low and 2 info findings. See the security findings ↓
- Pages crawled
- 29
- Assets fetched
- 2
- Status
- Completed
- Checks with issues
- 8 of 15
31 of 31 discovered URLs were fetched. The crawl reached everything it found. HTML only: nothing here ran JavaScript. 8 link destinations on other sites have not been checked.
- Title tags6 issues6 of 8 pages have title issues. 20 noindex or canonicalized pages excluded.−2.1 points
- Meta descriptions8 issues8 of 8 pages have meta description issues. 20 noindex or canonicalized pages excluded.−2.3 points
- Headings8 issues8 of 8 pages have heading issues. 20 noindex or canonicalized pages excluded.−1.7 points
- Broken linksOK0 internal links point at 0 broken URLs.
- Links to other sitesNot checkedNot checked: the crawl fetched nothing this check can look at.
- Redirects1 issue1 redirecting URL, 0 of them chained.−0.1 points
- Non-200 responses1 noted1 URL did not return a 2xx response. 1 of them is a page, 0 with an error status; the rest are assets or redirects.
- Rate limitedOKThe site did not rate limit the crawler.
- Indexability1 issue1 of 27 indexable pages have indexability warnings. 1 page noindex by design.−0.4 points
- Image alt textOK0 of 781 image references have no alt attribute. 84 use an empty alt (decorative), which is fine.
- Heavy assetsOK0 assets larger than 500 KB among 2 fetched assets.
- Orphan pages4 issues4 pages have no internal links pointing at them.−0.6 points
- Sitemap coverage5 issues1 sitemap listing 8 URLs: 1 crawled page missing, 0 listed URLs broken or redirecting, 4 reachable only via the sitemap.−1.1 points
- Internal link countsOKInternal link counts for 28 pages.
- Thin content5 issues5 of 8 pages have fewer than 200 words. 20 noindex or canonicalized pages excluded.−1.4 points
- Duplicate contentOK0 groups of pages with identical HTML.
Where this scan sits among all scanned sites
1315 sites, median 80%, average 79%
saladdaysproduce.com scores 90%, higher than 88% of the 1315 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 findingsWritten from an earlier version of the analysis. The findings on this page have been recomputed since, so counts and labels here may differ from what the plan describes. The advice still points at the same checks.
Your site has several SEO issues that need addressing to improve visibility and user experience. Focus on optimizing title tags, meta descriptions, and fixing redirects for impactful enhancements.
- 1
Fix Redirect Issues
Why: One URL is redirecting unnecessarily, which can impact performance.
How: Update the link to point directly to the intended destination without the redirect.
Checks: redirects
- 2
Improve Title Tags
Why: 6 out of 8 title tags are too short or duplicate, affecting click-through rates.
How: Revise titles to be unique and over 30 characters, incorporating relevant keywords.
Checks: titles
- 3
Add Meta Descriptions
Why: All pages are missing meta descriptions, signaling low optimization for search.
How: Create concise, descriptive meta descriptions for each page, aiming for around 150 characters.
Checks: meta-descriptions
- 4
Fix Heading Structure
Why: All pages lack proper heading tags, which are important for SEO and readability.
How: Ensure each page has one H1 tag that clearly describes the content, and adjust any other heading structures as needed.
Checks: headings
- 5
Link to Orphan Pages
Why: 4 pages have no internal links, reducing their indexability and visibility.
How: Add internal links pointing to these orphan pages from relevant existing pages.
Checks: orphan-pages
- 6
Enhance Thin Content
Why: 5 pages have fewer than 200 words, which may affect their ranking.
How: Add more relevant content to these pages, ensuring it is useful and informative for users.
Checks: thin-content
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 lacks critical security headers, exposing it to various attacks, including clickjacking and script injection. It's important to implement a Content Security Policy and Clickjacking protection. Also, cookie security flags are not set properly, which could lead to cookie theft.
- 0 high
- 3 medium
- 2 low
- 2 info
- 1
Missing Content Security PolicyMedium
Why it matters: Without a Content Security Policy, scripts and styles can be loaded from any source, increasing the risk of XSS attacks.
Fix: Add a Content-Security-Policy header with appropriate directives to restrict resource loading. Example: "Content-Security-Policy: default-src 'self';"
Evidence: Content Security Policy
- 2
Missing X-Frame-Options HeaderMedium
Why it matters: Without this header, the site is vulnerable to clickjacking attacks, allowing malicious sites to overlay your site with misleading content.
Fix: Set the X-Frame-Options header to "DENY" or "SAMEORIGIN".
Evidence: Clickjacking protection
- 3
Cookie Lacks Protective FlagsMedium
Why it matters: Cookies can be accessed by client-side scripts or sent on cross-site requests, which may expose sensitive information.
Fix: Update the cookie settings to include HttpOnly, Secure, and SameSite attributes. Example: Set-Cookie: crumb=<value>; HttpOnly; Secure; SameSite=Strict
Evidence: Cookie flags
- 4
Missing Referrer PolicyLow
Why it matters: Not having a referrer policy means sensitive URL information could be leaked to third-party sites.
Fix: Add a Referrer-Policy header. Example: "Referrer-Policy: no-referrer-when-downgrade".
Evidence: Referrer policy
- 5
Third-Party Scripts Without Subresource IntegrityLow
Why it matters: Using external scripts without integrity checks means they can be modified to include malicious code.
Fix: Consider implementing Subresource Integrity (SRI) or restrict resource loading with a CSP.
Evidence: Third-party scripts
- 6
Missing Permissions PolicyInfo
Why it matters: Without this policy, the site may allow access to unnecessary browser features, risking exploitation by injected scripts.
Fix: Add a Permissions-Policy header to disable unused features. Example: "Permissions-Policy: geolocation=(), microphone=(), camera=()".
Evidence: Permissions policy
- 7
Sensitive Paths Listed in robots.txtInfo
Why it matters: The presence of potentially sensitive paths in robots.txt could inadvertently expose them to attackers.
Fix: Remove sensitive paths from robots.txt or enforce proper access controls.
Evidence: Sensitive paths in robots.txt
What the checks found
- FoundContent Security PolicyMedium
None of the 28 HTML pages send a Content-Security-Policy header or meta tag, so the browser has no restriction on where scripts, styles and frames may load from.
- https://saladdaysproduce.com/ → no content-security-policy
- https://saladdaysproduce.com/cart → no content-security-policy
- https://saladdaysproduce.com/about → no content-security-policy
- https://saladdaysproduce.com/products → no content-security-policy
- https://saladdaysproduce.com/store-locator → no content-security-policy
- https://saladdaysproduce.com/contact → no content-security-policy
- https://saladdaysproduce.com/storelocator → no content-security-policy
- https://saladdaysproduce.com/home → no content-security-policy
- https://saladdaysproduce.com/photos → no content-security-policy
- https://saladdaysproduce.com/home2 → no content-security-policy
- https://saladdaysproduce.com/photos?itemId=pklr33j2f5dgspst1i7cs3uhymjye3-lelde → no content-security-policy
- https://saladdaysproduce.com/photos?itemId=7aw35cc1lsqmjmatzqur54qce1zof7-t7trm → no content-security-policy
- FoundClickjacking protectionMedium
27 of 28 HTML pages send x-frame-options. Without X-Frame-Options (or a CSP frame-ancestors directive) the pages can be embedded in a frame on another site and overlaid with invisible controls.
- https://saladdaysproduce.com/cart → no x-frame-options
- FoundReferrer policyLow
No HTML page sends referrer-policy. Without a Referrer-Policy the full page address, including any query string, is sent to every site a visitor clicks through to.
- https://saladdaysproduce.com/ → no referrer-policy
- https://saladdaysproduce.com/cart → no referrer-policy
- https://saladdaysproduce.com/about → no referrer-policy
- https://saladdaysproduce.com/products → no referrer-policy
- https://saladdaysproduce.com/store-locator → no referrer-policy
- https://saladdaysproduce.com/contact → no referrer-policy
- https://saladdaysproduce.com/storelocator → no referrer-policy
- https://saladdaysproduce.com/home → no referrer-policy
- https://saladdaysproduce.com/photos → no referrer-policy
- https://saladdaysproduce.com/home2 → no referrer-policy
- https://saladdaysproduce.com/photos?itemId=pklr33j2f5dgspst1i7cs3uhymjye3-lelde → no referrer-policy
- https://saladdaysproduce.com/photos?itemId=7aw35cc1lsqmjmatzqur54qce1zof7-t7trm → no referrer-policy
- FoundPermissions policyInfo
No HTML page sends 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://saladdaysproduce.com/ → no permissions-policy
- https://saladdaysproduce.com/cart → no permissions-policy
- https://saladdaysproduce.com/about → no permissions-policy
- https://saladdaysproduce.com/products → no permissions-policy
- https://saladdaysproduce.com/store-locator → no permissions-policy
- https://saladdaysproduce.com/contact → no permissions-policy
- https://saladdaysproduce.com/storelocator → no permissions-policy
- https://saladdaysproduce.com/home → no permissions-policy
- https://saladdaysproduce.com/photos → no permissions-policy
- https://saladdaysproduce.com/home2 → no permissions-policy
- https://saladdaysproduce.com/photos?itemId=pklr33j2f5dgspst1i7cs3uhymjye3-lelde → no permissions-policy
- https://saladdaysproduce.com/photos?itemId=7aw35cc1lsqmjmatzqur54qce1zof7-t7trm → 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.
- crumb (set by https://saladdaysproduce.com/) lacks HttpOnly, SameSite
- 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.)
- use.typekit.net (28 script tags)
- assets.squarespace.com (308 script tags)
- definitions.sqspcdn.com (141 script tags)
- static1.squarespace.com (24 script tags)
- 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: /config
7 checks passed, 2 not applicable
- OKHTTPS
All 28 crawled pages were served over HTTPS.
- OKHTTP Strict Transport Security
strict-transport-security is set on all 28 HTML pages.
- OKMIME sniffing protection
x-content-type-options is set on all 28 HTML pages.
- OKSoftware version disclosure
The Server header names a product without a version, and there is no X-Powered-By header.
- OKMixed content
No HTTPS page loads a script, stylesheet, font or image over plain HTTP.
- OKKeys and secrets in page code
No API keys, tokens or private keys were found in the sampled HTML and scripts.
- OKExposed files and listings
None of the crawled URLs is a configuration file, backup, dump, repository folder or directory listing.
- Not applicableForms over HTTPS
No forms were found on the sampled pages.
- Not applicableVulnerable JavaScript libraries
No recognisable library versions were found in the sampled scripts.
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.
Sites scoring near saladdaysproduce.com
Their neighbours in the SEO rank table, which orders every scanned site by health score.
- downtowndentalcentre.com91/100 · rank 103 · 197 pages
- ryanlenk.com91/100 · rank 103 · 48 pages
- www.allendaledental.ca90/100 · rank 134 · 78 pages
- hiddenhollowfarmiowa.com90/100 · rank 134 · 8 pages
- www.explorano.com90/100 · rank 134 · 1,169 pages
- kingsviewdental.ca90/100 · rank 134 · 134 pages
This report was produced by the DIY SEO Hub Site Spider crawling saladdaysproduce.com from its pages as published, the way a search engine does. It shows summary figures only.
Own saladdaysproduce.com?
- Claim this site to manage the listing, hide it from the public lists, or keep it.
- Want it gone instead? Ask through the support form or e-mail support@diyseohub.com, naming saladdaysproduce.com. Removal needs no account and no proof of purchase.