Help
RSS
API
Feed
Maltego
Contact
Domain > cyberwayfarer.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-09-26
3.161.136.113
(
ClassC
)
2025-10-17
3.163.24.95
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyServer: CloudFrontDate: Fri, 17 Oct 2025 13:08:29 GMTContent-Type: text/htmlContent-Length: 167Connection: keep-aliveLocation: https://cyberwayfarer.com/X-Cache: Redirect from cloudfrontVia: 1.1 2f64e28be83a9bbc21e5afb1a93fec2c.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P2X-Amz-Cf-Id: neU5gTRuUDmYe2p_V_2uLKtQ3JhB8owaox9HGsqCtuX1b5PUE8qqdg html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>hr>center>CloudFront/center>/body>/html>
Port 443
HTTP/1.1 200 OKContent-Type: text/htmlContent-Length: 5027Connection: keep-aliveDate: Fri, 17 Oct 2025 13:08:30 GMTLast-Modified: Tue, 23 Sep 2025 02:44:11 GMTETag: 67d508c2acc8a548b95ce6eb728477dbServer: AmazonS3X-Cache: Miss from cloudfrontVia: 1.1 bafc250db6f7cbd43d1e23b2a31d8002.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P2X-Amz-Cf-Id: 5uelT8fmZhWMQdfz9KVXZ6wEOjc8TTKrP9VE_OoEgG_bcfKPL5pBtA !doctype html>html langen>head> meta charsetutf-8 /> meta nameviewport contentwidthdevice-width, initial-scale1 /> title>Cyber Wayfarer | Coming Soon/title> meta namedescription contentCyber Wayfarer — Executive-grade vCISO services for SMBs. Launching soon. /> link hrefhttps://fonts.googleapis.com/css2?familyInter:wght@300;400;600;800&displayswap relstylesheet> style> body {margin:0;height:100vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#0b1220,#1e293b);font-family:Inter, sans-serif;color:#f1f5f9;overflow:hidden;} .wrapper {text-align:center;max-width:600px;padding:20px;} .logo {font-size:clamp(40px,6vw,72px);font-weight:800;color:#38bdf8;position:relative;display:inline-block;animation: glowPulse 2.5s infinite ease-in-out;} @keyframes glowPulse {0%,100%{text-shadow:0 0 8px #38bdf8,0 0 16px #38bdf8;}50%{text-shadow:0 0 20px #38bdf8,0 0 40px #38bdf8;}} .orbit {position:absolute;top:50%;left:50%;width:160px;height:160px;margin:-80px 0 0 -80px;border:3px solid rgba(56,189,248,.3);border-radius:50%;animation: spin 12s linear infinite;} .orbit::before {content:;position:absolute;top:-6px;left:50%;width:12px;height:12px;background:#38bdf8;border-radius:50%;transform:translateX(-50%);} @keyframes spin {to{transform:rotate(360deg);}} p {font-size:clamp(16px,2vw,22px);margin:40px 0 30px;color:#94a3b8;animation: fadeIn 1.5s ease forwards;} @keyframes fadeIn {from{opacity:0}to{opacity:1}} .notify {margin-top:10px;} inputtypeemail{padding:12px;border-radius:8px;border:none;outline:none;width:65%;max-width:280px;margin-bottom:12px;} button {padding:12px 20px;border:none;border-radius:8px;background:#38bdf8;color:#0b1220;font-weight:600;cursor:pointer;transition:background .3s;} button:hover {background:#0ea5e9;} footer {position:absolute;bottom:20px;left:50%;transform:translateX(-50%);color:#475569;font-size:14px;} /style>/head>body> div classwrapper> !div classorbit>!/div> img src/images/cw-logo-dark.png alt width350 height350 /> div classlogo>COMING SOON!/div> p>Executive‑grade strong>vCISO services/strong> for SMBs.br/>We’re launching soon. Stay tuned./p> div classnotify> form onsubmitsubscribe(event)> input typeemail idemail placeholderYour email required /> input typetext idcompany namecompany autocompleteoff tabindex-1 aria-hiddentrue styleposition:absolute;left:-9999px;opacity:0; /> br/> button idbtn typesubmit>Notify Me/button> /form> p idmsg stylecolor:#94a3b8;font-size:14px;>/p> /div> /div> footer>© span idyear>/span> Cyber Wayfarer/footer>script>// Current year in footerdocument.getElementById(year).textContent new Date().getFullYear();// Configure your backend endpoint:// - Formspree: https://formspree.io/f/xxxxxxxx// - Basin: https://usebasin.com/f/xxxxxxxx// - Netlify: use data-netlify on the form instead of fetchconst ENDPOINT https://usebasin.com/f/92e262a44e96;async function subscribe(e){e.preventDefault();const emailEl document.getElementById(email);const msgEl document.getElementById(msg);const btnEl document.getElementById(btn);const hpEl document.getElementById(company);const honeypot hpEl ? hpEl.value : ;const email (emailEl.value || ).trim();const at email.indexOf(@);const dot email.indexOf(., at + 1);const valid at > 0 && dot > at + 1;if(honeypot){msgEl.textContent Thanks!;return false;}if(!valid){msgEl.textContent Please enter a valid work email.;emailEl.focus();return false;}const last +localStorage.getItem(cw_last_submit) || 0;if(Date.now() - last 30000){msgEl.textContent You recently signed up; please try again soon.;return false;}btnEl.disabled true;btnEl.textContent Submitting...;msgEl.textContent ;if(!ENDPOINT){msgEl.textContent Thanks, + email + ! We will notify you when we launch.;emailEl.value ;btnEl.disabled false;btnEl.textContent Notify Me;localStorage.setItem(cw_last_submit, String(Date.now()));return false;}try{const res await fetch(ENDPOINT, {method: POST,headers: { Content-Type: application/json, Accept: application/json },body: JSON.stringify({ email: email })});if(res.ok){msgEl.textContent Thanks! You are on the list.;emailEl.value ;localStorage.setItem(cw_last_submit, String(Date.now()));} else {msgEl.textContent Submission failed. Please email hello@cyberwayfarer.com.;}} catch(err){msgEl.textContent Network error. Please try again later.;} finally {btnEl.disabled false;btnEl.textContent Notify Me;}return false;}/script>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]