- 掃描 ID:
- f70e5323-c0c3-41e1-8447-43ea110d1342已完成
- 已提交的 URL:
- https://www.whois.com/whois/facebook.com
- 報告完成時間:
連結 · 找到 53 個
從頁面中識別的傳出連結
連結 | Text |
---|---|
https://shop.whois.com/login.php | Login |
https://shop.whois.com/login.php?action=signup | Sign up |
https://shop.whois.com/content.php?action=cp_login | My Account |
https://shop.whois.com/login.php?action=signout | Logout |
https://shop.whois.com/domain-registration/index.php | Register a DomainGet your domain name now |
https://shop.whois.com/domain-registration/domain-name-suggestion-tool.php | Name Suggestion Tool |
https://shop.whois.com/domain-registration/domain-registration-price.php | Domain PricingCompare prices across TLDs |
https://shop.whois.com/domain-registration/offers | Special OffersTake advantage of our unbeatable promotions |
https://shop.whois.com/domain-registration/transfer/index.php | Transfer your DomainConsolidate your domains quickly& easily |
https://shop.whois.com/domain-registration/free-with-domain-registration.php | Free with Every Domain |
JavaScript 變數 · 找到 18 個
在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取
名稱 | 類型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
gtag | function |
dataLayer | object |
google_tag_manager | object |
google_tag_data | object |
purchaseDomain | function |
toggleFold | function |
refreshDomain | function |
主控台記錄訊息 · 找到 0 條
記錄到 Web 主控台的訊息
HTML
頁面的原始 HTML 主體
<!DOCTYPE html><html lang="en"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
<link rel="preload" href="https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2" as="font" type="font/woff2" crossorigin="">
<meta name="description" content="Whois Lookup for facebook.com">
<title>Whois facebook.com</title>
<meta property="og:title" content="Whois facebook.com">
<meta property="og:description" content="Whois Lookup for facebook.com">
<link rel="canonical" href="https://www.whois.com/whois/facebook.com">
<meta property="og:url" content="https://www.whois.com/whois/facebook.com">
<meta property="og:type" content="website">
<meta property="og:image" content="https://www.whois.com/images/og.png">
<meta property="twitter:image" content="https://www.whois.com/images/twimg.png">
<meta name="theme-color" content="#f5a93a">
<meta name="apple-mobile-web-app-status-bar-style" content="#f5a93a">
<link rel="icon" href="/images/favicon.ico">
<link rel="apple-touch-icon" href="/images/favicon.ico">
<script>window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}</script>
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-GHSYT27DJ1"></script>
<link rel="stylesheet" href="/css/home.css?v=1720455221000">
<script defer="" src="https://cdnjs.cloudflare.com/ajax/libs/cash/8.1.0/cash.min.js"></script>
<script defer="" src="/js/home.js?v=1727330850000"></script>
<script defer="" src="/js/jquery.simpleslider.js"></script>
<script>
window.addEventListener('DOMContentLoaded', function() {
!$.getScript && ($.getScript = function(url) {
var s = document.createElement('script');
s.src = url;
document.head.appendChild(s);
});
});
function purchaseDomain(domain, source, chk) {
var form = chk ? document.purchaseFormChk : document.purchaseForm;
var submitted = false;
var submitForm = function(){if(!submitted){submitted=true;form.submit();}}
form.purchaseDomains.value = domain.toLowerCase();
if(window.gtag) {
gtag('event', source, {'event_category':'whois','event_label':'buy','transport_type':'beacon','event_timeout':2000,'event_callback':submitForm});
}
submitForm();
}
function toggleFold(item) {
$(item).parent().parent().toggleClass('df-folded');
}
async function refreshDomain(domain) {
if($('#refresh').hasClass('spin')) return;
$('#refresh').addClass('spin');
$('#refresh .status').html('');
const response = await fetch(`/whois/refresh.php?domain=${domain}`, {headers:{"X-Requested-With":"XMLHttpRequest"}})
if(response.ok) {
const data = await response.json();
let status = 'Error occurred. Please try again later.';
if(data.errno == 0) {
if(data.status == 1) {
$('.whois-data').hide();
$('.section-related').hide();
$('.section-avail').html(`<table><tr><td><img src="/images/ok.png" alt="ok"></td><td>${domain} is available!</td></tr></table>`);
} else {
$('.df-block').remove();
$('.df-block-raw').remove();
$('.whois-data .head').after(data['blocks']);
$('#refresh .age').html('Updated '+data['dataAge']+' ago');
}
status = '';
} else if(data.captcha) {
status = '';
$('#security').show();
$.getScript("https://www.google.com/recaptcha/api.js"); } else if(data.errstr) {
status = data.errstr;
}
$('#refresh').removeClass('spin');
$('#refresh .status').html(status);
} else {
$('#refresh').removeClass('spin');
$('#refresh .status').html('Error encountered. Please try again later.');
}
}
function refreshWhois() {
refreshDomain('facebook.com'); }
async function suggestDomain(domain) {
const response = await fetch(`/whois/suggest.php?domain=${domain}`, {headers:{"X-Requested-With":"XMLHttpRequest"}})
if(response.ok) {
const data = await response.json();
let html = '';
$.each(data, function(k,v) {
html += `<div class="item"><span>${v.name}</span><a href="javascript:purchaseDomain('${v.name}','suggest');" class="btn btn-sm btn-vendor">Buy Now</a></div>`;
});
if(html) {
$('aside').prepend('<div class="chiclet-suggest"><div class="title">Interested in similar domains?</div>'+html+'</div>');
}
}
}
/*if(window.history.state && typeof(window.history.state) == "object" && window.history.state.hasOwnProperty('refreshed')) {
window.history.replaceState(null, '');
window.location.reload();
}*/
window.addEventListener('DOMContentLoaded', function() {
suggestDomain('facebook.com');
$('#promo-slides').simpleSlider({nav:false,speed:500});
});
function recaptchaCallback() {
$('#security .btn').trigger('click');
}
</script>
</head>
<body>
<header class="sticky-top">
<nav class="navbar navbar-expand">
<div class="container-xl">
<a class="navbar-brand" href="/"><img height="32" width="120" src="/images/logo.svg" alt="whois.com"></a>
<ul class="navbar-nav" id="menubar">
<li class="nav-item header d-lg-none">
<a href="/" class="home" title="home"><svg height="20" width="20" viewBox="0 0 24 24"><path d="M21 13v10h-6v-6h-6v6h-6v-10h-3l12-12 12 12h-3zm-1-5.907v-5.093h-3v2.093l3 3z"></path></svg></a>
<a class="acc-signin unsigned" href="https://shop.whois.com/login.php">Login</a>
<a class="acc-signup unsigned" href="https://shop.whois.com/login.php?action=signup">Sign up</a>
<a class="acc-signincp signed" href="https://shop.whois.com/content.php?action=cp_login">My Account</a>
<a class="acc-signout signed" href="https://shop.whois.com/login.php?action=signout">Logout</a>
<span class="close-mobile-menu"><svg width="24" height="24"><symbol id="svg-close" viewBox="0 0 50 50"><path d="M 9.15625 6.3125 L 6.3125 9.15625 L 22.15625 25 L 6.21875 40.96875 L 9.03125 43.78125 L 25 27.84375 L 40.9375 43.78125 L 43.78125 40.9375 L 27.84375 25 L 43.6875 9.15625 L 40.84375 6.3125 L 25 22.15625 Z"></path></symbol><use xlink:href="#svg-close"></use></svg></span>
</li>
<li class="nav-item dropdown dropdown-wide">
<a class="nav-link toggle" href="#">Domains</a>
<div class="dropdown-menu with-headers">
<div class="container-xl">
<div class="row">
<div class="col col-8">
<span class="dropdown-header">Registration</span>
<div class="row">
<div class="col">
<a class="dropdown-item" href="https://shop.whois.com/domain-registration/index.php"><span class="title">Register a Domain</span><span class="meta">Get your domain name now</span></a>
<a class="dropdown-item" href="https://shop.whois.com/domain-registration/domain-name-suggestion-tool.php"><span class="title">Domain Suggestions</span><span class="meta">Get help picking a domain name</span></a>
</div>
<div class="col">
<a class="dropdown-item" href="https://shop.whois.com/domain-registration/domain-registration-price.php"><span class="title">Domain Pricing</span><span class="meta">Compare prices across TLDs</span></a>
<a class="dropdown-item" href="https://shop.whois.com/domain-registration/offers"><span class="title">Special Offers</span><span class="meta">Take advantage of our unbeatable promotions</span></a>
</div>
</div>
</div>
<div class="col col-4">
<span class="dropdown-header">Domain Services</span>
<a class="dropdown-item" href="https://shop.whois.com/domain-registration/transfer/index.php"><span class="title">Transfer your Domain</span><span class="meta">Consolidate your domains quickly & easily</span></a>
<a class="dropdown-item" href="https://shop.whois.com/domain-registration/free-with-domain-registration.php"><span class="title">Free With Every Domain</span><span class="meta">Free services included with every domain</span></a>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown dropdown-wide">
<a class="nav-link toggle" href="#">Hosting</a>
<div class="dropdown-menu with-headers">
<div class="container-xl">
<div class="row">
<div class="col">
<span class="dropdown-header">Shared Hosting</span>
<a class="dropdown-item" href="https://shop.whois.com/web-hosting/index.php"><span class="title">Linux Shared Hosting</span><span class="meta">Fully featured Linux plans with cPanel, Perl, PHP and more</span><span class="price">Starts at just | <em>$1.68/mo</em></span></a>
<a class="dropdown-item" href="https://shop.whois.com/web-hosting/windows-hosting.php"><span class="title">Windows Shared Hosting</span><span class="meta">Complete Windows Hosting with Plesk, IIS and more</span><span class="price">Starts at just | <em>$1.68/mo</em></span></a>
</div>
<div class="col">
<span class="dropdown-header">Specialized Hosting</span>
<a class="dropdown-item" href="https://shop.whois.com/cloudhosting.php"><span class="title">Cloud Hosting</span><span class="meta">Next-level performance and reliability with simplified cPanel management</span><span class="price">Starts at just | <em>$6.88/mo</em></span></a>
<a class="dropdown-item" href="https://shop.whois.com/optimized-wordpress-hosting.php"><span class="title">WordPress Hosting</span><span class="meta">Feature rich hosting specially optimized for WordPress powered websites</span><span class="price">Starts at just | <em>$5.48/mo</em></span></a>
</div>
<div class="col">
<span class="dropdown-header">Reseller Hosting</span>
<a class="dropdown-item" href="https://shop.whois.com/reseller-hosting.php"><span class="title">Linux Reseller Hosting</span><span class="meta">Use the power of WHM to start your Hosting business today</span><span class="price">Starts at just | <em>$14.88/mo</em></span></a>
<a class="dropdown-item" href="https://shop.whois.com/windows-reseller-hosting.php"><span class="title">Windows Reseller Hosting</span><span class="meta">Plesk-enabled plans to kickoff your Hosting business</span><span class="price">Starts at just | <em>$25.88/mo</em></span></a>
</div>
<div class="col">
<span class="dropdown-header">Tools</span>
<a class="dropdown-item" href="https://shop.whois.com/website-design/index.php"><span class="title">Website Builder</span><span class="meta">Create a stunning website in minutes using our intuitive builder tool</span><span class="price">Starts at just | <em>$1.58/mo</em></span></a>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown dropdown-wide">
<a class="nav-link toggle" href="#">Servers</a>
<div class="dropdown-menu">
<div class="container-xl">
<div class="row">
<div class="col">
<a class="dropdown-item" href="https://shop.whois.com/virtualserverlinux-hosting.php"><span class="title">Virtual Private Servers</span><span class="meta">The Dedicated server experience made affordable<br>Build high-performance websites and applications</span><span class="price">Starts at just | <em>$11.88/mo</em></span></a>
</div>
<div class="col">
<a class="dropdown-item" href="https://shop.whois.com/dedicated-servers.php"><span class="title">Dedicated Servers</span><span class="meta">Rock-solid performance on dedicated hardware<br>Perfect for larger websites and apps</span><span class="price">Starts at just | <em>$97/mo</em></span></a>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown dropdown-wide">
<a class="nav-link toggle" href="#">Email</a>
<div class="dropdown-menu">
<div class="container-xl">
<div class="row">
<div class="col">
<a class="dropdown-item" href="https://shop.whois.com/titan-business-email-hosting"><span class="title">Titan Business Email</span><span class="meta">Secure and Professional Email for your Business</span><span class="price">Starts at just | <em>$1.08/mo</em></span></a>
</div>
<div class="col">
<a class="dropdown-item" href="https://shop.whois.com/google_apps.php"><span class="title">Google Workspace</span><span class="meta">Intelligent Email for seamless collaboration Includes Google Docs, Sheets & Drive</span><span class="price">30 GB Storage + Collaboration Suite <em></em></span></a>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown dropdown-wide">
<a class="nav-link toggle" href="#">Security</a>
<div class="dropdown-menu">
<div class="container-xl">
<div class="row">
<div class="col">
<a class="dropdown-item" href="https://shop.whois.com/digital-certificate"><span class="title">SSL Certificates</span><span class="meta">Secure your website and customer data</span><span class="price">Starts at just | <em>$9.96/yr</em></span></a>
</div>
<div class="col">
<a class="dropdown-item" href="https://shop.whois.com/sitelock.php"><span class="title">SiteLock</span><span class="meta">Protect your website from Viruses & Hackers</span><span class="price">Starts at just | <em>$16.20/yr</em></span></a>
</div>
<div class="col">
<a class="dropdown-item" href="https://shop.whois.com/codeguard.php"><span class="title">CodeGuard</span><span class="meta">Cloud backup for your website</span><span class="price">Starts at just | <em>$1.88/mo</em></span></a>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="/whois/">Whois</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://shop.whois.com/domain-registration/offers">Deals</a>
</li>
<li class="nav-item dropdown dropdown-wide d-lg-none">
<a class="nav-link toggle" href="#">Help</a>
<div class="dropdown-menu">
<div class="container-xl">
<a class="dropdown-item" href="https://shop.whois.com/support/contact-us.php"><span class="title">Contact Us</span></a>
<a class="dropdown-item" href="https://manage.whois.com/kb"><span class="title">Knowledge Base</span></a>
</div>
</div>
</li>
</ul>
<form action="/search.php">
<div class="input-group input-group-sm">
<input type="text" class="form-control" placeholder="Enter Domain or IP" name="query">
<div class="input-group-append">
<button class="btn btn-vendor" type="submit" aria-label="Whois Search"><svg width="16" height="16"><symbol id="svg-whois-search" viewBox="0 0 24 24"><path d="M21.172 24l-7.387-7.387c-1.388.874-3.024 1.387-4.785 1.387-4.971 0-9-4.029-9-9s4.029-9 9-9 9 4.029 9 9c0 1.761-.514 3.398-1.387 4.785l7.387 7.387-2.828 2.828zm-12.172-8c3.859 0 7-3.14 7-7s-3.141-7-7-7-7 3.14-7 7 3.141 7 7 7z"></path></symbol><use xlink:href="#svg-whois-search"></use></svg><span>WHOIS</span></button>
</div>
</div>
<span class="close-mobile-search"><svg width="22" height="22"><use xlink:href="#svg-close"></use></svg></span>
</form>
<ul class="navbar-nav">
<li class="nav-item d-md-none">
<a class="nav-link open-mobile-search" href="#" aria-label="Whois Search"><svg width="20" height="20"><use xlink:href="#svg-whois-search"></use></svg></a>
</li>
<li class="nav-item dropdown nav-item-acc">
<a class="nav-link" href="#" aria-label="account">
<svg width="20" height="20" viewBox="0 0 24 24"><path d="M20.822 18.096c-3.439-.794-6.64-1.49-5.09-4.418 4.72-8.912 1.251-13.678-3.732-13.678-5.082 0-8.464 4.949-3.732 13.678 1.597 2.945-1.725 3.641-5.09 4.418-3.073.71-3.188 2.236-3.178 4.904l.004 1h23.99l.004-.969c.012-2.688-.092-4.222-3.176-4.935z"></path></svg>
</a>
<div class="dropdown-menu">
<a class="dropdown-item acc-signin unsigned" href="https://shop.whois.com/login.php">Login</a>
<a class="dropdown-item acc-signup unsigned" href="https://shop.whois.com/login.php?action=signup">Create an Account</a>
<a class="dropdown-item acc-reset unsigned" href="https://shop.whois.com/login.php?action=showforgotpass">Forgot Password</a>
<a class="dropdown-item acc-signincp signed" href="https://shop.whois.com/content.php?action=cp_login">My Account</a>
<a class="dropdown-item acc-signout signed" href="https://shop.whois.com/login.php?action=signout">Logout</a>
</div>
</li>
<li class="nav-item nav-item-cart">
<a class="nav-link" href="https://shop.whois.com/checkout.php">
<svg width="23" height="20"><symbol id="svg-shop-cart" viewBox="0 0 122.9 107.5"><path d="M3.9,7.9C1.8,7.9,0,6.1,0,3.9C0,1.8,1.8,0,3.9,0h10.2c0.1,0,0.3,0,0.4,0c3.6,0.1,6.8,0.8,9.5,2.5c3,1.9,5.2,4.8,6.4,9.1 c0,0.1,0,0.2,0.1,0.3l1,4H119c2.2,0,3.9,1.8,3.9,3.9c0,0.4-0.1,0.8-0.2,1.2l-10.2,41.1c-0.4,1.8-2,3-3.8,3v0H44.7 c1.4,5.2,2.8,8,4.7,9.3c2.3,1.5,6.3,1.6,13,1.5h0.1v0h45.2c2.2,0,3.9,1.8,3.9,3.9c0,2.2-1.8,3.9-3.9,3.9H62.5v0 c-8.3,0.1-13.4-0.1-17.5-2.8c-4.2-2.8-6.4-7.6-8.6-16.3l0,0L23,13.9c0-0.1,0-0.1-0.1-0.2c-0.6-2.2-1.6-3.7-3-4.5 c-1.4-0.9-3.3-1.3-5.5-1.3c-0.1,0-0.2,0-0.3,0H3.9L3.9,7.9z M96,88.3c5.3,0,9.6,4.3,9.6,9.6c0,5.3-4.3,9.6-9.6,9.6 c-5.3,0-9.6-4.3-9.6-9.6C86.4,92.6,90.7,88.3,96,88.3L96,88.3z M53.9,88.3c5.3,0,9.6,4.3,9.6,9.6c0,5.3-4.3,9.6-9.6,9.6 c-5.3,0-9.6-4.3-9.6-9.6C44.3,92.6,48.6,88.3,53.9,88.3L53.9,88.3z M33.7,23.7l8.9,33.5h63.1l8.3-33.5H33.7L33.7,23.7z"></path></symbol><use xlink:href="#svg-shop-cart"></use></svg>
<span id="cart-count">0</span>
</a>
</li>
<li class="nav-item d-lg-none">
<a class="nav-link" id="menu-toggler" href="#" aria-label="Main menu"><svg width="24" height="24" viewBox="0 0 24 24"><path d="m1 5v2h22v-2zm0 6v2h22v-2zm0 6v2h22v-2z"></path></svg></a>
</li>
</ul>
</div>
<div class="modal-backdrop fade" id="menubar-backdrop"></div>
</nav>
</header>
<div class="lookup-page container-xl">
<div class="d-flex">
<main>
<div id="security" class="alert alert-warning" style="display: none">
<h4>Security Check</h4>
Please respond to the question below to continue.
<form method="post">
<div class="g-recaptcha" data-sitekey="6Ldp5QMTAAAAADpcINfZtcfiCW_ivhongjwjSx9J" data-callback="recaptchaCallback"></div>
<input type="submit" class="btn btn-primary">
</form>
</div>
<div class="section-avail">
</div>
<form method="post" name="purchaseFormChk" id="purchaseFormChk" action="https://shop.whois.com/domain-registration/index.php">
<input type="hidden" name="action" value="check_availability">
<input type="hidden" name="phrase_search" value="true">
<input type="hidden" id="purchaseDomains" name="txtDomainName">
</form>
<form method="get" name="purchaseForm" id="purchaseForm" action="https://shop.whois.com/cart-name">
<input type="hidden" id="purchaseDomains" name="domain_name">
</form>
<div class="whois-data"><div class="head"><h1>facebook.com</h1> <div class="refresh" id="refresh"><span class="age">Updated 1 day ago</span><svg width="20" height="20" viewBox="0 0 24 24" onclick="javascript:refreshWhois();"><path d="M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z"></path></svg><span class="status"></span></div></div><div class="df-block"><div class="df-heading"><span class="df-ico-domain"></span>Domain Information</div><div class="df-row"><div class="df-label">Domain:</div><div class="df-value">facebook.com</div></div><div class="df-row"><div class="df-label">Registrar:</div><div class="df-value">RegistrarSafe, LLC</div></div><div class="df-row"><div class="df-label">Registered On:</div><div class="df-value">1997-03-29</div></div><div class="df-row"><div class="df-label">Expires On:</div><div class="df-value">2033-03-30</div></div><div class="df-row"><div class="df-label">Updated On:</div><div class="df-value">2024-04-24</div></div><div class="df-row"><div class="df-label">Status:</div><div class="df-value">clientDeleteProhibited<br>clientTransferProhibited<br>clientUpdateProhibited<br>serverDeleteProhibited<br>serverTransferProhibited<br>serverUpdateProhibited</div></div><div class="df-row"><div class="df-label">Name Servers:</div><div class="df-value">a.ns.facebook.com<br>b.ns.facebook.com<br>c.ns.facebook.com<br>d.ns.facebook.com</div></div></div><div class="df-block"><div class="df-heading"><span class="df-ico-regcon"></span>Registrant Contact</div><div class="df-row"><div class="df-label">Name:</div><div class="df-value">Domain Admin</div></div><div class="df-row"><div class="df-label">Organization:</div><div class="df-value">Meta Platforms, Inc.</div></div><div class="df-row"><div class="df-label">Street:</div><div class="df-value">1601 Willow Rd</div></div><div class="df-row"><div class="df-label">City:</div><div class="df-value">Menlo Park</div></div><div class="df-row"><div class="df-label">State:</div><div class="df-value">CA</div></div><div class="df-row"><div class="df-label">Postal Code:</div><div class="df-value">94025</div></div><div class="df-row"><div class="df-label">Country:</div><div class="df-value">US</div></div><div class="df-row"><div class="df-label">Phone:</div><div class="df-value">+1.6505434800</div></div><div class="df-row"><div class="df-label">Email:</div><div class="df-value"><img src="/eimg/c/5c/c5c95f3193f9aee74b0ff9802339cc2b024afd2e.png" class="email" alt="email" loading="lazy">@fb.com</div></div></div><div class="df-block"><div class="df-heading"><span class="df-ico-admcon"></span>Administrative Contact</div><div class="df-row"><div class="df-label">Name:</div><div class="df-value">Domain Admin</div></div><div class="df-row"><div class="df-label">Organization:</div><div class="df-value">Meta Platforms, Inc.</div></div><div class="df-row"><div class="df-label">Street:</div><div class="df-value">1601 Willow Rd</div></div><div class="df-row"><div class="df-label">City:</div><div class="df-value">Menlo Park</div></div><div class="df-row"><div class="df-label">State:</div><div class="df-value">CA</div></div><div class="df-row"><div class="df-label">Postal Code:</div><div class="df-value">94025</div></div><div class="df-row"><div class="df-label">Country:</div><div class="df-value">US</div></div><div class="df-row"><div class="df-label">Phone:</div><div class="df-value">+1.6505434800</div></div><div class="df-row"><div class="df-label">Email:</div><div class="df-value"><img src="/eimg/c/5c/c5c95f3193f9aee74b0ff9802339cc2b024afd2e.png" class="email" alt="email" loading="lazy">@fb.com</div></div></div><div class="df-block"><div class="df-heading"><span class="df-ico-tekcon"></span>Technical Contact</div><div class="df-row"><div class="df-label">Name:</div><div class="df-value">Domain Admin</div></div><div class="df-row"><div class="df-label">Organization:</div><div class="df-value">Meta Platforms, Inc.</div></div><div class="df-row"><div class="df-label">Street:</div><div class="df-value">1601 Willow Rd</div></div><div class="df-row"><div class="df-label">City:</div><div class="df-value">Menlo Park</div></div><div class="df-row"><div class="df-label">State:</div><div class="df-value">CA</div></div><div class="df-row"><div class="df-label">Postal Code:</div><div class="df-value">94025</div></div><div class="df-row"><div class="df-label">Country:</div><div class="df-value">US</div></div><div class="df-row"><div class="df-label">Phone:</div><div class="df-value">+1.6505434800</div></div><div class="df-row"><div class="df-label">Email:</div><div class="df-value"><img src="/eimg/c/5c/c5c95f3193f9aee74b0ff9802339cc2b024afd2e.png" class="email" alt="email" loading="lazy">@fb.com</div></div></div><div class="df-block-raw"><div class="df-heading"><div>Raw Whois Data</div></div><pre class="df-raw" id="registrarData">Domain Name: FACEBOOK.COM
Registry Domain ID: 2320948_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.registrarsafe.com
Registrar URL: https://www.registrarsafe.com
Updated Date: 2024-04-24T19:06:13Z
Creation Date: 1997-03-29T05:00:00Z
Registrar Registration Expiration Date: 2033-03-30T04:00:00Z
Registrar: RegistrarSafe, LLC
Registrar IANA ID: 3237
Registrar Abuse Contact Email: <img src="/eimg/7/87/787d95e27790b1a17309e4c1b1bd81e4f46ae801.png" class="email" alt="email" loading="lazy">@registrarsafe.com
Registrar Abuse Contact Phone: +1.6503087004
Domain Status: clientDeleteProhibited https://www.icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://www.icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://www.icann.org/epp#clientUpdateProhibited
Domain Status: serverDeleteProhibited https://www.icann.org/epp#serverDeleteProhibited
Domain Status: serverTransferProhibited https://www.icann.org/epp#serverTransferProhibited
Domain Status: serverUpdateProhibited https://www.icann.org/epp#serverUpdateProhibited
Registry Registrant ID:
Registrant Name: Domain Admin
Registrant Organization: Meta Platforms, Inc.
Registrant Street: 1601 Willow Rd
Registrant City: Menlo Park
Registrant State/Province: CA
Registrant Postal Code: 94025
Registrant Country: US
Registrant Phone: +1.6505434800
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
Registrant Email: <img src="/eimg/c/5c/c5c95f3193f9aee74b0ff9802339cc2b024afd2e.png" class="email" alt="email" loading="lazy">@fb.com
Registry Admin ID:
Admin Name: Domain Admin
Admin Organization: Meta Platforms, Inc.
Admin Street: 1601 Willow Rd
Admin City: Menlo Park
Admin State/Province: CA
Admin Postal Code: 94025
Admin Country: US
Admin Phone: +1.6505434800
Admin Phone Ext:
Admin Fax:
Admin Fax Ext:
Admin Email: <img src="/eimg/c/5c/c5c95f3193f9aee74b0ff9802339cc2b024afd2e.png" class="email" alt="email" loading="lazy">@fb.com
Registry Tech ID:
Tech Name: Domain Admin
Tech Organization: Meta Platforms, Inc.
Tech Street: 1601 Willow Rd
Tech City: Menlo Park
Tech State/Province: CA
Tech Postal Code: 94025
Tech Country: US
Tech Phone: +1.6505434800
Tech Phone Ext:
Tech Fax:
Tech Fax Ext:
Tech Email: <img src="/eimg/c/5c/c5c95f3193f9aee74b0ff9802339cc2b024afd2e.png" class="email" alt="email" loading="lazy">@fb.com
Name Server: D.NS.FACEBOOK.COM
Name Server: A.NS.FACEBOOK.COM
Name Server: B.NS.FACEBOOK.COM
Name Server: C.NS.FACEBOOK.COM
DNSSEC: unsigned
URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/
>>> Last update of WHOIS database: 2024-11-15T09:30:58Z <<<
Search results obtained from the RegistrarSafe, LLC WHOIS database are
provided by RegistrarSafe, LLC for information purposes only, to assist
users in obtaining information concerning a domain name registration record.
The information contained therein is provided on an "as is" and "as available"
basis and RegistrarSafe, LLC does not guarantee the accuracy or completeness
of any information provided through the WHOIS database. By submitting a WHOIS query,
you agree to the following: (1) that you will use any information provided through
the WHOIS only for lawful purposes; (2) that you will comply with all ICANN rules
and regulations governing use of the WHOIS; (3) that you will not use any information
provided through the WHOIS to enable, or otherwise cause the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail (i.e., spam); or
(4) that you will not use the WHOIS to enable or otherwise utilize high volume,
automated, electronic processes that apply to or attach to RegistrarSafe, LLC or
its systems. RegistrarSafe, LLC reserves the right to modify these terms
at any time and to take any other appropriate actions, including but not limited to
restricting any access that violates these terms and conditions. By submitting this
query, you acknowledge and agree to abide by the foregoing terms, conditions and policies.
For more information on Whois status codes, please visit
https://www.icann.org/resources/pages/epp-status-codes-2014-06-16-en.
</pre></div></div>
</main>
<aside><div class="chiclet-suggest"><div class="title">Interested in similar domains?</div><div class="item"><span>JustFacebook.com</span><a href="javascript:purchaseDomain('JustFacebook.com','suggest');" class="btn btn-sm btn-vendor">Buy Now</a></div><div class="item"><span>FacebookCards.com</span><a href="javascript:purchaseDomain('FacebookCards.com','suggest');" class="btn btn-sm btn-vendor">Buy Now</a></div><div class="item"><span>FacebookTube.com</span><a href="javascript:purchaseDomain('FacebookTube.com','suggest');" class="btn btn-sm btn-vendor">Buy Now</a></div><div class="item"><span>FacebookTrade.com</span><a href="javascript:purchaseDomain('FacebookTrade.com','suggest');" class="btn btn-sm btn-vendor">Buy Now</a></div><div class="item"><span>FacebookGames.net</span><a href="javascript:purchaseDomain('FacebookGames.net','suggest');" class="btn btn-sm btn-vendor">Buy Now</a></div><div class="item"><span>FacebookHosting.net</span><a href="javascript:purchaseDomain('FacebookHosting.net','suggest');" class="btn btn-sm btn-vendor">Buy Now</a></div></div>
<div class="chiclet chiclet-promo">
<div class="slide"><div class="tld">.space</div><p><span class="tld-original-price"><sup>$</sup>29.88</span> <span class="tld-discount-price"><sup>$</sup>1.88</span><a class="green-btn" href="https://shop.whois.com/domain-registration/index.php?tld=space">Buy Now</a></p><p class="offer">*while stocks last</p></div>
</div>
<div class="chiclet chiclet-slides">
<div class="title"><a href="https://shop.whois.com/domain-registration/offers" rel="nofollow">On Sale!</a></div>
<div class="slides" id="promo-slides">
<div class="ss-container" style="position: relative; overflow: hidden; height: 160px;"><div class="ss-viewport"><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: block;" data-lazyloaded="true"><a href="https://shop.whois.com/domain-registration/index.php?tld=biz" rel="nofollow"><img src="/images/tld/biz.png" data-src="/images/tld/biz.png" alt=".biz" width="150" height="120"><div><span>.BIZ @ $2.28</span> <s>$21.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=blog" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/blog.png" alt=".blog" width="150" height="120"><div><span>.BLOG @ $5.28</span> <s>$31.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=co" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/co.png" alt=".co" width="150" height="120"><div><span>.CO @ $3.88</span> <s>$33.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=life" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/life.png" alt=".life" width="150" height="120"><div><span>.LIFE @ $2.88</span> <s>$35.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=info" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/info.png" alt=".info" width="150" height="120"><div><span>.INFO @ $5.18</span> <s>$27.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=link" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/link.png" alt=".link" width="150" height="120"><div><span>.LINK @ $3.88</span> <s>$11.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=lol" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/lol.png" alt=".lol" width="150" height="120"><div><span>.LOL @ $1.98</span> <s>$31.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=online" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/online.png" alt=".online" width="150" height="120"><div><span>.ONLINE @ $6.48</span> <s>$39.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=pro" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/pro.png" alt=".pro" width="150" height="120"><div><span>.PRO @ $4.28</span> <s>$32.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=shop" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/shop.png" alt=".shop" width="150" height="120"><div><span>.SHOP @ $1.88</span> <s>$37.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=site" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/site.png" alt=".site" width="150" height="120"><div><span>.SITE @ $3.98</span> <s>$41.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=uno" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/uno.png" alt=".uno" width="150" height="120"><div><span>.UNO @ $2.88</span> <s>$28.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=vip" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/vip.png" alt=".vip" width="150" height="120"><div><span>.VIP @ $5.88</span> <s>$20.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=website" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/website.png" alt=".website" width="150" height="120"><div><span>.WEBSITE @ $5.28</span> <s>$35.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=world" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/world.png" alt=".world" width="150" height="120"><div><span>.WORLD @ $2.88</span> <s>$36.88</s></div></a></div><div class="slide" style="position: absolute; top: 0px; left: 0px; width: 280px; display: none;"><a href="https://shop.whois.com/domain-registration/index.php?tld=xyz" rel="nofollow"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-src="/images/tld/xyz.png" alt=".xyz" width="150" height="120"><div><span>.XYZ @ $2.88</span> <s>$16.88</s></div></a></div></div></div><div class="ss-pager"><button class="ss-pager-btn ss-active">1</button><button class="ss-pager-btn">2</button><button class="ss-pager-btn">3</button><button class="ss-pager-btn">4</button><button class="ss-pager-btn">5</button><button class="ss-pager-btn">6</button><button class="ss-pager-btn">7</button><button class="ss-pager-btn">8</button><button class="ss-pager-btn">9</button><button class="ss-pager-btn">10</button><button class="ss-pager-btn">11</button><button class="ss-pager-btn">12</button><button class="ss-pager-btn">13</button><button class="ss-pager-btn">14</button><button class="ss-pager-btn">15</button><button class="ss-pager-btn">16</button></div></div>
</div>
<div class="chiclet">
<a href="https://shop.whois.com/optimized-wordpress-hosting.php" rel="nofollow"><img src="/images/chiclet_wph.png" loading="lazy" alt="WordPress Hosting"></a>
</div>
</aside>
</div>
<div class="section-related">
<h2>related domain names</h2>
<ul>
<li><a href="/whois/registrarsafe.com">registrarsafe.com</a></li>
<li><a href="/whois/icann.org">icann.org</a></li>
<li><a href="/whois/fb.com">fb.com</a></li>
<li><a href="/whois/internic.net">internic.net</a></li>
</ul>
</div>
</div>
<footer>
<div class="footer-cols">
<div class="container-xl">
<div class="row">
<div class="col-4">
<img loading="lazy" src="/images/ssmg/logo_footer.png" alt="logo">
<p>Leading provider of web presence solutions that empower you to establish and grow your online presence.</p>
<p>Learn more <a href="/about/">About Us</a></p>
<p class="footer-login">
<a class="btn acc-signin unsigned" href="https://shop.whois.com/login.php">Login</a><a class="btn acc-signincp signed" href="https://shop.whois.com/content.php?action=cp_login">My Account</a> <span>or</span> <a class="btn acc-signup unsigned" href="https://shop.whois.com/login.php?action=signup">Create an Account</a><a class="btn acc-signout signed" href="https://shop.whois.com/login.php?action=signout">Logout</a>
</p>
<a href="https://twitter.com/whoisdotcom" target="_blank" rel="noopener" class="footer-twitter-link"><svg width="18" height="18" viewBox="0 0 24 24"><path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm6.066 9.645c.183 4.04-2.83 8.544-8.164 8.544-1.622 0-3.131-.476-4.402-1.291 1.524.18 3.045-.244 4.252-1.189-1.256-.023-2.317-.854-2.684-1.995.451.086.895.061 1.298-.049-1.381-.278-2.335-1.522-2.304-2.853.388.215.83.344 1.301.359-1.279-.855-1.641-2.544-.889-3.835 1.416 1.738 3.533 2.881 5.92 3.001-.419-1.796.944-3.527 2.799-3.527.825 0 1.572.349 2.096.907.654-.128 1.27-.368 1.824-.697-.215.671-.67 1.233-1.263 1.589.581-.07 1.135-.224 1.649-.453-.384.578-.87 1.084-1.433 1.489z" fill="#fff"></path></svg><span class="ml-2">Follow Us</span></a>
</div>
<div class="col">
<h5>Domains</h5>
<ul>
<li><a href="https://shop.whois.com/domain-registration/index.php">Register Domain Name</a></li>
<li><a href="https://shop.whois.com/domain-registration/transfer/index.php">Transfer Domain Name</a></li>
<li><a href="https://shop.whois.com/domain-registration/domain-registration-price.php">Domain Pricing</a></li>
<li><a href="/whois/">Whois Lookup</a></li>
<li><a href="https://shop.whois.com/domain-registration/domain-name-suggestion-tool.php">Name Suggestion Tool</a></li>
<li><a href="https://shop.whois.com/domain-registration/free-with-domain-registration.php">Free with Every Domain</a></li>
<li><a href="https://shop.whois.com/domain-registration/offers">Domain Offers</a></li>
</ul>
</div>
<div class="col">
<h5>Hosting & Product</h5>
<ul>
<li><a href="https://shop.whois.com/web-hosting/index.php">Linux Hosting</a></li>
<li><a href="https://shop.whois.com/web-hosting/windows-hosting.php">Windows Hosting</a></li>
<li><a href="https://shop.whois.com/optimized-wordpress-hosting.php">WordPress Hosting</a></li>
<li><a href="https://shop.whois.com/reseller-hosting.php">Linux Reseller Hosting</a></li>
<li><a href="https://shop.whois.com/windows-reseller-hosting.php">Windows Reseller Hosting</a></li>
<li><a href="https://shop.whois.com/dedicated-servers.php">Dedicated Servers</a></li>
<li><a href="https://shop.whois.com/cloudhosting.php">Cloud Hosting</a></li>
<li><a href="https://shop.whois.com/website-design/index.php">Website Builder</a></li>
<li><a href="https://shop.whois.com/titan-business-email-hosting">Titan Business Email</a></li>
<li><a href="https://shop.whois.com/google_apps.php">Google Workspace</a></li>
<li><a href="https://shop.whois.com/digital-certificate">SSL Certificates</a></li>
<li><a href="https://shop.whois.com/sitelock.php">Sitelock</a></li>
<li><a href="https://shop.whois.com/codeguard.php">CodeGuard</a></li>
</ul>
</div>
<div class="col">
<h5>Infrastructure</h5>
<ul>
<li><a href="https://shop.whois.com/web-hosting/datacenter-network.php">Datacenter Details</a></li>
<li><a href="https://shop.whois.com/web-hosting/hosting-security.php">Hosting Security</a></li>
<li><a href="https://shop.whois.com/web-hosting/server-monitoring.php">24 x 7 Servers Monitoring</a></li>
<li><a href="https://shop.whois.com/web-hosting/data-protection-recovery.php">Backup and Recovery</a></li>
</ul>
<h5>Support</h5>
<ul>
<li><a target="_blank" rel="noopener" href="https://manage.whois.com/kb">Knowledge Base</a></li>
<li><a href="https://shop.whois.com/support/contact-us.php">Contact Support</a></li>
<li><a href="https://shop.whois.com/support/contact-us.php">Report Abuse</a></li>
<li><a href="/about/">About Whois</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container-xl d-md-flex justify-content-between">
<div>Copyright © Whois.com. All rights reserved</div>
<div><a href="https://shop.whois.com/privacy/privacy" target="_blank" rel="noopener">Privacy</a> | <a href="https://shop.whois.com/support/legal.php" target="_blank" rel="noopener">Terms</a></div>
</div>
</div>
</footer>
<div class="cc-banner"><div class="cc-row container-xl"><span class="cc-message">We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience. <a class="cc-link" href="https://shop.whois.com/privacy/cookies" target="_blank">Learn more</a></span><div class="cc-compliance"><a class="btn cc-dismiss" href="#">Dismiss</a><a class="btn cc-accept" href="#">Accept</a></div></div></div></body></html>