Infrastructure
· 17 checks — DNS, redirects, IPv6, crawlability, URL variants, and domain intelligence rolled into one auditable list.BDNSSECUnsigned (DNSSEC not deployed)REVIEW
BCAA RecordsNo CAA records (any CA may issue certificates)REVIEW
BReverse DNS0/2 IPs match cert SANREVIEW
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="en">
<head>
<meta charset="UTF-8"/>
<script defer type="text/javascript" src="https://rum.hlx.page/.rum/@adobe/helix-rum-js@%5E2/dist/micro.js" data-routing="program=111718,environment=1181479,tier=publish"></script>
<meta name="content-page-ref" content="Xz1lxkocHqDIAyETYFPkhSZN2BTqHYEmhvco3s8uKXY5yDco87iKL1in2ZagKdmV"/>
<link href="/content/dam/enicom/images/favicons/favicon.ico" type="image/x-icon" rel="icon"/>
<link href="/content/dam/enicom/images/favicons/favicon.svg" type="image/svg+xml" rel="icon"/>
<link href="/content/dam/enicom/images/favicons/favicon-16x16.png" sizes="16x16" type="image/png" rel="icon"/>
<link href="/content/dam/enicom/images/favicons/favicon-32x32.png" sizes="32x32" type="image/png" rel="icon"/>
<link href="/content/dam/enicom/images/favicons/favicon-96x96.png" sizes="96x96" type="image/png" rel="icon"/>
<link href="/content/dam/enicom/images/favicons/android-icon-192x192.png" sizes="192x192" type="image/png" rel="icon"/>
<link href="/content/dam/enicom/images/favicons/apple-touch-icon-57x57.png" sizes="57x57" rel="apple-touch-icon"/>
<link href="/content/dam/enicom/images/favicons/apple-touch-icon-60x60.png" sizes="60x60" rel="apple-touch-icon"/>
<link href="/content/dam/enicom/images/favicons/apple-touch-icon-72x72.png" sizes="72x72" rel="apple-touch-icon"/>
<link href="/content/dam/enicom/images/favicons/apple-touch-icon-76x76.png" sizes="76x76" rel="apple-touch-icon"/>
<link href="/content/dam/enicom/images/favicons/apple-touch-icon-114x114.png" sizes="114x114" rel="apple-touch-icon"/>
<link href="/content/dam/enicom/images/favicons/apple-touch-icon-120x120.png" sizes="120x120" rel="apple-touch-icon"/>
<link href="/content/dam/enicom/images/favicons/apple-touch-icon-144x144.png" sizes="144x144" rel="apple-touch-icon"/>
<link href="/content/dam/enicom/images/favicons/apple-touch-icon-152x152.png" sizes="152x152" rel="apple-touch-icon"/>
<link href="/content/dam/enicom/images/favicons/apple-touch-icon-167x167.png" sizes="167x167" rel="apple-touch-icon"/>
<link href="/content/dam/enicom/images/favicons/apple-touch-icon-180x180.png" sizes="180x180" rel="apple-touch-icon"/>
<link href="/content/dam/enicom/images/favicons/apple-touch-icon.png" sizes="192x192" rel="apple-touch-icon"/>
<link href="/content/dam/enicom/images/favicons/apple-touch-icon-precomposed.png" rel="apple-touch-icon-precomposed"/>
<link color="#333333" href="/content/dam/enicom/images/favicons/safari-pinned-tab.svg" rel="mask-icon"/>
<meta content="/content/dam/enicom/images/favicons/ms-icon-144x144.png" name="msapplication-TileImage"/>
<title>Eni, an integrated energy company</title>
<meta name="keywords" content="Azienda,Transizione energetica,Innovazione tecnologica,Energia unica,Persone"/>
<meta name="template" content="homepage"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<script type="text/javascript">
window.digitalData = window.digitalData || [];
window.digitalData.push({
"page": {
"pageID" : "/content/enicom/it/en/home",
"pageUrl": "https://www.eni.com/en-IT/home.html",
"pageCategory" : "Home",
"pageTitle" : "Home",
"pageLanguage" : "en",
"creationDate" : "20-11-2023 - 09:35",
"publishDate" : "07-09-2026 - 16:43",
"pageTagImplicit": "Azienda,Transizione energetica,Innovazione tecnologica,Energia unica,Persone"
},
"site":{
"siteID":"enicom",
"env":"prod"
}
});
function handleServerResponse(requestResult) {
const internalVisitValue = requestResult;
localStorage.setItem('vpnStatus', internalVisitValue);
digitalData.push({
"event": "pageView",
"user": {
"internalVisit": internalVisitValue
}
});
console.log('Esito richiesta: ' + requestResult);
}
function loadImage(url, timeout) {
return new Promise((resolve, reject) => {
const img = new Image();
const timer = setTimeout(() => {
img.onload = img.onerror = null;
reject(new Error('Timeout'));
}, timeout);
img.onload = () => {
clearTimeout(timer);
resolve(img);
};
img.onerror = () => {
clearTimeout(timer);
reject(new Error('Load failed'));
};
img.src = url;
});
}
async function executeImageRequest(logOnly = false) {
// Controlla se la variabile esiste e ha valore true in localStorage
const vpnStatus = localStorage.getItem('vpnStatus');
if (vpnStatus === 'true') {
console.log('VPN status is active.');
return;
}
const imageUrl = 'https://enicomintranet.eni.com/asset/eni-intranet-jpg.jpg';
const timeoutDuration = 2000;
try {
await loadImage(imageUrl, timeoutDuration);
if (logOnly) {
console.log('Image loaded successfully.');
} else {
handleServerResponse(true);
}
} catch (error) {
if (logOnly) {
console.log('Image failed to load.');
} else {
handleServerResponse(false);
}
}
}
executeImageRequest();
/*
setTimeout(() => {
executeImageRequest(true);
}, 2000);
*/
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','digitalData','GTM-53J7BV72');</script>
<!-- End Google Tag Manager -->
<link rel="canonical" href="https://www.eni.com/en-IT/home.html"/>
<link rel="alternate" hreflang="en" href="https://www.eni.com/en-IT/home.html"/>
<link rel="alternate" hreflang="it" href="https://www.eni.com/it-IT/home.html"/>
<meta name="og:title" property="og:title" content="Eni, an integrated energy company"/>
<meta name="og:image" property="og:image" content="https://s7g10.scene7.com/is/image/eni/Opengraph-homepage-enicom-1:horizontal-16-9?&wid=1200&hei=630&fit=crop,1&bfc=on"/>
<meta name="twitter:card" content="summary_large_image"/>
<script src="/etc.clientlibs/enicom/clientlibs/clientlib-dependencies.lc-aa73ea76ed8e580af1709d432177ccf5-lc.min.js"></script>
<link rel="stylesheet" href="/etc.clientlibs/enicom/clientlibs/clientlib-dependencies.lc-881010f9a63e34ce36acda1807904fab-lc.min.css" type="text/css">
<link rel="stylesheet" href="/etc.clientlibs/enicom/clientlibs/clientlib-site.lc-41c1e8962bb12b8c417f2f9c72447973-lc.min.css" type="text/css">
<link rel="stylesheet" href="/etc.clientlibs/core/wcm/components/tabs/v1/tabs/clientlibs/site.lc-d54c23ba76bd8648119795790ae83779-lc.min.css" type="text/css">
<script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Corporation", "name": "ENI", "alternateName": "Six-Legged Dog", "url": "https://www.eni.com/", "logo": "https://www.eni.com/content/dam/enicom/images/loghi/logoEni.svg" }</script>
</head>
<body class="page basicpage" id="page-c099fe26b6" data-cmp-link-accessibility-enabled data-cmp-link-accessibility-text="opens in a new tab">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-53J7BV72" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="skipToMainContent">
<a href="#skipToMainContent" class="eni-textlink-large" tabindex="0" aria-label="Skip to main content">Skip to main content</a>
</div>
<div eni-component="homepage" eni-version="1.0" eni-template="" id="" class="">
<header eni-component="menu" eni-version="3.0" dd-json="{ \"event\": \"\",\"eventDetail\":{ \"name\":\"\", \"type\":\"\" }, \"component\":{ \"type\":\"header\", \"title\":\"\", \"link\":\"\", \"linkText\":\"\", \"position\":\" \" }, \"search\":{ \"terms\":\"\" } }">
<div class="wrapper-component">
<div eni-component="superheader" eni-version="3.0">
<a href="/en-IT/home.html" aria-label="Logo Eni – Home Page" tabindex="0" class="logo">
<img src="/content/dam/enicom/images/loghi/logoEni.svg" alt="Logo Eni – Home Page"/>
</a>
<button type="button" eni-component="button-AI" eni-version="1.0" eni-template="entryPoint" tabindex="0" data-bs-toggle="modal" data-bs-target="#modalGenAI" aria-pressed="false" aria-label="Explore EnergIA">
<img src="/etc.clientlibs/enicom/clientlibs/clientlib-site/resources/assets/Sparkle_medium_AI.svg" alt="Explore EnergIA"/>
<img src="https://www.eni.com/content/dam/enicom/images/loghi/logo-energIA.svg" alt="Logo EnergIA" class="onlyDesktop"/>
</button>
<div class="desktop">
<a href="/en-IT/publications.html" target="_self" tabindex="0" class="btn-header text-link-small" data-page="Publications" aria-label="Publications">
Publications
</a>
<div eni-component="presenza-globale" eni-version="3.0">
<button type="button" tabindex="0" aria-expanded="false" aria-controls="cntPresenzaGlobale" class="btn-header btn-presenza-globale text-link-small" data-url-pg="/en-IT/actions/global-activities.region-menu.html" aria-label="Global Presence">
Global Presence
</button>
<div class="container-presenza-globale" id="cntPresenzaGlobale" aria-hidden="true" inert>
</div>
BTLS Certificate Expiry & Recommendations57 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 & DeliveryAkamaiREVIEW
BCDN Cache ObservabilityNo CDN cache-status headers in the responseREVIEW
BOperational Status PageNo status page link detectedREVIEW
A+DNS Records2 A records, 34 ms lookupPASS
| A | 23.211.15.70, 23.211.15.68 |
| AAAA | — |
| CNAME | — |
| NS | asia3.akam.net, usw6.akam.net, ns1-177.akam.net, use1.akam.net, asia4.akam.net, usw2.akam.net |
| MX | — |
| TXT | — |
| CAA | Lookup not available with standard resolver |
SPF helps prevent email spoofing. Add a TXT record starting with 'v=spf1'.
Without SPF, receiving servers can't validate sending IPs — your domain is easier to spoof in phishing.
Learn more ▾ ▴
SPF complements DMARC. Both should be published. SPF records list authorized sending IPs (e.g., `v=spf1 include:_spf.google.com ~all` for Google Workspace). After publishing, verify in Google Postmaster Tools or mxtoolbox.
Source: RFC 7208 (SPF)
A+Subdomain TakeoverNo subdomain takeover risk detectedPASS
A+Multi-Resolver DNS SpeedMean 29ms across 3 resolvers (spread 7ms)PASS
ARedirect Chain1 redirect(s), 158 ms totalPASS
https://eni.ie
143 ms · HTTP/1.1
https://www.eni.com/en-IT/home.html
15 ms · HTTP/1.1 FINAL
| # | URL | Status | Time | Protocol | Server |
|---|---|---|---|---|---|
| 1 | https://eni.ie | 301 | 143 ms | HTTP/1.1 | AkamaiGHost |
| 2 | https://www.eni.com/en-IT/home.html | 200 | 15 ms | HTTP/1.1 |
See the visual redirect chain in the HTTP Probe tab →
A+URL Variantswww/non-www, trailing slash, HTTP→HTTPSPASS
www / non-www
Preferred variant: non-www
HTTP → HTTPS
Consistent
A+Domain Intelligenceeni.ie — via Register SPA, 19 years old, hosted on AkamaiPASS
91 days
December 11, 2026
57 days
Issued by Let's Encrypt
19 years
Registered December 11, 2007
Status unknown
Protects against DNS spoofing
Akamai
ASN AS20940
23.211.15.70
Register SPA
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