Skip to content
https://epson.com

Security

· 13 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
58
GRADE
D
FIX
7
REVIEW
3
PASS
3
INFO
0
Checks
13
3 PASS 3 REVIEW 7 FIX
F
Security Headers
Action
2 of 10 headers properly configured
FIX
2 of 10 headers properly configured
Warning::
HSTS max-age is too short (15724800s, should be ≥ 31536000s)
A short max-age leaves a window for downgrade attacks. Set max-age to at least 31536000 (1 year).
Got: max-age=15724800 Expected: max-age=31536000; includeSubDomains
Warning::
X-Content-Type-Options header is missing
This header prevents MIME-type sniffing, which can lead to XSS attacks. Set it to 'nosniff'.
Expected: nosniff
Warning::
X-Frame-Options header is missing
This header prevents clickjacking by controlling who can embed your page in a frame. Set it to DENY or SAMEORIGIN.
Expected: DENY
Warning::
Referrer-Policy header is missing
Controls how much referrer information is sent with requests. Set to 'strict-origin-when-cross-origin' or stricter.
Expected: strict-origin-when-cross-origin
Warning::
Permissions-Policy header is missing
Controls which browser features (camera, microphone, geolocation) are allowed. Set it to restrict unused features.
Expected: geolocation=(), camera=(), microphone=()
Critical::
Content-Security-Policy header is missing
CSP is the most important header for preventing XSS attacks. See the CSP section for detailed analysis.
Expected: default-src 'self'
Warning::
Cross-Origin-Opener-Policy header is missing
COOP isolates your browsing context, preventing cross-origin side-channel attacks. Set to 'same-origin'.
Expected: same-origin
Warning::
Cross-Origin-Embedder-Policy header is missing
COEP prevents loading cross-origin resources without explicit permission. Required for SharedArrayBuffer and high-resolution timers.
Expected: require-corp
Info::
X-Powered-By header is not present
Info::
Server header is present without version info
Got: *

CSP is the most important header for preventing XSS attacks. See the CSP section for detailed analysis.

Expected: default-src 'self'
Why this matters

Without a CSP, a single XSS bug can exfiltrate everything your users type — including credentials.

Learn more

Content-Security-Policy is the browser-enforced firewall against XSS. With a strict CSP, a script injection that would otherwise steal session cookies or rewrite the page is silently blocked. Without it, your only defense is hoping every input on every form is escaped correctly forever.

Source: OWASP / MDN

A short max-age leaves a window for downgrade attacks. Set max-age to at least 31536000 (1 year).

Expected: max-age=31536000; includeSubDomains
Why this matters

Short HSTS max-age leaves a downgrade-attack window every time the cache expires — set ≥ 1 year.

Learn more

max-age below 31536000 (1 year) is below industry recommendation. The browser forgets the HSTS policy and re-exposes first-visit downgrade attacks. Set to 63072000 (2 years) and add `includeSubDomains; preload` to qualify for the HSTS preload list.

Source: RFC 6797 / hstspreload.org

This header prevents MIME-type sniffing, which can lead to XSS attacks. Set it to 'nosniff'.

Expected: nosniff
Why this matters

MIME sniffing lets browsers run uploaded files as JavaScript, turning a file upload into an XSS.

Learn more

Setting X-Content-Type-Options: nosniff tells browsers to trust your declared Content-Type instead of guessing. Without it, an attacker who uploads a polyglot file can sometimes get it executed as a script. One header, no downside.

Source: OWASP / MDN

This header prevents clickjacking by controlling who can embed your page in a frame. Set it to DENY or SAMEORIGIN.

Expected: DENY
Why this matters

Without frame protection, your site can be embedded in a hostile page and used for clickjacking.

Learn more

Clickjacking overlays your site under a transparent malicious page so users click invisible buttons. Setting X-Frame-Options: DENY (or a modern frame-ancestors CSP directive) blocks the embedding entirely. There's almost never a legitimate reason to allow it.

Source: OWASP / MDN

Controls how much referrer information is sent with requests. Set to 'strict-origin-when-cross-origin' or stricter.

Expected: strict-origin-when-cross-origin
Why this matters

Default browser behavior leaks full URLs (including query params and tokens) to every third-party resource — set a strict policy.

Learn more

Without a Referrer-Policy header, browsers send the full referring URL with images, scripts, and fonts loaded from third-party origins. URLs containing tokens, user IDs, or session params end up in third-party logs. Set `Referrer-Policy: strict-origin-when-cross-origin` (or stricter) to limit leakage.

Source: MDN / W3C

Controls which browser features (camera, microphone, geolocation) are allowed. Set it to restrict unused features.

Expected: geolocation=(), camera=(), microphone=()
Why this matters

Permissions-Policy locks down browser APIs you don't use — without it, every page can request camera/mic/geolocation if XSS lands.

Learn more

By default every page can request the camera, microphone, geolocation, payment APIs, and dozens more. Permissions-Policy turns off the ones you don't need so a future bug can't quietly start using them. It's a defense-in-depth header — one line, big surface reduction.

Source: MDN / W3C

COOP isolates your browsing context, preventing cross-origin side-channel attacks. Set to 'same-origin'.

Expected: same-origin
Why this matters

COOP isolates your top-level browsing context from cross-origin windows — without it, popup-based side-channel attacks remain possible.

Learn more

Cross-Origin-Opener-Policy: same-origin prevents cross-origin pages from sharing a browsing-context group with yours. This blocks cross-window references that enable Spectre-style timing attacks and tab-nabbing. Required if you want to enable SharedArrayBuffer.

Source: MDN / web.dev

COEP prevents loading cross-origin resources without explicit permission. Required for SharedArrayBuffer and high-resolution timers.

Expected: require-corp
Why this matters

COEP enforces that all embedded resources opt-in to cross-origin embedding — required for cross-origin isolation features.

Learn more

Cross-Origin-Embedder-Policy: require-corp ensures every embedded resource (script, iframe, image) explicitly allows being loaded cross-origin. Combined with COOP, this enables the cross-origin-isolated context that unlocks SharedArrayBuffer, high-resolution timers, and other powerful APIs.

Source: MDN / web.dev

F
Content Security Policy
Action
No enforcing CSP policy found
FIX
No enforcing CSP policy found
Critical::
No Content-Security-Policy header found
CSP is the most effective defense against XSS attacks. Add a Content-Security-Policy header to restrict resource loading.
Expected: default-src 'self'

CSP is the most effective defense against XSS attacks. Add a Content-Security-Policy header to restrict resource loading.

Expected: default-src 'self'
Why this matters

Without a CSP, a single XSS bug can exfiltrate everything users type — credentials, payment data, session tokens.

Learn more

Content-Security-Policy is the browser-enforced firewall against XSS. With a strict CSP, a script injection that would otherwise steal session cookies is silently blocked. Without it, your only defense is hoping every input on every form is escaped correctly forever. Start in Report-Only mode, fix violations, then graduate to enforcing.

Source: OWASP / MDN

D
Cookie Security
Action
3 cookies analyzed, 2 checks passed
FIX
3 cookies analyzed, 2 checks passed
Critical::
Cookie 'visid_incap_1843513' is missing the Secure flag
Without the Secure flag, this cookie can be sent over unencrypted HTTP, exposing it to interception.
Info::
Cookie 'visid_incap_1843513' has the HttpOnly flag
Warning::
Cookie 'visid_incap_1843513' has no SameSite attribute
Without an explicit SameSite attribute, browser default behavior varies. Set SameSite=Lax or Strict.
Critical::
Cookie 'nlbi_1843513' is missing the Secure flag
Without the Secure flag, this cookie can be sent over unencrypted HTTP, exposing it to interception.
Info::
Cookie 'nlbi_1843513' has the HttpOnly flag
Warning::
Cookie 'nlbi_1843513' has no SameSite attribute
Without an explicit SameSite attribute, browser default behavior varies. Set SameSite=Lax or Strict.
Critical::
Cookie 'incap_ses_1849_1843513' is missing the Secure flag
Without the Secure flag, this cookie can be sent over unencrypted HTTP, exposing it to interception.
Warning::
Cookie 'incap_ses_1849_1843513' is missing the HttpOnly flag
Without HttpOnly, this cookie can be accessed by JavaScript, making it vulnerable to XSS-based theft.
Warning::
Cookie 'incap_ses_1849_1843513' has no SameSite attribute
Without an explicit SameSite attribute, browser default behavior varies. Set SameSite=Lax or Strict.
3 cookies analyzed 3 critical 4 warnings
NameSecureHttpOnlySameSiteSizeIssues
visid_incap_184351383 B2
nlbi_184351360 B2
incap_ses_1849_184351378 B3
D
Subresource Integrity
Action
1 of 84 external resources have SRI
FIX
1 of 84 external resources have SRI
Warning::
External script from analytics.tiktok.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://analytics.tiktok.com/i18n/pixel/static/identify_5cff1caf.js
Warning::
External script from analytics.tiktok.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://analytics.tiktok.com/i18n/pixel/static/main.MWE0ZWQ3ZWQwMQ.js
Warning::
External script from www.googletagmanager.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.googletagmanager.com/gtag/js?id=G-5YE3J5TC4R&cx=c&gtm=4e64k0
Warning::
External script from www.googletagmanager.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.googletagmanager.com/gtag/js?id=DC-9405897&cx=c&gtm=4e64k0
Warning::
External script from www.googletagmanager.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.googletagmanager.com/gtag/js?id=AW-1035526826&cx=c&gtm=4e64k0
Warning::
External script from c.amazon-adsystem.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://c.amazon-adsystem.com/aat/amzn.js
Warning::
External script from js.cnnx.link lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.cnnx.link/roi/cnxtag-min.js?id=27433
Warning::
External script from analytics.tiktok.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://analytics.tiktok.com/i18n/pixel/events.js?sdkid=C9ERP2BC77U12DDTH7BG&lib=ttq
Warning::
External script from bat.bing.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //bat.bing.com/bat.js
Warning::
External script from cdn.pricespider.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn.pricespider.com/1/84/ps-utid.js
Warning::
External script from www.mczbf.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //www.mczbf.com/tags/11055/tag.js
Warning::
External script from s.yimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s.yimg.com/wi/ytc.js
Warning::
External script from pi.pardot.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://pi.pardot.com/pd.js
Warning::
External script from snap.licdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://snap.licdn.com/li.lms-analytics/insight.min.js
Warning::
External script from cdnssl.clicktale.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdnssl.clicktale.net/www33/ptc/7ec0b3fc-21b0-421f-b51c-29af20d8f5a4.js
Warning::
External script from static.ads-twitter.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //static.ads-twitter.com/uwt.js
Warning::
External script from connect.facebook.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://connect.facebook.net/signals/config/1702738029993239?v=2.9.303&r=stable&domain=epson.com&hme=97937018cefade17726f0472876fc101316b2ce9008a35a6a5a7977d7436151a&ex_m=104%2C205%2C154%2C22%2C72%2C73%2C145%2C68%2C67%2C11%2C162%2C90%2C16%2C138%2C127%2C39%2C75%2C78%2C134%2C159%2C164%2C8%2C4%2C5%2C7%2C6%2C3%2C91%2C101%2C165%2C170%2C219%2C62%2C186%2C187%2C55%2C276%2C30%2C74%2C231%2C230%2C229%2C23%2C33%2C103%2C61%2C10%2C63%2C97%2C98%2C99%2C105%2C130%2C31%2C29%2C132%2C133%2C129%2C128%2C155%2C76%2C158%2C156%2C157%2C50%2C60%2C123%2C15%2C161%2C45%2C263%2C264%2C262%2C26%2C27%2C28%2C48%2C146%2C77%2C112%2C18%2C20%2C44%2C40%2C42%2C41%2C83%2C92%2C96%2C110%2C144%2C147%2C46%2C111%2C24%2C21%2C119%2C69%2C36%2C149%2C148%2C150%2C141%2C139%2C25%2C35%2C59%2C109%2C160%2C70%2C17%2C152%2C114%2C81%2C66%2C19%2C85%2C86%2C116%2C84%2C136%2C135%2C34%2C278%2C293%2C212%2C201%2C202%2C200%2C296%2C288%2C52%2C213%2C107%2C131%2C80%2C121%2C54%2C47%2C49%2C113%2C120%2C126%2C58%2C64%2C151%2C115%2C37%2C32%2C53%2C56%2C100%2C163%2C1%2C124%2C14%2C122%2C12%2C2%2C57%2C93%2C65%2C118%2C89%2C88%2C166%2C167%2C94%2C95%2C9%2C125%2C102%2C51%2C142%2C87%2C79%2C71%2C117%2C106%2C43%2C143%2C0%2C82%2C137%2C140%2C153%2C38%2C108%2C13%2C168
Warning::
External script from connect.facebook.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://connect.facebook.net/en_US/fbevents.js
Warning::
External script from huge.superpinkday.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://huge.superpinkday.com/i/3e4826817dca3b5f5c9263dc639c075e.js
Warning::
External script from scripts.demandbase.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //scripts.demandbase.com/cd3d45883815b51b.min.js
Warning::
External script from unpkg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //unpkg.com/web-vitals@4/dist/web-vitals.attribution.iife.js
Warning::
External script from www.googletagmanager.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.googletagmanager.com/gtag/js?id=G-VPHYL35G6L
Info::
script from www.gstatic.com has SRI protection
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.js
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.sync.js
Warning::
External link from fonts.googleapis.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic
Warning::
External link from cdn.jsdelivr.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css
Warning::
External link from cdn.jsdelivr.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css
Warning::
External script from cdn.cookielaw.org lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.cookielaw.org/scripttemplates/otSDKStub.js
Warning::
External script from cdn.cookielaw.org lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.cookielaw.org/scripttemplates/202603.1.0/otBannerSdk.js
Warning::
External script from fast.fonts.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://fast.fonts.net/jsapi/core/mt.js
Warning::
External link from fast.fonts.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://fast.fonts.net/t/1.css?apiType=js&projectid=0ff7458e-e5e6-4a86-a2b0-19ba3a16ee27
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.477.js?utv=ut4.51.202409250417
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.474.js?utv=ut4.51.202409092209
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.407.js?utv=ut4.51.202601220347
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.148.js?utv=ut4.51.202512231845
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.161.js?utv=ut4.51.202509151647
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.146.js?utv=ut4.51.202408052007
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.156.js?utv=ut4.51.202408160138
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.162.js?utv=ut4.51.202408160138
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.164.js?utv=ut4.51.202510272118
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.165.js?utv=ut4.51.202512162034
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.167.js?utv=ut4.51.202604140309
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.166.js?utv=ut4.51.202604140309
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.169.js?utv=ut4.51.202604140309
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.172.js?utv=ut4.51.202604150341
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.315.js?utv=ut4.51.202512162034
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.375.js?utv=ut4.51.202604140309
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.409.js?utv=ut4.51.202512162034
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.411.js?utv=ut4.51.202509151647
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.421.js?utv=ut4.51.202408052007
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.423.js?utv=ut4.51.202408052007
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.460.js?utv=ut4.51.202512162034
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.24.js?utv=ut4.51.202601220347
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.504.js?utv=ut4.51.202601220347
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.511.js?utv=ut4.51.202408052007
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.514.js?utv=ut4.51.202512162034
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.537.js?utv=ut4.51.202409250417
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.549.js?utv=ut4.51.202604201846
Warning::
External script from platform.twitter.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //platform.twitter.com/oct.js
Warning::
External script from visitor-service-us-east-1.tealiumiq.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://visitor-service-us-east-1.tealiumiq.com/epson/northamerica/019db6d9f216001ece0ce7055c3c0506d001206500590?callback=utag.ut%5B%22writevanorthamerica%22%5D&rnd=1776889232080
Warning::
External script from login-ds.dotomi.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://login-ds.dotomi.com/profile/visit/final/js?dtm_token_dc=AQAN5_wIkouG-gE4CIRzAQELPQABAQCct9j7ogEBAJy32Pui&dtm_form_uid=929708590808084863&dtm_token_ls=AQAN5_wIkouG-gE4CIRzAQELPQABAQCct9j7ogEBAJy32Pui&cachebuster=5082624199337242&tcflag=true&dtmc_loc=https%3A%2F%2Fepson.com%2Fusa&dtm_token_assignment_type=0&dtm_cid=2620&dtm_fid=108&dtmc_department=homepage&dtm_zip_code=07094&dtm_user_dc=ric&dtm_id_assgn_type=0&dtm_state=NJ&dccu=true&dtm_user_agent=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20HeadlessChrome%2F146.0.0.0%20Safari%2F537.36&dtm_country_code=US&init_wl_code=3&ops_test_camp=false&dtmc_tms=1&dtm_dma_code=501&dtm_cmagic=8bd39e&dtm_token_ss=AQAN5_wIkouG-gE4CIRzAQELPQABAQCct9j7ogEBAJy32Pui&init_ts=1776889232036&dtm_client_optout=false&wl_domains_key=epson.com&dtm_promo_id=9&dtm_cookies_enabled=true&data_object_type_code=0&canonical_url=https%3A%2F%2Fepson.com%2Fusa&dtmc_ref=https%3A%2F%2Fepson.com%2F&cli_promo_id=9&cmps_queried=true&dtm_paapi=1
Warning::
External script from login-ds.dotomi.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://login-ds.dotomi.com/profile/visit/final/js?dtm_token_dc=AQAHZy7Q_exWXwEJHbyzAQELPQABAQCct9j7nwEBAJy32Puf&dtm_form_uid=461108590790223995&dtm_token_ls=AQAHZy7Q_exWXwEJHbyzAQELPQABAQCct9j7nwEBAJy32Puf&cachebuster=5082624199337242&tcflag=true&dtmc_loc=https%3A%2F%2Fepson.com%2Fusa&dtm_token_assignment_type=0&dtm_cid=2620&dtm_fid=101&dtmc_department=homepage&dtm_zip_code=07094&dtm_user_dc=iad&dtm_id_assgn_type=0&dtm_state=NJ&dccu=true&dtm_user_agent=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20HeadlessChrome%2F146.0.0.0%20Safari%2F537.36&dtm_country_code=US&init_wl_code=3&ops_test_camp=false&dtmc_tms=1&dtm_dma_code=501&dtm_cmagic=8bd39e&dtm_token_ss=AQAHZy7Q_exWXwEJHbyzAQELPQABAQCct9j7nwEBAJy32Puf&init_ts=1776889232030&dtm_client_optout=false&wl_domains_key=epson.com&dtm_promo_id=1&dtm_cookies_enabled=true&data_object_type_code=0&canonical_url=https%3A%2F%2Fepson.com%2Fusa&dtmc_ref=https%3A%2F%2Fepson.com%2F&cli_promo_id=1&cmps_queried=true&dtm_paapi=1
Warning::
External script from tiny.superpinkday.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://tiny.superpinkday.com/ct?id=26862&url=https%3A%2F%2Fepson.com%2Fusa&sf=0&tpi=&ch=cheq4ppc&uvid=&tsf=0&tsfmi=&tsfu=&cb=1776889232341&hl=2&op=0&ag=2751926566&rand=63965128104210818111905108751591535278852887000616765720218950625882212002036040207122122616&fs=780x441&fst=780x441&np=linux%20x86_64&nv=google%20inc.&ref=https%3A%2F%2Fepson.com%2F&ss=800x600&nc=0&at=&di=W1siZWYiLDU0NzBdLFstOCwiLSJdLFstMzgsImksLTEsLTEsMywwLDAsMCwwLDAsMjQxLC0xLDAsNjI0LDYyNCwyMzU4LDIzNTkiXSxbLTIsIjUsU2NqQVJJQ0NSQUNETW9Bc3BsY0VSd1pGQ3ZLRGpnZ0NDRElBaUNRUVducTlmcmdCZEVVUVFCRmErQ0UxZFJISkFaQkFreXoyUTZTVTdPT1h2bzdwcmViL1hlKzJRbkJFVGYvYiJdLFstMywiW1wiaW50ZXJuYWwtcGRmLXZpZXdlclwiLFwiaW50ZXJuYWwtcGRmLXZpZXdlclwiLFwiaW50ZXJuYWwtcGRmLXZpZXdlclwiLFwiaW50ZXJuYWwtcGRmLXZpZXdlclwiLFwiaW50ZXJuYWwtcGRmLXZpZXdlclwiXSJdLFstNiwie1wid1wiOltcIjBcIixcImExXzB4YjM5YlwiLFwiYTFfMHgyMmVlXCIsXCJyZWVzZTg0XCIsXCJyZWVzZTg0aW50ZXJyb2dhdG9yY29uc3RydWN0b3JcIixcImluaXRpYWxpemVQcm90ZWN0aW9uXCIsXCJyZWVzZVNjcmlwdExvYWRDb3VudFwiLFwicHJvdGVjdGlvblN1Ym1pdENhcHRjaGFcIixcImVcIixcInZpc2l0b3JcIixcImdldENvb2tpZVwiLFwiYWRvYmVcIixcIlZpc2l0b3JcIixcInNfY19pbFwiLFwic19jX2luXCIsXCJ0YXJnZXRQYWdlUGFyYW1zXCIsXCJfX3RhcmdldF90ZWxlbWV0cnlcIixcIl9fX3RhcmdldF90cmFjZXNcIixcIm1ib3hDcmVhdGVcIixcIm1ib3hEZWZpbmVcIixcIm1ib3hVcGRhdGVcIixcInR0TUVUQVwiLFwicHJvdGVjdGlvbkxvYWRlZFwiLFwidXRhZ19kYXRhXCIsXCJtZWRpYXRvclwiLFwiQUNDXCIsXCJfdXhhXCIsXCJ1dGFnX2NvbmRsb2FkXCIsXCJ0ZWFsQ29va2llVmFsXCIsXCJjb25zZW50VmFsXCIsXCJ0ZWFsaXVtQ29va2llRXhwaXJlRGF0YVwiLFwiaXNfc3RhbmRhbG9uZVwiLFwicmVmZXJyZXJcIixcImlzX2Vwc29uX2RvbWFpblwiLFwiY2hlY2tFeGlzdFwiLFwib25lVHJ1c3RTY3JpcHRcIixcInV0YWdcIixcImhhc0xvYWRSdWxlTWF0Y2hcIixcImhhc0V4ZW1wdGlvbk1hdGNoXCIsXCJnZXRSb290RG9tYWluXCIsXCJPcHRhbm9uV3JhcHBlclwiLFwiX190ZWFsaXVtX3R3Y19zd2l0Y2hcIixcIl9zYXRlbGxpdGVcIixcInRlYWxpdW1DbXBJbnRlZ3JhdGlvblwiLFwidGVhbGl1bUNvbnNlbnRSZWdpc3RlclwiLFwidXRhZ19jZmdfb3ZyZFwiLFwiZ3RhZ1JlbmFtZVwiLFwiZGF0YUxheWVyXCIsXCJndGFnXCIsXCJzY3JlZW5Yc1wiXSxcIm5cIjpbXCJzYXlzd2hvXCJdLFwiZFwiOltdfSJdLFstMTMsIi0iXSxbLTMyLCIwIl0sWy0zOSwiW1wiMjAwMzAxMDdcIiwyLFwiR2Vja29cIixcIk5ldHNjYXBlXCIsXCJNb3ppbGxhXCIsbnVsbCxudWxsLHRydWUsNCxmYWxzZSxudWxsLDUsdHJ1ZSx0cnVlLG51bGwsMCx0cnVlLHRydWUsZmFsc2UsdHJ1ZV0iXSxbLTQ1LCI2MjAsMCwwLDAsMCwwLDAsMCw2NDgsMCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwwIl0sWy01OCwiLSJdLFstNjQsIlswLFwiTGludXhcIixbe1wiYlwiOlwiTm90LUEuQnJhbmRcIixcInZcIjpcIjI0XCJ9LHtcImJcIjpcIkNocm9taXVtXCIsXCJ2XCI6XCIxNDZcIn1dXSJdLFstNzEsImEwMTEwMDEwMTAwMTAwMTAxMDAwMTAxMDAxMTExMTAxMDAwMDEwIl0sWy00LCItIl0sWy0xNCwiLSJdLFstMTUsIi0iXSxbLTIxLCItIl0sWy0yNCwiW1wic2F5c3dob1wiLDAsXCJDaHJvbWUgMTQ2XCIsMSwxXSJdLFstMzEsInRydWUiXSxbLTQzLCIwMDAwMDAwMTAxMDAwMDAxMDAxMTEwMTEwMTEwMTEwMTAwMDAwMTAxMTAxIl0sWy00NCwiMCwwLDAsNSJdLFstNDYsIjAiXSxbLTUwLCItIl0sWy01MywiMDAxIl0sWy02NywiLSJdLFstNzAsIi0iXSxbLTM1LCJbMTc3Njg4OTIzMjI0MSwwXSJdLFstMzYsIltcIjQvM1wiLFwiNC8zXCJdIl0sWy01NCwie1wiaFwiOltcIl8zXCIsXCJlblwiLFwiXzFcIixcIm10aS1pbmFjdGl2ZVwiXSxcImRcIjpbXCJfMVwiLFwiYXQtZWxlbWVudC1tYXJrZXJcIl0sXCJiXCI6W1wiZGF0YS1zY2FsZXItY291bnRyeS1lbGlnaWJpbGl0eVwiLFwidHJ1ZVwiXSxcInNcIjowfSJdLFstNTksImRlZmF1bHQiXSxbLTY2LCJnZW9sb2NhdGlvbixjaHVhZnVsbHZlcnNpb25saXN0LGNyb3Nzb3JpZ2luaXNvbGF0ZWQsc2NyZWVud2FrZWxvY2ssb25kZXZpY2VzcGVlY2hyZWNvZ25pdGlvbix0cmFuc2xhdG9yLHB1YmxpY2tleWNyZWRlbnRpYWxzZ2V0LHNoYXJlZHN0b3JhZ2VzZWxlY3R1cmwsY2h1YWFyY2gsY29tcHV0ZXByZXNzdXJlLGNocHJlZmVyc3JlZHVjZWR0cmFuc3BhcmVuY3ksZGVmZXJyZWRmZXRjaCx1c2IsY2hzYXZlZGF0YSxwdWJsaWNrZXljcmVkZW50aWFsc2NyZWF0ZSxzaGFyZWRzdG9yYWdlLGRlZmVycmVkZmV0Y2htaW5pbWFsLHJ1bmFkYXVjdGlvbixjaGRvd25saW5rLGNodWFmb3JtZmFjdG9ycyxvdHBjcmVkZW50aWFscyxwYXltZW50LGNodWEsY2h1YW1vZGVsLGNoZWN0LGF1dG9wbGF5LGNhbWVyYSxsYW5ndWFnZWRldGVjdG9yLHByaXZhdGVzdGF0ZXRva2VuaXNzdWFuY2UsZGlnaXRhbGNyZWRlbnRpYWxzZ2V0LGFjY2VsZXJvbWV0ZXIsY2h1YXBsYXRmb3JtdmVyc2lvbixpZGxlZGV0ZWN0aW9uLHByaXZhdGVhZ2dyZWdhdGlvbixpbnRlcmVzdGNvaG9ydCxjaHZpZXdwb3J0aGVpZ2h0LGNhcHR1cmVkc3VyZmFjZWNvbnRyb2wsbG9jYWxmb250cyxjaHVhcGxhdGZvcm0sbWlkaSxjaHVhZnVsbHZlcnNpb24seHJzcGF0aWFsdHJhY2tpbmcsY2xpcGJvYXJkcmVhZCxnYW1lcGFkLGRpc3BsYXljYXB0dXJlLGtleWJvYXJkbWFwLGpvaW5hZGludGVyZXN0Z3JvdXAsYXJpYW5vdGlmeSxsb2NhbG5ldHdvcmssY2h1YWhpZ2hlbnRyb3B5dmFsdWVzLGNod2lkdGgsY2hwcmVmZXJzcmVkdWNlZG1vdGlvbixicm93c2luZ3RvcGljcyxlbmNyeXB0ZWRtZWRpYSxsb2NhbG5ldHdvcmthY2Nlc3MsZ3lyb3Njb3BlLHNlcmlhbCxjaHJ0dCxjaHVhbW9iaWxlLHdpbmRvd21hbmFnZW1lbnQsdW5sb2FkLGNoZHByLGNocHJlZmVyc2NvbG9yc2NoZW1lLGNodWF3b3c2NCxhdHRyaWJ1dGlvbnJlcG9ydGluZyxmdWxsc2NyZWVuLGlkZW50aXR5Y3JlZGVudGlhbHNnZXQscHJpdmF0ZXN0YXRldG9rZW5yZWRlbXB0aW9uLGhpZCxzdW1tYXJpemVyLGNodWFiaXRuZXNzLHN0b3JhZ2VhY2Nlc3Msc3luY3hocixjaGRldmljZW1lbW9yeSxjaHZpZXdwb3J0d2lkdGgscGljdHVyZWlucGljdHVyZSxtYWduZXRvbWV0ZXIsbG9vcGJhY2tuZXR3b3JrLGNsaXBib2FyZHdyaXRlLG1pY3JvcGhvbmUiXSxbLTEsIi0iXSxbLTcsIi0iXSxbLTIyLCJbXCJuXCIsXCJuXCJdIl0sWy0yOCwiZW4tVVMsZW4iXSxbLTMwLCJbXCJ2XCIsMF0iXSxbLTM3LCItMTA5LTY2LTcwLSJdLFstNDAsIjMzIl0sWy00MSwiLSJdLFstNTEsIi0iXSxbLTYxLCJ7XCJ3Z3NsXCI6XCI4O3BhY2tlZF80eDhfaW50ZWdlcl9kb3RfcHJvZHVjdDtzdWJncm91cF91bmlmb3JtaXR5O3N1Ymdyb3VwX2lkO3JlYWRvbmx5X2FuZF9yZWFkd3JpdGVfc3RvcmFnZV90ZXh0dXJlczt1bnJlc3RyaWN0ZWRfcG9pbnRlcl9wYXJhbWV0ZXJzO3BvaW50ZXJfY29tcG9zaXRlX2FjY2Vzczt0ZXh0dXJlX2FuZF9zYW1wbGVyX2xldDt1bmlmb3JtX2J1ZmZlcl9zdGFuZGFyZF9sYXlvdXQ7XCIsXCJwY2ZcIjpcInJnYmE4dW5vcm1cIn0iXSxbLTc0LCIwLDAiXSxbLTExLCJ7XCJ0XCI6XCJcIixcIm1cIjpbXCJrZXl3b3Jkc1wiLFwiZGVzY3JpcHRpb25cIixcInRpdGxlXCJdfSJdLFstMTcsIjQiXSxbLTI5LCItIl0sWy00MiwiODgzMzk5MDE2Il0sWy00NywiVVRDLGVuLVVTLGxhdG4sZ3JlZ29yeSJdLFstNTcsIldFMFplRXRMV0VBWGZGd1pFVkZOVFVsS0F4WVdVVXhlWEJkS1RFbGNTMGxRVjFKZFdFQVhXbFpVRmxBV0Nsd05BUXNQQVFnT1hWcFlDbHNNWHd4YUFBc1BDbDFhRHdvQVdna09ERndYVTBvRENBTVBDQTBMRFJBVldFMFpTeGtSVVUxTlNVb0RGaFpSVEY1Y0YwcE1TVnhMU1ZCWFVsMVlRQmRhVmxRV1VCWUtYQTBCQ3c4QkNBNWRXbGdLV3d4ZkRGb0FDdzhLWFZvUENnQmFDUTRNWEJkVFNnTUlBdzhQRGdBUEVBPT0iXSxbLTUsIi0iXSxbLTksIisiXSxbLTEwLCItIl0sWy0xOSwiWzEwLDEwLDEwLDEwLDAsMCwxLDI0LDI0LFwiLVwiLDgwMCw2MDAsODAwLDYwMCw3ODAsNTgwLDc4MCw0NDEsMCwwLDAsMCxcIi1cIixcIi1cIiw3ODAsNDQxLDBdIl0sWy02OCwiLSJdLFsxMiwie1wiZVwiOjAsXCJ3Z2xcIjoxfSJdLFstMzQsIi0iXSxbLTU1LCIxIl0sWy01NiwibGFuZHNjYXBlLXByaW1hcnkiXSxbLTczLCJFaFE9Il0sWy0xMiwibnVsbCJdLFstMjAsIjU4MDUyMTg4NC4xNzc2ODg5MjMwIl0sWy0yMywiKyJdLFstNDgsIltcIi1cIixcIi1cIixcIi1cIixcIi1cIixcIi1cIl0iXSxbLTYwLDIwN10sWy02MiwiODAiXSxbLTE2LCIwIl0sWy0yNSwiLSJdLFstMjYsIntcInRqaHNcIjo3MDg5MDc5MixcInVqaHNcIjo0MjQyNjE4NCxcImpoc2xcIjoyMTU2NjU4Njg4fSJdLFstMjcsIlswLDEwLDAsXCI0Z1wiLG51bGxdIl0sWy00OSwiLSJdLFstNTIsIi0iXSxbLTYzLCIwIl0sWy02OSwiTGludXggeDg2XzY0fEdvb2dsZSBJbmMufDR8NHxMaW51eHwwIl0sWy03MiwiRXhVPSJdLFstNzUsInt9LnNvbWVGdW5jIGlzIG5vdCBhIGZ1bmN0aW9uIl0sWyJibmNoIiwxMjFdLFstMTgsIlswLDAsMCwxXSJdLFstMzMsIi0iXSxbLTY1LCItIl0sWyJhYm5jaCIsMTk4XSxbImRkYiIsIjAsNiwwLDAsMSwxLDAsMCwwLDAsMSwwLDEsMCwyLDEsMCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwxLDAsMCwwLDAsMSwwLDEsMiwxNywwLDAsMCwxLDAsMCwwLDAsMCwwLDAsMSwxLDAsMCwwLDAsMCwwLDAsMSwwLDAsMCwxLDAsMCwwLDAsMCJdLFsiY2IiLCIwLDAsMCwwLDAsMCwwLDIsMCwxLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwxLDIsMCwwLDAsMCwwLDAsMCwwLDAsMSwwLDEsMCwwLDAsMCwwLDAsMCwxLDEsMCwwLDAsMCwxLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAsMSwwLDAsNCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwxLDAsMCwxLDAiXV0%3D&dep=0&pre=0&sdd=&cri=5LfiP9MKYh&pto=2499&ver=65&gac=580521884.1776889230&mei=&ap=&fe=1&duid=1.1776889232.SiTAX3oVndqiaVaT&suid=1.1776889232.ZKoYkwiQkcPs0FxI&tuid=1.1776889232.NkswaH23aKPTcn1p&sid=1.1776889232345.54i0ghGVF539mRY2&fbc=1776889231668.609507970602746792.Bg&gtm=WyJPbmVUcnVzdExvYWRlZCIsIk9wdGFub25Mb2FkZWQiLCJPbmVUcnVzdEdyb3Vwc1VwZGF0ZWQiLCJwYWdlX3ZpZXciLCJzY3JvbGxfbWlsZXN0b25lIiwiY29udmVyc2lvbiIsIkRlbWFuZGJhc2VfTG9hZGVkIl0%3D&it=274&fbcl=-&gacl=-&gacsd=-&rtic=-&rtict=-&bgc=-&spa=1&urid=0&ab=&sck=-&io=aGA2Og%3D%3D
Warning::
External script from pi.pardot.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://pi.pardot.com/analytics?ver=3&visitor_id=&visitor_id_sign=&pi_opt_in=&campaign_id=1231&account_id=408272&title=Homepage%20%7C%20Epson%20US&url=https%3A%2F%2Fepson.com%2Fusa&referrer=https%3A%2F%2Fepson.com%2F
Warning::
External script from cdnssl.clicktale.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdnssl.clicktale.net/ptc/7ec0b3fc-21b0-421f-b51c-29af20d8f5a4.js
Warning::
External script from bat.bing.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://bat.bing.com/p/action/4021794.js
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/epson/northamerica/prod/utag.497.js?utv=ut4.51.202604201846
Warning::
External script from visitor-service-us-east-1.tealiumiq.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://visitor-service-us-east-1.tealiumiq.com/epson/northamerica/019db6d9f216001ece0ce7055c3c0506d001206500590?callback=utag.ut%5B%22writevanorthamerica%22%5D&rnd=1776889232672
Warning::
External script from googleads.g.doubleclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://googleads.g.doubleclick.net/pagead/viewthroughconversion/1035526826/?random=1776889232704&cv=11&fst=1776889232704&bg=ffffff&guid=ON&async=1&en=gtag.config&gtm=45be64k0v872020656za200zb895589026zd895589026xec&gcd=13l3l3l3l1l1&dma=0&tag_exp=0~115938466~115938468~117266401&u_w=800&u_h=600&url=https%3A%2F%2Fepson.com%2Fusa&ref=https%3A%2F%2Fepson.com%2F&rcb=0&frm=0&tiba=Homepage%20%7C%20Epson%20US&did=dYWJhMj%2CdYmQxMT&gdid=dYWJhMj.dYmQxMT&hn=www.googleadservices.com&npa=0&pscdl=noapi&auid=1143590593.1776889233&uaa=x86&uab=64&uafvl=Not-A.Brand%3B24.0.0.0%7CChromium%3B146.0.7680.164&uamb=0&uam=&uap=Linux&uapv=&uaw=0&data=event%3Dgtag.config&rfmt=3&fmt=4
Warning::
External script from googleads.g.doubleclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://googleads.g.doubleclick.net/pagead/viewthroughconversion/1035526826/?random=1776889232773&cv=11&fst=1776889232773&bg=ffffff&guid=ON&async=1&en=page_view&gtm=45be64k0v872020656za200zb895589026zd895589026xec&gcd=13l3l3l3l1l1&dma=0&tag_exp=0~115938466~115938468~117266401&u_w=800&u_h=600&url=https%3A%2F%2Fepson.com%2Fusa&ref=https%3A%2F%2Fepson.com%2F&rcb=0&frm=0&tiba=Homepage%20%7C%20Epson%20US&did=dYWJhMj%2CdYmQxMT&gdid=dYWJhMj.dYmQxMT&hn=www.googleadservices.com&npa=0&pscdl=noapi&auid=1143590593.1776889233&uaa=x86&uab=64&uafvl=Not-A.Brand%3B24.0.0.0%7CChromium%3B146.0.7680.164&uamb=0&uam=&uap=Linux&uapv=&uaw=0&data=event%3Dpage_view&rfmt=3&fmt=4
Warning::
External script from login-ds.dotomi.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://login-ds.dotomi.com/profile/visit/final/js?dtm_token_dc=AQADfAk3gAt7nQFb6HyaAQELPQABAQCct9j8NwEBAJy32Pw3&dtm_form_uid=179308590617900513&dtm_token_ls=AQADfAk3gAt7nQFb6HyaAQELPQABAQCct9j8NwEBAJy32Pw3&cachebuster=7265135380516661&tcflag=true&dtmc_loc=https%3A%2F%2Fepson.com%2Fusa&dtm_token_assignment_type=0&dtm_cid=2620&dtm_fid=108&dtm_zip_code=07094&dtm_user_dc=ric&dtm_id_assgn_type=0&dtm_state=NJ&dccu=true&dtm_user_agent=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20HeadlessChrome%2F146.0.0.0%20Safari%2F537.36&dtm_country_code=US&init_wl_code=3&ops_test_camp=false&dtmc_tms=1&dtm_dma_code=501&dtm_cmagic=8bd39e&dtm_token_ss=AQADfAk3gAt7nQFb6HyaAQELPQABAQCct9j8NwEBAJy32Pw3&init_ts=1776889232694&dtm_client_optout=false&wl_domains_key=epson.com&dtm_promo_id=9&dtm_cookies_enabled=true&data_object_type_code=0&canonical_url=https%3A%2F%2Fepson.com%2Fusa&dtmc_ref=https%3A%2F%2Fepson.com%2F&cli_promo_id=9&cmps_queried=true&dtm_paapi=1
Warning::
External script from visitor-service-us-east-1.tealiumiq.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://visitor-service-us-east-1.tealiumiq.com/epson/northamerica/019db6d9f216001ece0ce7055c3c0506d001206500590?callback=utag.ut%5B%22writevanorthamerica%22%5D&rnd=1776889233095
Warning::
External script from login-ds.dotomi.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://login-ds.dotomi.com/profile/visit/final/js?dtm_token_dc=AQAHZy7Q_exWXwEJHbyzAQELPQABAQCct9j7nwEBAJy32Puf&dtm_form_uid=913508590692855219&dtm_token_ls=AQAHZy7Q_exWXwEJHbyzAQELPQABAQCct9j7nwEBAJy32Puf&cachebuster=2256433498410014&tcflag=true&dtmc_loc=https%3A%2F%2Fepson.com%2Fusa&dtm_token_assignment_type=1&dtm_cid=2620&dtm_fid=108&dtm_zip_code=07094&dtm_user_dc=ric&dtm_id_assgn_type=1&dtm_state=NJ&dtm_user_agent=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20HeadlessChrome%2F146.0.0.0%20Safari%2F537.36&dtm_country_code=US&init_wl_code=3&ops_test_camp=false&dtmc_tms=1&dtm_dma_code=501&dtm_cmagic=8bd39e&dtm_token_ss=AQAHZy7Q_exWXwEJHbyzAQELPQABAQCct9j7nwEBAJy32Puf&init_ts=1776889233107&dtm_client_optout=false&wl_domains_key=epson.com&dtm_promo_id=9&dtm_cookies_enabled=true&data_object_type_code=0&canonical_url=https%3A%2F%2Fepson.com%2Fusa&dtmc_ref=https%3A%2F%2Fepson.com%2F&dtm_token_sc=AQAHZy7Q_exWXwEJHbyzAQELPQABAQCct9j7nwEBAJy32P_S&dtm_sync=0%2420565%2420565%2441440-0%239253738-0%2317100-0%2315900-0%2374572-0%2319998-0%231982-0%2312783-0%23&dtm_consent_ls=UNSPECIFIED&dtm_consent_ss=UNSPECIFIED&dtm_consent_dc=UNSPECIFIED&dtm_consent=UNSPECIFIED&cli_promo_id=9&cmps_queried=true&dtm_paapi=1
Warning::
External script from forms.goepson.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://forms.goepson.com/analytics?conly=true&visitor_id=1256050593&visitor_id_sign=82ae0f51af95d8568ced4b9faa9086975b3f44b2fef69393a50b6fa7450d0575571fb26a5b55c853e349b337f84a96ae65cfb56f&pi_opt_in=&campaign_id=1231&account_id=408272&title=Homepage%20%7C%20Epson%20US&url=https%3A%2F%2Fepson.com%2Fusa&referrer=https%3A%2F%2Fepson.com%2F
Warning::
External script from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //www.google.com/recaptcha/api.js?render=explicit&hl=en
Warning::
External script from fast.fonts.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //fast.fonts.net/jsapi/0ff7458e-e5e6-4a86-a2b0-19ba3a16ee27.js
Warning::
External script from cdn.jsdelivr.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.jsdelivr.net/momentjs/latest/moment.min.js
Warning::
External script from cdn.jsdelivr.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.min.js
Warning::
External script from cdnjs.cloudflare.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.3/js/intlTelInput.js
Warning::
External script from cdnjs.cloudflare.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js
Warning::
External script from cdnssl.clicktale.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdnssl.clicktale.net/pcc/7ec0b3fc-21b0-421f-b51c-29af20d8f5a4.js?DeploymentConfigName=main&Version=1
Warning::
External script from cdnssl.clicktale.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdnssl.clicktale.net/www/bridge-WR110.js
Warning::
External script from js.zi-scripts.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.zi-scripts.com/zi-tag.js
SRI Coverage 1 / 84 of external resources have integrity hashes
TagDomainIntegrity
<script>analytics.tiktok.com Missing
<script>analytics.tiktok.com Missing
<script>www.googletagmanager.com Missing
<script>www.googletagmanager.com Missing
<script>www.googletagmanager.com Missing
<script>c.amazon-adsystem.com Missing
<script>js.cnnx.link Missing
<script>analytics.tiktok.com Missing
<script>bat.bing.com Missing
<script>cdn.pricespider.com Missing
<script>www.mczbf.com Missing
<script>s.yimg.com Missing
<script>pi.pardot.com Missing
<script>snap.licdn.com Missing
<script>cdnssl.clicktale.net Missing
<script>static.ads-twitter.com Missing
<script>connect.facebook.net Missing
<script>connect.facebook.net Missing
<script>huge.superpinkday.com Missing
<script>scripts.demandbase.com Missing
<script>unpkg.com Missing
<script>www.googletagmanager.com Missing
<script>www.gstatic.com Protected
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<link>fonts.googleapis.com Missing
<link>cdn.jsdelivr.net Missing
<link>cdn.jsdelivr.net Missing
<script>cdn.cookielaw.org Missing
<script>cdn.cookielaw.org Missing
<script>fast.fonts.net Missing
<link>fast.fonts.net Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>platform.twitter.com Missing
<script>visitor-service-us-east-1.tealiumiq.com Missing
<script>login-ds.dotomi.com Missing
<script>login-ds.dotomi.com Missing
<script>tiny.superpinkday.com Missing
<script>pi.pardot.com Missing
<script>cdnssl.clicktale.net Missing
<script>bat.bing.com Missing
<script>tags.tiqcdn.com Missing
<script>visitor-service-us-east-1.tealiumiq.com Missing
<script>googleads.g.doubleclick.net Missing
<script>googleads.g.doubleclick.net Missing
<script>login-ds.dotomi.com Missing
<script>visitor-service-us-east-1.tealiumiq.com Missing
<script>login-ds.dotomi.com Missing
<script>forms.goepson.com Missing
<script>www.google.com Missing
<script>fast.fonts.net Missing
<script>cdn.jsdelivr.net Missing
<script>cdn.jsdelivr.net Missing
<script>cdnjs.cloudflare.com Missing
<script>cdnjs.cloudflare.com Missing
<script>cdnssl.clicktale.net Missing
<script>cdnssl.clicktale.net Missing
<script>js.zi-scripts.com Missing
D
Email Security
Action
DMARC: none
FIX
DMARC: none
Warning::
DMARC policy is none — monitoring only
This only monitors, it doesn't block spoofed emails. Change to p=quarantine or p=reject.
DMARC
Policy none — monitoring only, does not block spoofing Record v=DMARC1; p=none; rua=mailto:dmarc_rua@emaildefense.proofpoint.com; ruf=mailto:dmarc_ruf@emaildefense.proofpoint.com; fo=1

This only monitors, it doesn't block spoofed emails. Change to p=quarantine or p=reject.

Why this matters

DMARC p=none collects reports but doesn't actually block spoofed mail — phishing emails still reach inboxes.

Learn more

DMARC's three policies are p=none (monitor only), p=quarantine (mark as spam), and p=reject (bounce). Most domains start at p=none to gather data, but stay there forever, leaving spoofers unblocked. After 30 days of clean DMARC reports, graduate to p=quarantine, then p=reject.

Source: DMARC.org / NIST

D
Permissions-Policy
Action
No header set
FIX
No header set
Warning::
No Permissions-Policy header
Consider adding a Permissions-Policy header to restrict browser feature access from embedded content.

No Permissions-Policy header set.

Without this header, embedded iframes can request access to sensitive device features.

Suggested header
Permissions-Policy: camera=(), microphone=(), geolocation=(), payment=(), usb=()
D
security.txt
Action
No /.well-known/security.txt published
FIX

security.txt

No security.txt found at /.well-known/security.txt

B
CORS Configuration
No CORS headers
REVIEW
No CORS headers
Info::
No CORS headers present — secure default
CORS Configuration Secure

No CORS headers detected.

Cross-origin requests are blocked by browser same-origin policy.

Origin reflection test

Some servers mirror the request Origin header, which can be exploited. Test manually:

curl -sI -H "Origin: https://evil.com" <url> | grep -i access-control
C
Known vulnerability matches
Action
3 known vulnerability match(es) against detected tech
REVIEW

Known Vulnerabilities

LibraryVersionSeveritySummaryFixed In
Moment.js2.18.1highRegular Expression Denial of Service (ReDoS)2.19.3
Moment.js2.18.1highThis vulnerability impacts npm (server) users of moment.js, especially if user provided locale string, eg fr is directly used to switch moment locale.2.29.2
Moment.js2.18.1highRegular Expression Denial of Service (ReDoS), Affecting moment package, versions >=2.18.0 <2.29.42.29.4
B
Transport Security
HTTP/3, HSTS, and TLS version analysis
REVIEW
HTTP/3, HSTS, and TLS version analysis
Info::
HTTP/3 (QUIC) not advertised
HTTP/3 eliminates head-of-line blocking. If your CDN supports it, consider enabling it.
Warning::
HSTS max-age is short: 182 days
HSTS max-age should be at least 1 year (31536000 seconds).
Got: max-age=15724800 (expected 31536000)
Info::
HSTS missing includeSubDomains
Without includeSubDomains, HSTS only protects the exact domain.
Info::
TLS 1.3 in use (fastest handshake, 1-RTT)
A+
TLS & Certificates
TLS 1.3, 7 checks passed
PASS
TLS 1.3, 7 checks passed
Info::
TLS 1.3 is used
Got: TLS 1.3
Info::
Strong cipher suite is used
Got: TLS_AES_128_GCM_SHA256
Info::
HTTP/2 is not negotiated
HTTP/2 provides multiplexing and header compression for better performance.
Got: http/1.1
Info::
Certificate is valid (expires in 72 days)
Got: 2026-07-03T23:59:59Z
Info::
Certificate chain has 2 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 61 domain(s)
Got: epson.com, epson.ca, epson.cl, epson.co.cr, epson.com.ar, epson.com.bo, epson.com.br, epson.com.co, epson.com.cw, epson.com.do, epson.com.ec, epson.com.gt, epson.com.hn, epson.com.jm, epson.com.mx, epson.com.ni, epson.com.pa, epson.com.pe, epson.com.pr, epson.com.py, epson.com.sv, epson.com.tt, epson.com.uy, epson.com.ve, global.latin.epson.com, latin.epson.com, mediaserver.goepson.com, pos.epson.com, redirect.epson.com, robots.epson.com, support.epson.com, www.epson.ca, www.epson.cl, www.epson.co.cr, www.epson.com.ar, www.epson.com.bo, www.epson.com.br, www.epson.com.co, www.epson.com.cw, www.epson.com.do, www.epson.com.ec, www.epson.com.gt, www.epson.com.hn, www.epson.com.jm, www.epson.com.mx, www.epson.com.ni, www.epson.com.pa, www.epson.com.pe, www.epson.com.pr, www.epson.com.py, www.epson.com.sv, www.epson.com.tt, www.epson.com.uy, www.epson.com.ve, www.global.latin.epson.com, www.latin.epson.com, www.pos.epson.com, www.redirect.epson.com, www.robots.epson.com, www.support.epson.com, www.epson.com
Info::
Certificate is issued by a trusted CA
Got: CN=GeoTrust TLS RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US

HTTP/2 provides multiplexing and header compression for better performance.

Why this matters

HTTP/1.1 forces the browser to make sequential requests, multiplying latency on every page.

Learn more

HTTP/2 (and HTTP/3) multiplex many requests over a single connection, eliminating head-of-line blocking. HTTP/1.1 forces the browser to either queue requests or open many parallel connections — both worse. Most modern web servers support HTTP/2 with one config line.

Source: MDN Web Docs

Connection
Protocol
TLS 1.3
Cipher Suite
TLS_AES_128_GCM_SHA256
HTTP Version
HTTP/1.1

Certificate Chain

Leaf Certificate
Subject CN=epson.com,O=Seiko Epson Corporation,L=Suwa,ST=Nagano,C=JPIssuer CN=GeoTrust TLS RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=USValid 2025-06-02T00:00:00Z → 2026-07-03T23:59:59ZExpires in 72 days SANs epson.com, epson.ca, epson.cl, epson.co.cr, epson.com.ar, epson.com.bo, epson.com.br, epson.com.co, epson.com.cw, epson.com.do, epson.com.ec, epson.com.gt, epson.com.hn, epson.com.jm, epson.com.mx, epson.com.ni, epson.com.pa, epson.com.pe, epson.com.pr, epson.com.py, epson.com.sv, epson.com.tt, epson.com.uy, epson.com.ve, global.latin.epson.com, latin.epson.com, mediaserver.goepson.com, pos.epson.com, redirect.epson.com, robots.epson.com, support.epson.com, www.epson.ca, www.epson.cl, www.epson.co.cr, www.epson.com.ar, www.epson.com.bo, www.epson.com.br, www.epson.com.co, www.epson.com.cw, www.epson.com.do, www.epson.com.ec, www.epson.com.gt, www.epson.com.hn, www.epson.com.jm, www.epson.com.mx, www.epson.com.ni, www.epson.com.pa, www.epson.com.pe, www.epson.com.pr, www.epson.com.py, www.epson.com.sv, www.epson.com.tt, www.epson.com.uy, www.epson.com.ve, www.global.latin.epson.com, www.latin.epson.com, www.pos.epson.com, www.redirect.epson.com, www.robots.epson.com, www.support.epson.com, www.epson.comSignature SHA256-RSASerial 38b6eba4c71bf3390bd431ac64630f1
Intermediate (CA Certificate)
Subject CN=GeoTrust TLS RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=USIssuer CN=DigiCert Global Root G2,OU=www.digicert.com,O=DigiCert Inc,C=USValid 2017-11-02T12:23:37Z → 2027-11-02T12:23:37ZExpires in 558 days Signature SHA256-RSASerial d07782a133fc6f9a57296e131ffd179
A+
JS Library Vulnerabilities
No known vulnerabilities
PASS
No known vulnerabilities
Info::
No known JavaScript library vulnerabilities detected

No known JavaScript library vulnerabilities detected.

A+
Information Leakage
No exposures
PASS
No exposures
Info::
No security.txt found
Consider adding a security.txt at /.well-known/security.txt.
Info::
No sensitive files exposed

No sensitive files exposed — all paths returned 404.

PathStatusCategoryRisk
/.git/HEAD Not foundVersion Control
/.git/config Not foundVersion Control
/.svn/entries Not foundVersion Control
/.env Not foundConfiguration
/.env.local Not foundConfiguration
/.env.production Not foundConfiguration
/wp-config.php Not foundConfiguration
/.htaccess Not foundConfiguration
/phpinfo.php Not foundDebug
/server-status Not foundDebug
/server-info Not foundDebug
/.well-known/security.txt Not foundSecurity Policy
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback