Skip to content
https://premiumtimesng.com

Security

· 13 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
64
GRADE
D
FIX
5
REVIEW
3
PASS
5
INFO
0
Checks
13
5 PASS 3 REVIEW 5 FIX
F
Security Headers
Action
3 of 10 headers properly configured
FIX
3 of 10 headers properly configured
Info::
Strict-Transport-Security is properly configured
Got: max-age=31536000; includeSubDomains; preload
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: cloudflare

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

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
Subresource Integrity
Action
1 of 168 external resources have SRI
FIX
1 of 168 external resources have SRI
Warning::
External link from fonts.googleapis.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://fonts.googleapis.com/css?family=Archivo:400,500|Arimo:400,500|Bitter:400,500|EB+Garamond:400,500|Lato|Libre+Baskervill|Libre+Franklin:400,500|Lora:400,500|Google+Sans:regular,medium:400,500|Material+Icons|Google+Symbols|Merriweather|Montserrat:400,500|Mukta:400,500|Muli:400,500|Nunito:400,500|Open+Sans:400,500,600|Open+Sans+Condensed:400,600|Oswald:500|Playfair+Display:400,500|Poppins:400,500|Raleway:400,500|Roboto:400,500|Roboto+Condensed:400,500|Roboto+Slab:400,500|Slabo+27px|Source+Sans+Pro|Ubuntu:400,500|Volkhov&display=swap
Warning::
External script from cdn.cxense.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.cxense.com/cx.js
Warning::
External script from cdn.cxense.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.cxense.com/cx.cce.js
Warning::
External script from www.google-analytics.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google-analytics.com/analytics.js
Warning::
External script from scripts.clarity.ms lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://scripts.clarity.ms/0.8.60-beta/clarity.js
Warning::
External script from cse.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cse.google.com/adsense/search/async-ads.js
Warning::
External script from cse.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cse.google.com/adsense/search/async-ads.js
Warning::
External script from cse.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cse.google.com/adsense/search/async-ads.js
Warning::
External script from static.hotjar.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://static.hotjar.com/c/hotjar-3376846.js?sv=7
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=UA-27130985-1&cx=c&gtm=4e64k0
Warning::
External script from cdn.tinypass.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.tinypass.com/api/tinypass.min.js
Warning::
External script from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/cse.js?cx=10d7b6b79fbcf14e8
Warning::
External script from pagead2.googlesyndication.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://pagead2.googlesyndication.com/pagead/managed/js/adsense/m202604200101/show_ads_impl.js?bust=31097972
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/3101491863293537?v=next&r=stable&domain=www.premiumtimesng.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?v=next
Warning::
External script from chimpstatic.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://chimpstatic.com/mcjs-connected/js/users/39e0b38207e2e39e53e6c1694/b86f7b3486a06a25a32257a93.js
Warning::
External script from d3lcz8vpax4lo2.cloudfront.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://d3lcz8vpax4lo2.cloudfront.net/ads-code/1f1289ec-e842-4263-b192-c68682033ef5.js
Warning::
External script from sspjs.eskimi.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://sspjs.eskimi.com/esadt.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/gtm.js?id=GTM-TM3RRLW
Warning::
External script from connect.facebook.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //connect.facebook.net/en_US/fbds.js
Warning::
External script from www.clarity.ms lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.clarity.ms/tag/ovunxh47sn
Warning::
External script from www.googletagservices.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.googletagservices.com/tag/js/gpt.js
Warning::
External script from experience.piano.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //experience.piano.io/xbuilder/experience/load?aid=biSSsGu4pu
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/wp-google-search/wgs2.css?ver=6.9.4
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/css/dist/block-library/style.css?ver=6.9.4
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/jnews-essential/assets/css/faq.css?ver=12.0.3
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css?ver=4.2.17
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/js/mediaelement/wp-mediaelement.css?ver=6.9.4
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/jnews-video/assets/css/plugin.css?ver=12.0.1
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/ecwid-shopping-cart/css/frontend.css?ver=7.0.8
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/gn-publisher/assets/css/gn-frontend-gnfollow.css?ver=1.5.26
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/remp-tracking-and-upsert-plugin-release-premium-times-nigeria/public/css/remp-tracking-public.css?ver=1.6.6
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/remp-tracking-and-upsert-plugin-release-premium-times-nigeria/public/js/member-zone/index-Dp5srWGd.css?ver=1.6.6
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/ecwid-shopping-cart/css/integrations/elementor.css?ver=7.0.8
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/style.css?ver=6.9.4
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/js_composer/assets/css/js_composer.min.css?ver=8.6.1
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/elementor/assets/css/frontend.css?ver=3.34.2
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/ecwid-shopping-cart/css/products-list.css?ver=7.0.8
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/jetpack/modules/subscriptions/subscriptions.css?ver=15.4
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/tablepress/css/build/default.css?ver=3.2.6
Warning::
External link from media.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://media.premiumtimesng.com/wp-content/files/tablepress-custom.css?ver=38
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/heateor-social-comments/css/front.css?ver=1.6.3
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=Work+Sans%3Areguler&display=swap&ver=1.3.2
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/addthis-all/frontend/build/addthis_wordpress_public.min.css?ver=6.9.4
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.css?ver=4.7.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/fonts/jegicon/jegicon.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/css/jquery.jscrollpane.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/css/okayNav.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/css/magnific-popup.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/scripts-n-styles/vendor/chosen/chosen.min.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/css/main.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/css/responsive.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/css/pb-temp.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/css/js-composer-frontend.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/css/elementor-frontend.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/PTN_Newsite/style.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/css/darkmode.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/jnews-video/assets/css/darkmode.css?ver=12.0.1
Warning::
External script from beam-remp.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://beam-remp.premiumtimesng.com/assets/lib/js/remplib.js
Warning::
External script from campaign-remp.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://campaign-remp.premiumtimesng.com/assets/lib/js/remplib.js
Warning::
External script from www.npttech.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //www.npttech.com/advertising.js
Warning::
External script from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/static/element/dc329f57de078f5d/cse_element__en.js?usqp=CAM%3D
Warning::
External link from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/static/element/dc329f57de078f5d/default_v6+en.css
Warning::
External link from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/static/style/look/v6/default.css
Warning::
External script from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/static/element/dc329f57de078f5d/cse_element__en.js?usqp=CAM%3D
Warning::
External link from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/static/element/dc329f57de078f5d/default_v6+en.css
Warning::
External link from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/static/style/look/v6/default.css
Warning::
External script from cdn.pixfuture.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.pixfuture.com/hb_v2.js
Warning::
External script from campaign-remp.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://campaign-remp.premiumtimesng.com/vendor/campaign/showtime.php?data=%7B%22version%22%3A1%2C%22browserId%22%3A%22d84c91a5-a2fa-466b-83b1-74315001680a%22%2C%22language%22%3A%22en-US%22%2C%22url%22%3A%22https%3A%2F%2Fwww.premiumtimesng.com%2F%22%2C%22referer%22%3Anull%2C%22sessionReferer%22%3Anull%2C%22campaigns%22%3A%7B%7D%2C%22campaignsSession%22%3A%7B%7D%2C%22cache%22%3Anull%2C%22userAgent%22%3A%22Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20HeadlessChrome%2F147.0.0.0%20Safari%2F537.36%22%2C%22usingAdblock%22%3Afalse%7D&callback=rempcampaign_callback_json0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/js/twemoji.js?ver=6.9.4
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/js/wp-emoji.js?ver=6.9.4
Warning::
External script from cdn.onesignal.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.onesignal.com/sdks/OneSignalPageSDKES6.js?v=151607
Warning::
External script from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/static/element/dc329f57de078f5d/cse_element__en.js?usqp=CAM%3D
Warning::
External link from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/static/element/dc329f57de078f5d/default_v6+en.css
Warning::
External link from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/static/style/look/v6/default.css
Warning::
External script from securepubads.g.doubleclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202604160201/pubads_impl.js
Warning::
External script from securepubads.g.doubleclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://securepubads.g.doubleclick.net/tag/js/gpt.js
Warning::
External script from cdn.pixfuture.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.pixfuture.com/pbix.js
Warning::
External script from aa.agkn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://aa.agkn.com/adscores/r.js?sid=9112309848
Warning::
External script from fundingchoicesmessages.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://fundingchoicesmessages.google.com/i/ca-pub-7650359907253916?href=https%3A%2F%2Fwww.premiumtimesng.com&ers=2
Warning::
External script from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/static/element/dc329f57de078f5d/cse_element__en.js?usqp=CAM%3D
Warning::
External link from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/static/element/dc329f57de078f5d/default_v6+en.css
Warning::
External link from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/cse/static/style/look/v6/default.css
Warning::
External script from d3lcz8vpax4lo2.cloudfront.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //d3lcz8vpax4lo2.cloudfront.net/files/instibid/1f1289ec-e842-4263-b192-c68682033ef5/1ff78a91-59ce-4079-ad90-d27c14cb2870.js
Warning::
External script from d3lcz8vpax4lo2.cloudfront.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //d3lcz8vpax4lo2.cloudfront.net/header-tags/1f1289ec-e842-4263-b192-c68682033ef5/1ff78a91-59ce-4079-ad90-d27c14cb2870-hb.js
Warning::
External script from d3lcz8vpax4lo2.cloudfront.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //d3lcz8vpax4lo2.cloudfront.net/header-tags/1f1289ec-e842-4263-b192-c68682033ef5/1ff78a91-59ce-4079-ad90-d27c14cb2870-dmp.js
Warning::
External script from secure.adnxs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://secure.adnxs.com/seg?add=27578926%2C27578926&t=1
Warning::
External script from fundingchoicesmessages.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://fundingchoicesmessages.google.com/f/AGSKWxUZ82KDWFHIQK2a-fC5jLpqgI_4qzIEkLJCE4kdQsAkgDJGdEgSK23wWEAcFGV-fhUbZhE_83VC0iiodamX1-euJm8968XfqMl9fet3wUDWcb8NlH0UgqQoNyT1Aar0ENX8u7MysQ==?fccs=W251bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLFsxNzc2ODkyOTY2LDQ5NzAwMDAwMF0sbnVsbCxudWxsLG51bGwsW251bGwsWzddXSwiaHR0cHM6Ly93d3cucHJlbWl1bXRpbWVzbmcuY29tLyIsbnVsbCxbWzgsInBTSmtvMTk2SUgwIl0sWzksImVuLVVTIl0sWzE4LCJbW1tudWxsLDE5NzddXV0iXSxbMzUsIjE3NzY4OTI5NjYiXSxbMTksIjEiXSxbMTcsIlswXSJdLFsyNCwiIl0sWzI5LCJmYWxzZSJdXV0
Warning::
External link from onesignal.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://onesignal.com/sdks/OneSignalSDKStyles.css?v=2
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/tiny-slider/tiny-slider.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/css/slider/jnewsglobalslider.css?ver=1.0.0
Warning::
External script from cse.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cse.google.com/cse.js?cx=partner-pub-7650359907253916:4574482263
Warning::
External script from pagead2.googlesyndication.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
Warning::
External script from cse.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cse.google.com/cse.js?cx=partner-pub-7650359907253916:4574482263
Warning::
External script from pagead2.googlesyndication.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
Warning::
External script from served-by.pixfuture.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://served-by.pixfuture.com/www/delivery/headerbid.js
Warning::
External script from pagead2.googlesyndication.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
Warning::
External script from pagead2.googlesyndication.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
Warning::
External script from pagead2.googlesyndication.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/css/jnewshero.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/js_composer/assets/lib/vendor/dist/flexslider/flexslider.min.css?ver=8.6.1
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/js_composer/assets/lib/vendor/dist/lightbox2/dist/css/lightbox.min.css?ver=8.6.1
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/css/jnewsvidplaylist.css?ver=1.0.0
Warning::
External link from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/data/import/newspaper/scheme.css?ver=1.0.0
Warning::
External script from www.googletagmanager.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //www.googletagmanager.com/gtag/js?id=G-YGLHLMZJ9H
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/google-analytics-premium/assets/js/frontend-gtag.js?ver=1776892923
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/js/jquery/jquery.js?ver=3.7.1
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/remp-tracking-and-upsert-plugin-release-premium-times-nigeria/public/js/member-zone/index-BAoN_8Gi.js?ver=1.6.6
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/remp-tracking-and-upsert-plugin-release-premium-times-nigeria/public/js/remp-tracking-public.js?ver=1.6.6
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/js/jquery/ui/core.js?ver=1.13.3
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/ecwid-shopping-cart/js/products-list.js?ver=7.0.8
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=UA-27130985-1
Warning::
External script from securepubads.g.doubleclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://securepubads.g.doubleclick.net/tag/js/gpt.js
Warning::
External script from securepubads.g.doubleclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://securepubads.g.doubleclick.net/tag/js/gpt.js
Warning::
External script from securepubads.g.doubleclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://securepubads.g.doubleclick.net/tag/js/gpt.js
Warning::
External script from cdn.onesignal.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.onesignal.com/sdks/OneSignalSDK.js
Warning::
External script from cdn.pixfuture.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.pixfuture.com/pxft_iel.js?siteid=6723
Warning::
External script from pagead2.googlesyndication.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
Warning::
External script from www.googletagservices.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.googletagservices.com/tag/js/gpt.js
Warning::
External script from product.instiengage.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://product.instiengage.com/product-loader-code/1f1289ec-e842-4263-b192-c68682033ef5.js
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/tiny-slider/tiny-slider.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/tiny-slider/tiny-slider-noconflict.js?ver=1.0.0
Warning::
External script from cse.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cse.google.com/cse.js?cx=partner-pub-7650359907253916:4574482263
Warning::
External script from cdn.onthe.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.onthe.io/io.js/zpkds2g4fPr9
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 images.dmca.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://images.dmca.com/Badges/DMCABadgeHelper.min.js
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/wp-google-search/assets/js/google_cse_v2.js?ver=1
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/ecwid-shopping-cart/js/frontend.js?ver=7.0.8
Warning::
External script from members.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://members.premiumtimesng.com/modules/social-sign/build/js/fcAvatar.js?ver=1776892923
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/js/comment-reply.js?ver=6.9.4
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/js/hoverIntent.js?ver=1.10.2
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/js/imagesloaded.min.js?ver=5.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/js_composer/assets/lib/vendor/dist/isotope-layout/dist/isotope.pkgd.min.js?ver=8.6.1
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/lazysizes.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/ls.bgset.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/superfish.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/theia-sticky-sidebar.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jquery.waypoints.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jquery.scrollTo.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jquery.parallax.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jquery.okayNav.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jquery.mousewheel.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/modernizr-custom.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jquery.smartresize.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/scripts-n-styles/vendor/chosen/chosen.jquery.min.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jquery.magnific-popup.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jquery.jnewsgif.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jquery.jsticky.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jquery.transit.min.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/main.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/floating-video.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/darkmode.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/advanced-ads/admin/assets/js/advertisement.js
Warning::
External script from s7.addthis.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s7.addthis.com/js/300/addthis_widget.js?ver=6.9.4#pubid=ra-54258f345541db7b
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/jnews-video/assets/js/supposition.js?ver=12.0.1
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/js/jquery/ui/mouse.js?ver=1.13.3
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-includes/js/jquery/ui/sortable.js?ver=1.13.3
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/jnews-video/assets/js/plugin.js?ver=12.0.1
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jquery.module.js?ver=1.0.0
Warning::
External script from stats.wp.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://stats.wp.com/e-202617.js
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/js_composer/assets/js/dist/js_composer_front.min.js?ver=8.6.1
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jnewshero.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/js_composer/assets/lib/vendor/dist/flexslider/jquery.flexslider.min.js?ver=8.6.1
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/plugins/js_composer/assets/lib/vendor/dist/lightbox2/dist/js/lightbox.min.js?ver=8.6.1
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jquery.jscrollpane.js?ver=1.0.0
Warning::
External script from www.premiumtimesng.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.premiumtimesng.com/wp-content/themes/jnews/assets/js/jnewsvidplaylist.js?ver=1.0.0
Info::
script from static.cloudflareinsights.com has SRI protection
SRI Coverage 1 / 168 of external resources have integrity hashes
TagDomainIntegrity
<link>fonts.googleapis.com Missing
<script>cdn.cxense.com Missing
<script>cdn.cxense.com Missing
<script>www.google-analytics.com Missing
<script>scripts.clarity.ms Missing
<script>cse.google.com Missing
<script>cse.google.com Missing
<script>cse.google.com Missing
<script>static.hotjar.com Missing
<script>www.googletagmanager.com Missing
<script>cdn.tinypass.com Missing
<script>www.google.com Missing
<script>pagead2.googlesyndication.com Missing
<script>connect.facebook.net Missing
<script>connect.facebook.net Missing
<script>chimpstatic.com Missing
<script>d3lcz8vpax4lo2.cloudfront.net Missing
<script>sspjs.eskimi.com Missing
<script>www.googletagmanager.com Missing
<script>connect.facebook.net Missing
<script>www.clarity.ms Missing
<script>www.googletagservices.com Missing
<script>experience.piano.io Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>media.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>fonts.googleapis.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<script>beam-remp.premiumtimesng.com Missing
<script>campaign-remp.premiumtimesng.com Missing
<script>www.npttech.com Missing
<script>www.google.com Missing
<link>www.google.com Missing
<link>www.google.com Missing
<script>www.google.com Missing
<link>www.google.com Missing
<link>www.google.com Missing
<script>cdn.pixfuture.com Missing
<script>campaign-remp.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>cdn.onesignal.com Missing
<script>www.google.com Missing
<link>www.google.com Missing
<link>www.google.com Missing
<script>securepubads.g.doubleclick.net Missing
<script>securepubads.g.doubleclick.net Missing
<script>cdn.pixfuture.com Missing
<script>aa.agkn.com Missing
<script>fundingchoicesmessages.google.com Missing
<script>www.google.com Missing
<link>www.google.com Missing
<link>www.google.com Missing
<script>d3lcz8vpax4lo2.cloudfront.net Missing
<script>d3lcz8vpax4lo2.cloudfront.net Missing
<script>d3lcz8vpax4lo2.cloudfront.net Missing
<script>secure.adnxs.com Missing
<script>fundingchoicesmessages.google.com Missing
<link>onesignal.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<script>cse.google.com Missing
<script>pagead2.googlesyndication.com Missing
<script>cse.google.com Missing
<script>pagead2.googlesyndication.com Missing
<script>served-by.pixfuture.com Missing
<script>pagead2.googlesyndication.com Missing
<script>pagead2.googlesyndication.com Missing
<script>pagead2.googlesyndication.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<link>www.premiumtimesng.com Missing
<script>www.googletagmanager.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.googletagmanager.com Missing
<script>securepubads.g.doubleclick.net Missing
<script>securepubads.g.doubleclick.net Missing
<script>securepubads.g.doubleclick.net Missing
<script>cdn.onesignal.com Missing
<script>cdn.pixfuture.com Missing
<script>pagead2.googlesyndication.com Missing
<script>www.googletagservices.com Missing
<script>product.instiengage.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>cse.google.com Missing
<script>cdn.onthe.io Missing
<script>platform.twitter.com Missing
<script>images.dmca.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>members.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>s7.addthis.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>stats.wp.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>www.premiumtimesng.com Missing
<script>static.cloudflareinsights.com Protected
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@premiumtimesng.com; fo=1; pct=100

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=()
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
1 known vulnerability match(es) against detected tech
REVIEW

