Infrastructure
· 17 checks — DNS, redirects, IPv6, crawlability, URL variants, and domain intelligence rolled into one auditable list.DCDN & DeliveryActionNo CDN detectedFIX
Consider using a CDN to improve global delivery speed and reduce origin load.
BDNSSECUnsigned (DNSSEC not deployed)REVIEW
BCAA RecordsNo CAA records (any CA may issue certificates)REVIEW
CIPv6 ReadinessActionNo IPv6 supportREVIEW
IPv6 support is increasingly important for global accessibility. About 40% of internet users have IPv6 connectivity.
No AAAA records — same impact as 'no IPv6 (AAAA) records'; IPv6-preferring clients pay extra latency falling back to IPv4.
Source: Google IPv6 stats
CCrawlabilityActionrobots.txt present, sitemap with 0 URLsREVIEW
Search engines may not be able to parse the sitemap. Fix XML validation errors.
An unparseable sitemap is silently ignored by Google — the URLs it advertises are never queued for crawl.
Learn more ▾ ▴
Google's sitemap parser is strict about XML validity. A single unescaped `&` or unclosed tag invalidates the whole file. Run your sitemap through a validator (Search Console's Sitemaps report flags it) and fix the offending entry. Most generators escape correctly; mistakes usually come from manually-written entries.
Source: sitemaps.org / Google Search Central
An empty sitemap provides no value. Add <url> entries for your pages.
An empty sitemap signals 'no content to index' to Google — actively harmful versus having no sitemap at all.
Learn more ▾ ▴
Google compares URLs in the sitemap against URLs it has crawled. An empty sitemap on a site with thousands of pages signals abandonment. Either populate it correctly (most CMSes auto-generate) or delete the file and let Google crawl normally.
Source: Google Search Central / sitemaps.org
Add a 'Sitemap:' directive to robots.txt so search engines can discover your sitemap.
robots.txt omits Sitemap: directive — crawlers must fetch /sitemap.xml by convention; reliable but missing the explicit hint.
Source: sitemaps.org
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MEDICITALIA.it - Consulti medici e specialisti online: più informati, più sani!</title>
<meta name="Description" content="Consulti e specialisti online su MEDICITALIA.it: più informati, più sani. Il portale leader per il tele-orientamento e l'informazione medica certificata." >
<link rel="canonical" href="https://www.medicitalia.it" />
<meta name="language" content="it">
<meta name="robots" content="INDEX, FOLLOW">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="MEDICITALIA.it - Consulti medici e specialisti online: più informati, più sani!">
<meta name="twitter:description" content="Consulti e specialisti online su MEDICITALIA.it: più informati, più sani. Il portale leader per il tele-orientamento e l'informazione medica certificata.">
<meta name="twitter:url" content="https://www.medicitalia.it">
<meta name="twitter:image" content="https://static.medicitalia.it/img/logo-mi.webp">
<meta name="twitter:site" content="@medicitalia">
<meta property="fb:app_id" content="1036347655190376">
<meta property="og:type" content="website">
<meta property="og:site_name" content="MEDICITALIA.it">
<meta property="og:url" content="https://www.medicitalia.it">
<meta property="og:title" content="MEDICITALIA.it - Consulti medici e specialisti online: più informati, più sani!">
<meta property="og:description" content="Consulti e specialisti online su MEDICITALIA.it: più informati, più sani. Il portale leader per il tele-orientamento e l'informazione medica certificata.">
<meta property="og:image" content="https://static.medicitalia.it/img/logo-mi.webp">
<meta name="csrf-token" content="99d73c7bc511fb154dabcdfb103572249d247ef1735c1dbc25264e2d59bb4af2">
<link rel="shortcut icon" href="/favicon.ico" >
<link rel="preconnect" href="https://static.medicitalia.it" >
<link rel="preload" href="https://static.medicitalia.it/img/logo-medicitalia.svg" as="image" >
<link rel="preload" href="https://static.medicitalia.it/libs/bootstrap/4.6.1/css/bootstrap-light.min.css" as="style" >
<link rel="stylesheet" href="https://static.medicitalia.it/libs/bootstrap/4.6.1/css/bootstrap-light.min.css" type="text/css" media="screen" >
<link rel="preload" href="https://static.medicitalia.it/_theme/custom.min.css?ver=1785855941" as="style" >
<link rel="stylesheet" href="https://static.medicitalia.it/_theme/custom.min.css?ver=1785855941" type="text/css" media="screen" >
<!-- SWG: caricato fuori dal critical rendering path -->
<script id="cmp-template" type="text/plain" src="//clickiocmp.com/t/consent_248084.js"></script>
<script>
(function () {
'use strict';
var swgPromise;
var cmpLoaded = false;
var adPlayLoaded = false;
function loadCmp() {
if (cmpLoaded) return;
cmpLoaded = true;
var template = document.getElementById('cmp-template');
if (!template) return;
var script = document.createElement('script');
script.async = true;
script.src = template.getAttribute('src');
script.dataset.cmpLoader = 'true';
script.onload = waitForTcfConsent;
document.head.appendChild(script);
}
function waitForTcfConsent() {
var attempts = 0;
function registerListener() {
if (typeof window.__tcfapi !== 'function') {
attempts += 1;
if (attempts < 20) window.setTimeout(registerListener, 250);
return;
}
window.__tcfapi('addEventListener', 2, function consentListener(tcData, success) {
if (!success || !tcData || !['tcloaded', 'useractioncomplete'].includes(tcData.eventStatus)) {
return;
}
if (typeof window.miLoadGoogleTag === 'function') {
window.miLoadGoogleTag();
}
if (tcData.listenerId) {
window.__tcfapi('removeEventListener', 2, function () {}, tcData.listenerId);
}
});
}
registerListener();
}
function loadAdPlay() {
if (adPlayLoaded) return;
var template = document.getElementById('azrn-template');
if (!template) {
// Il template AdPlay è nel footer: se SWG viene richiesto molto
// presto, riprova quando il documento è interamente disponibile.
if (document.readyState !== 'complete') {
window.addEventListener('load', loadAdPlay, { once: true });
}
return;
}
adPlayLoaded = true;
var script = document.createElement('script');
script.async = true;
script.src = template.getAttribute('src');
template.parentNode.insertBefore(script, template.nextSibling);
}
function loadNonSubscriberTools() {
loadCmp();
loadAdPlay();
}
function ensureSwg() {
if (swgPromise) return swgPromise;
swgPromise = new Promise(function (resolve, reject) {
var script = document.createElement('script');
script.async = true;
script.src = 'https://news.google.com/swg/js/v1/swg-basic.js';
script.onload = function () {
(self.SWG_BASIC = self.SWG_BASIC || []).push(function (basicSubscriptions) {
var entitlementTimeout = window.setTimeout(loadNonSubscriberTools, 5000);
basicSubscriptions.init({
type: 'NewsArticle',
isPartOfType: ['Product'],
isPartOfProductId: 'CAowu_eVCw:openaccess',
clientOptions: { theme: 'light', lang: 'it' },
autoPromptType: 'none'
});
basicSubscriptions.setOnEntitlementsResponse(function (response) {
response.then(function (entitlements) {
window.clearTimeout(entitlementTimeout);
if (!entitlements.enablesThisWithCacheableEntitlements()) {
loadNonSubscriberTools();
}
}).catch(function () {
window.clearTimeout(entitlementTimeout);
loadNonSubscriberTools();
});
});
resolve(basicSubscriptions);
});
};
script.onerror = function () {
loadNonSubscriberTools();
reject(new Error('Impossibile caricare SWG'));
};
document.head.appendChild(script);
});
return swgPromise;
}
function showMobileSubscriptionOverlay() {
if (window.innerWidth > 480 || document.querySelector('.interaction-blocker')) return;
document.body.style.overflow = 'hidden';
var overlay = document.createElement('div');
overlay.className = 'site-overlay interaction-blocker';
overlay.style.cssText = 'position:fixed;width:100vw;height:100dvh;overflow-x:hidden;background:rgba(33,41,52,.65);backdrop-filter:blur(5px);top:0;z-index:100;';
document.body.appendChild(overlay);
var arrow = document.createElement('div');
arrow.innerHTML = "<svg width='40' height='40' viewBox='0 0 24 24' fill='none'><path d='M12 5v14M19 12l-7 7-7-7' stroke='#fff' stroke-width='6' stroke-linecap='round' stroke-linejoin='round' opacity='.85'/><path d='M12 5v14M19 12l-7 7-7-7' stroke='#18A1EF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>";
arrow.style.cssText = 'position:absolute;left:50%;bottom:110px;transform:translateX(-50%);animation:arrow-animation 1s infinite;z-index:1000;';
document.body.appendChild(arrow);
var style = document.createElement('style');
style.textContent = '@keyframes arrow-animation{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(20px)}}';
document.head.appendChild(style);
var backHome = document.createElement('a');
backHome.href = 'https://www.medicitalia.it/';
backHome.textContent = 'Torna alla Home';
backHome.style.cssText = 'position:absolute;top:16px;right:24px;z-index:1001;background:rgba(255,255,255,.9);padding:8px 16px;border-radius:6px;font-weight:bold;text-decoration:none;color:#18A1EF;';
backHome.addEventListener('click', function (event) {
event.preventDefault();
window.location.href = backHome.href;
});
document.body.appendChild(backHome);
}
window.showSubscriptionPrompt = function () {
ensureSwg().then(function (basicSubscriptions) {
basicSubscriptions.setupAndShowAutoPrompt({ autoPromptType: 'subscription' });
showMobileSubscriptionOverlay();
}).catch(function () {});
};
window.showLoginPrompt = function () {
var declineButton = document.querySelector('.cl-consent__btn[data-role="b_decline"]');
if (declineButton) declineButton.click();
};
function scheduleSwg() {
var run = function () { ensureSwg().catch(function () {}); };
if ('requestIdleCallback' in window) {
window.requestIdleCallback(run, { timeout: 5000 });
} else {
window.setTimeout(run, 2000);
}
}
if (document.readyState === 'complete') {
scheduleSwg();
} else {
window.addEventListener('load', scheduleSwg, { once: true });
}
}());
</script>
<!-- Shinystat analytics -->
<script type="text/javascript" src="//codicebusiness.shinystat.com/cgi-bin/getcod.cgi?USER=medicitalia&NODW=yes" async="async"></script>
<!-- Google tag: il download è ritardato fino alla risposta CMP -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8EFP7YSQQW');
gtag('consent', 'default', {
'ad_storage': 'denied',
'ad_user_data': 'denied'
BURL Variantswww/non-www, trailing slash, HTTP→HTTPSREVIEW
www / non-www
Inconsistent — duplicate content risk
HTTP → HTTPS
Consistent
BTLS Certificate Expiry & Recommendations39 days until leaf cert expires — 3 issues to addressREVIEW
Certificate validity
Recommended actions
- Enable HSTS: Strict-Transport-Security: max-age=31536000; includeSubDomains
- Enable DNSSEC on your domain for DNS spoofing protection
- Enable OCSP stapling on your TLS server to remove a CA roundtrip and protect user privacy
BCDN Cache ObservabilityNo CDN cache-status headers in the responseREVIEW
BOperational Status PageNo status page link detectedREVIEW
A+DNS Records1 A records, 2 ms lookupPASS
| A | 195.231.71.5 |
| AAAA | — |
| CNAME | — |
| NS | dns.technorail.com, dns2.technorail.com, dns4.arubadns.cz, dns3.arubadns.net |
| MX | 10 mx.medicitalia.it |
| TXT | actalis-dcv=Pe9mV5PBkLUg0ssOwGWKgIr google-site-verification=0L4k9W4K7gSWw5ma20UWy-pzggas6-jZOng8NYZcqww dcz=kpMkz6a7 SPF v=spf1 include:_spf.aruba.it include:aruba.it include:musvc.com ~all google-site-verification=rVTIkvE7PclDsvaT8XzD4znPjhbS1ytbVEGQudxWzXA 9nie1ecra5e4n1sfficosg86c6 eeud17jidgdtimfsfee8mbih2m |
| CAA | Lookup not available with standard resolver |
Multiple A records provide failover if one server goes down.
Single A record means a single point of failure — if that IP goes down, your site is unreachable until DNS TTL expires.
Learn more ▾ ▴
Add multiple A records for round-robin failover, or use a managed DNS provider with health-checked failover (Route 53, Cloudflare, NS1). Short TTL (60-300s) lets clients recover faster on outages.
Source: SRE practice / DNS architecture
A+Subdomain TakeoverNo subdomain takeover risk detectedPASS
A+Reverse DNS1/1 IPs match cert SANPASS
AMulti-Resolver DNS SpeedMean 44ms across 3 resolvers (spread 73ms)PASS
ARedirect Chain1 redirect(s), 248 ms totalPASS
https://medicitalia.it
90 ms · HTTP/1.1
https://www.medicitalia.it
158 ms · HTTP/1.1 FINAL
| # | URL | Status | Time | Protocol | Server |
|---|---|---|---|---|---|
| 1 | https://medicitalia.it | 301 | 90 ms | HTTP/1.1 | nginx/1.18.0 (Ubuntu) |
| 2 | https://www.medicitalia.it | 200 | 158 ms | HTTP/1.1 | nginx/1.18.0 (Ubuntu) |
See the visual redirect chain in the HTTP Probe tab →
A+Domain Intelligencemedicitalia.it — via ARUBA-REG, 26 years, 5 months old, hosted on ARUBA-ASN - Aruba S.p.A., ITPASS
141 days
December 28, 2026
39 days
Issued by Actalis S.p.A.
26 years, 5 months
Registered July 7, 2000
Status unknown
Protects against DNS spoofing
ARUBA-ASN - Aruba S.p.A., IT
ASN AS31034
195.231.71.5
ARUBA-REG
Expiry timeline
Recommended actions
- Enable registrar lock (clientTransferProhibited) to block unauthorized domain transfers
The domain can be transferred without an unlock step. Enable registrar lock (clientTransferProhibited) in your registrar's control panel to protect against unauthorized or accidental transfers.
Without registrar lock, an attacker who phishes your registrar credentials can transfer the domain in minutes — total brand hijack.
Learn more ▾ ▴
Registrar lock (clientTransferProhibited, clientUpdateProhibited, clientDeleteProhibited) requires extra verification before any transfer/update/delete. Every major registrar offers it free. Combined with 2FA on your registrar account, it's the strongest defense against domain hijacking.
Source: ICANN / domain-security best practice