Known Vulnerabilities

LibraryVersionSeveritySummaryFixed In
Lodash4.17.21medium### Impact Lodash versions 4.0.0 through 4.17.22 are vulnerable to prototype pollution in the `_.unset` and `_.omit` functions. An attacker can pass crafted paths which cause Lodash to delete methods from global prototypes. The issue permits deletion of properties but does not allow overwriting their original behavior. ### Patches This issue is patched on 4.17.23.4.17.23
B
security.txt
Published with 0 contact(s)
REVIEW

security.txt

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 81 days)
Got: 2026-07-12T23:24:06Z
Info::
Certificate chain has 3 certificates
Info::
Certificate uses modern signature algorithm
Got: ECDSA-SHA256
Info::
Certificate covers 2 domain(s)
Got: premiumtimesng.com, *.premiumtimesng.com
Info::
Certificate is issued by a trusted CA
Got: CN=WE1,O=Google Trust Services,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=premiumtimesng.comIssuer CN=WE1,O=Google Trust Services,C=USValid 2026-04-13T22:25:48Z → 2026-07-12T23:24:06ZExpires in 81 days SANs premiumtimesng.com, *.premiumtimesng.comSignature ECDSA-SHA256Serial bd01a7fa7c4b9ad40e6bf67cd81ba604
Intermediate (CA Certificate)
Subject CN=WE1,O=Google Trust Services,C=USIssuer CN=GTS Root R4,O=Google Trust Services LLC,C=USValid 2023-12-13T09:00:00Z → 2029-02-20T14:00:00ZExpires in 1034 days Signature ECDSA-SHA384Serial 7ff31977972c224a76155d13b6d685e3
Intermediate (CA Certificate)
Subject CN=GTS Root R4,O=Google Trust Services LLC,C=USIssuer CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BEValid 2023-11-15T03:43:21Z → 2028-01-28T00:00:42ZExpires in 645 days Signature SHA256-RSASerial 7fe530bf331343bedd821610493d8a1b
A+
Cookie Security
No cookies set — no cookie security risks
PASS
No cookies set — no cookie security risks
Info::
No cookies set — no cookie security risks

No cookies detected — no cookie security risks to report.

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::
security.txt is present — good practice
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 ExposedSecurity PolicyInfo
A+
Transport Security
HTTP/3, HSTS, and TLS version analysis
PASS
HTTP/3, HSTS, and TLS version analysis
Info::
HTTP/3 (QUIC) supported
The server advertises HTTP/3 via Alt-Svc for faster connections on mobile networks.
Info::
HSTS enabled (includeSubDomains, preload)
Info::
HSTS preload enabled
Info::
TLS 1.3 in use (fastest handshake, 1-RTT)
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback