BunnyCDN-DE1-1075
tcp/443 tcp/80
BunnyCDN-DE1-1076
tcp/443 tcp/80
BunnyCDN-DE1-1078
tcp/443 tcp/80
BunnyCDN-DE1-1079
tcp/443 tcp/80
BunnyCDN-DE1-1080
tcp/443 tcp/80
BunnyCDN-DE1-1082
tcp/443 tcp/80
BunnyCDN-DE1-1333
tcp/443 tcp/80
BunnyCDN-DE1-723
tcp/443 tcp/80
BunnyCDN-DE1-755
tcp/443 tcp/80
BunnyCDN-DE1-756
tcp/443 tcp/80
BunnyCDN-DE1-860
tcp/443 tcp/80
BunnyCDN-DE1-863
tcp/443 tcp/80
BunnyCDN-DE1-864
tcp/80
BunnyCDN-DE1-865
tcp/443 tcp/80
BunnyCDN-DE1-874
tcp/443 tcp/80
Open service 2400:52e0:1e00::863:1:80 · fetgen.cloud
2026-01-26 13:03
HTTP/1.1 301 Moved Permanently Date: Mon, 26 Jan 2026 13:03:32 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-863 CDN-PullZone: 5071379 CDN-RequestCountryCode: CA Location: https://fetgen.cloud/ CDN-RequestId: 9cf7a46e248714c4d0238df27a704fdf Referrer-Policy: strict-origin-when-cross-origin Permissions-Policy: camera=(), microphone=(), geolocation=(), payment=() Strict-Transport-Security: max-age=63072000; includeSubDomains; preload Cross-Origin-Embedder-Policy: require-corp Cross-Origin-Resource-Policy: same-origin Cross-Origin-Opener-Policy: same-origin X-Content-Type-Options: nosniff CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 138.199.37.229:80 · fetgen.cloud
2026-01-26 13:03
HTTP/1.1 301 Moved Permanently Date: Mon, 26 Jan 2026 13:03:32 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-865 CDN-PullZone: 5071379 CDN-RequestCountryCode: US Location: https://fetgen.cloud/ CDN-RequestId: 1ec1afef560c0056ca0721f7c9d2e8fd Referrer-Policy: strict-origin-when-cross-origin Permissions-Policy: camera=(), microphone=(), geolocation=(), payment=() Strict-Transport-Security: max-age=63072000; includeSubDomains; preload Cross-Origin-Embedder-Policy: require-corp Cross-Origin-Resource-Policy: same-origin Cross-Origin-Opener-Policy: same-origin X-Content-Type-Options: nosniff CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 138.199.37.229:443 · fetgen.cloud
2026-01-26 13:03
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 13:03:32 GMT
Content-Type: text/html
Content-Length: 6474
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-865
CDN-PullZone: 5071379
CDN-RequestCountryCode: NL
Cache-Control: public, max-age=2592000
Last-Modified: Sun, 04 Jan 2026 23:35:22 GMT
x-amz-request-id: HCFF006900591B8F8C
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 01/10/2026 18:04:04
CDN-EdgeStorageId: 1080
Cross-Origin-Opener-Policy: same-origin
Cross-Origin-Embedder-Policy: require-corp
Cross-Origin-Resource-Policy: same-origin
Strict-Transport-Security: max-age=63072000; includeSubDomains; preload
X-Content-Type-Options: nosniff
Referrer-Policy: strict-origin-when-cross-origin
Permissions-Policy: camera=(), microphone=(), geolocation=(), payment=()
CDN-RequestId: aba3d0fc41ee5938a6dfe523fa206691
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<base href="/" />
<style>
:root {
--font-stack: 'Inter', 'Noto Sans', sans-serif;
--bg-color: #050505;
--text-color: #050505;
}
body {
margin: 0;
background: var(--bg-color);
color: var(--text-color);
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: var(--font-stack);
overflow: hidden;
}
h1 {
font-weight: 700;
font-size: 8rem;
margin: 0;
letter-spacing: -0.04em;
line-height: 1;
}
@media (max-width: 600px) {
h1 { font-size: 4rem; }
}
</style>
<!-- 1. LOAD SHARED LOGIC SYNCHRONOUSLY -->
<script src="./config/loader.js"></script>
<!-- 2. SECURE CONFIG LOADER (Uses globals from ./config/loader.js) -->
<script>
(async () => {
// Use constants/functions from ./config/loader.js
const SALT = window.SALT || 'h3cr8';
const getID = window.getID;
const extractHostname = window.extractHostname;
if (!getID || !extractHostname) {
console.error("Critical: ./config/loader.js failed to load.");
return;
}
//const url = "https://app.example.com/index.html"; // Example with BRAND NAME
const url = window.location.href;
const hostname = extractHostname(url);
// Helper: Inject DOM Elements
const inject = (tag, attr = {}, parent = document.head) => {
const el = document.createElement(tag);
for (const k in attr) el.setAttribute(k, attr[k]);
parent.appendChild(el);
return el;
};
// Helper: Wait for DOM to be ready
const ready = () => new Promise(r => document.readyState !== 'loading' ? r() : document.addEventListener('DOMContentLoaded', r));
// --- CASCADING LOOKUP ---
let config = null;
// Generate hierarchy candidates: e.g. ["sub.domain.com", "domain.com", "com", ""]
const candidates = [];
if (hostname) {
const labels = hostname.split('.');
for (let i = 0; i < labels.length; i++) {
candidates.push(labels.slice(i).join('.'));
}
}
// Fallback: The empty string evaluates to the root hash (gtmu080g3r2e4eqoix3c6r1dw)
candidates.push("");
for (const domain of candidates) {
try {
const hash = await getID(domain, SALT);
// Import config. The config file itself MUST resolve its own asset paths.
config = (await import(`./config/${hash}/config.js`)).default;
if (config) {
console.log(`Config loaded for '${domain}' (${hash})`);
break;
}
} catch (e) {
// alert(domain);
// Config not found for this level, continue cascading up
}
}
// --- APPLY ---
if (config) {
// 1. Expose Config Globally for UI Components (OmniBar, etc.)
window.CONFIG = config;
// 2. Set Meta Title (Browser Tab)
// Priority: metaTitle -> title
document.title = config.metaTitle || config.title;
// 3. Set Theme Color
document.documentElement.style.setProperty('--bg-app', config.color);
if (config.manifest) inject('link', { rel: 'manifest', href: config.manifest });
if (config.color) inject('meta', { name: 'theme-color', content: config.color });
// --- DYNAMIC SVG ICON GENERATION ---
// UPDATED LOGIC: Prioritize explicit Initials over inherited Icons.
// This fixes the issue where spread syntax (...primary) causes specific configs
// to inherit the fallback icon even when they defined 'initials'.
const hasExplicitInitials = (typeof config.initials === 'string');
if (hasExplicitInitials) {
// 1. Explicit Initials (User wanted this)
const initials = config.initials;
const svgString = `
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">
<circle cx="5
Open service 2400:52e0:1e00::863:1:443 · fetgen.cloud
2026-01-26 13:03
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 13:03:32 GMT
Content-Type: text/html
Content-Length: 6474
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-863
CDN-PullZone: 5071379
CDN-RequestCountryCode: US
Cache-Control: public, max-age=2592000
Last-Modified: Sun, 04 Jan 2026 23:35:22 GMT
x-amz-request-id: HCFF006900591B8F8C
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 01/10/2026 18:04:04
CDN-EdgeStorageId: 1080
Cross-Origin-Opener-Policy: same-origin
Cross-Origin-Embedder-Policy: require-corp
Cross-Origin-Resource-Policy: same-origin
Strict-Transport-Security: max-age=63072000; includeSubDomains; preload
X-Content-Type-Options: nosniff
Referrer-Policy: strict-origin-when-cross-origin
Permissions-Policy: camera=(), microphone=(), geolocation=(), payment=()
CDN-RequestId: 9b7c2af267f6593bd44a8dd28c0a2b66
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<base href="/" />
<style>
:root {
--font-stack: 'Inter', 'Noto Sans', sans-serif;
--bg-color: #050505;
--text-color: #050505;
}
body {
margin: 0;
background: var(--bg-color);
color: var(--text-color);
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: var(--font-stack);
overflow: hidden;
}
h1 {
font-weight: 700;
font-size: 8rem;
margin: 0;
letter-spacing: -0.04em;
line-height: 1;
}
@media (max-width: 600px) {
h1 { font-size: 4rem; }
}
</style>
<!-- 1. LOAD SHARED LOGIC SYNCHRONOUSLY -->
<script src="./config/loader.js"></script>
<!-- 2. SECURE CONFIG LOADER (Uses globals from ./config/loader.js) -->
<script>
(async () => {
// Use constants/functions from ./config/loader.js
const SALT = window.SALT || 'h3cr8';
const getID = window.getID;
const extractHostname = window.extractHostname;
if (!getID || !extractHostname) {
console.error("Critical: ./config/loader.js failed to load.");
return;
}
//const url = "https://app.example.com/index.html"; // Example with BRAND NAME
const url = window.location.href;
const hostname = extractHostname(url);
// Helper: Inject DOM Elements
const inject = (tag, attr = {}, parent = document.head) => {
const el = document.createElement(tag);
for (const k in attr) el.setAttribute(k, attr[k]);
parent.appendChild(el);
return el;
};
// Helper: Wait for DOM to be ready
const ready = () => new Promise(r => document.readyState !== 'loading' ? r() : document.addEventListener('DOMContentLoaded', r));
// --- CASCADING LOOKUP ---
let config = null;
// Generate hierarchy candidates: e.g. ["sub.domain.com", "domain.com", "com", ""]
const candidates = [];
if (hostname) {
const labels = hostname.split('.');
for (let i = 0; i < labels.length; i++) {
candidates.push(labels.slice(i).join('.'));
}
}
// Fallback: The empty string evaluates to the root hash (gtmu080g3r2e4eqoix3c6r1dw)
candidates.push("");
for (const domain of candidates) {
try {
const hash = await getID(domain, SALT);
// Import config. The config file itself MUST resolve its own asset paths.
config = (await import(`./config/${hash}/config.js`)).default;
if (config) {
console.log(`Config loaded for '${domain}' (${hash})`);
break;
}
} catch (e) {
// alert(domain);
// Config not found for this level, continue cascading up
}
}
// --- APPLY ---
if (config) {
// 1. Expose Config Globally for UI Components (OmniBar, etc.)
window.CONFIG = config;
// 2. Set Meta Title (Browser Tab)
// Priority: metaTitle -> title
document.title = config.metaTitle || config.title;
// 3. Set Theme Color
document.documentElement.style.setProperty('--bg-app', config.color);
if (config.manifest) inject('link', { rel: 'manifest', href: config.manifest });
if (config.color) inject('meta', { name: 'theme-color', content: config.color });
// --- DYNAMIC SVG ICON GENERATION ---
// UPDATED LOGIC: Prioritize explicit Initials over inherited Icons.
// This fixes the issue where spread syntax (...primary) causes specific configs
// to inherit the fallback icon even when they defined 'initials'.
const hasExplicitInitials = (typeof config.initials === 'string');
if (hasExplicitInitials) {
// 1. Explicit Initials (User wanted this)
const initials = config.initials;
const svgString = `
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">
<circle cx="5
Open service 138.199.37.227:80 · cam.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:34 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-860 CDN-PullZone: 908404 CDN-RequestCountryCode: US Location: https://cam.fetgen.cloud/ CDN-RequestId: 7d5d1ee4024113e1220500cf7131f2fe CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 2400:52e0:1e00::1075:1:443 · cam.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:05:34 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-1075
CDN-PullZone: 908404
CDN-RequestCountryCode: NL
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149D46D4
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:05:33
CDN-EdgeStorageId: 1076
CDN-RequestId: 90c9ea5cf8091ba71e7166124e121d4e
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 138.199.37.227:443 · cam.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:05:34 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-860
CDN-PullZone: 908404
CDN-RequestCountryCode: NL
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149D46D4
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:05:33
CDN-EdgeStorageId: 1076
CDN-RequestId: 8f960f4a6116eb4ec03d19db709e3d1f
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 2400:52e0:1e00::1075:1:80 · cam.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:34 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-1075 CDN-PullZone: 908404 CDN-RequestCountryCode: CA Location: https://cam.fetgen.cloud/ CDN-RequestId: 9acbdd507438710bac8230c4ab8c4630 CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 138.199.37.232:443 · aodai.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:05:33 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-874
CDN-PullZone: 908404
CDN-RequestCountryCode: DE
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149D468F
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:05:33
CDN-EdgeStorageId: 723
CDN-RequestId: 4db5e00906b4b615aea948a441994564
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 2400:52e0:1e00::723:1:443 · aodai.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:05:34 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-723
CDN-PullZone: 908404
CDN-RequestCountryCode: GB
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149D468F
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:05:33
CDN-EdgeStorageId: 723
CDN-RequestId: 734015b53e0ffd9b44d286e4172e2881
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 138.199.37.232:80 · aodai.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:33 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-874 CDN-PullZone: 908404 CDN-RequestCountryCode: GB Location: https://aodai.fetgen.cloud/ CDN-RequestId: 47d0906ab15f747826d5574aa2da8349 CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 2400:52e0:1e00::723:1:80 · aodai.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:33 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-723 CDN-PullZone: 908404 CDN-RequestCountryCode: GB Location: https://aodai.fetgen.cloud/ CDN-RequestId: f028593a14a7fab70958681473cba93e CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 2400:52e0:1e00::755:1:80 · wetting.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:34 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-755 CDN-PullZone: 908404 CDN-RequestCountryCode: SG Location: https://wetting.fetgen.cloud/ CDN-RequestId: c29c7fdfff14e79b70d7ab04acd08809 CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 169.150.247.37:443 · wetting.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:05:34 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-1080
CDN-PullZone: 908404
CDN-RequestCountryCode: CA
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149D49CC
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:05:34
CDN-EdgeStorageId: 756
CDN-RequestId: 7c6f7d0ed1c56e2a6f59aab6d66060be
CDN-Cache: MISS
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 169.150.247.37:80 · wetting.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:33 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-1080 CDN-PullZone: 908404 CDN-RequestCountryCode: DE Location: https://wetting.fetgen.cloud/ CDN-RequestId: 4579d64402509b85c76bf7e8f264adbd CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 2400:52e0:1e00::755:1:443 · wetting.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:05:34 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-755
CDN-PullZone: 908404
CDN-RequestCountryCode: US
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149D42A8
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:05:33
CDN-EdgeStorageId: 1334
CDN-RequestId: 84fb9f63cabe9a0c22139560f10c8149
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 138.199.37.227:80 · cum.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:23 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-860 CDN-PullZone: 908404 CDN-RequestCountryCode: US Location: https://cum.fetgen.cloud/ CDN-RequestId: 28cf6da52d909fad87ca5f8bbb76c1a3 CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 2400:52e0:1e00::864:1:80 · cum.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:22 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-864 CDN-PullZone: 908404 CDN-RequestCountryCode: DE Location: https://cum.fetgen.cloud/ CDN-RequestId: dcd0bd83e262585e7748cf85bea8d6b5 CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 169.150.247.35:80 · lolita.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:22 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-1078 CDN-PullZone: 908404 CDN-RequestCountryCode: DE Location: https://lolita.fetgen.cloud/ CDN-RequestId: 5006995f1bd955a6ca66a130e192a14e CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 138.199.37.227:443 · cum.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:05:22 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-860
CDN-PullZone: 908404
CDN-RequestCountryCode: NL
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149CF81B
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:05:22
CDN-EdgeStorageId: 1054
CDN-RequestId: d46f298365af4f2028c1b61166a25611
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 169.150.247.35:443 · lolita.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:05:22 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-1078
CDN-PullZone: 908404
CDN-RequestCountryCode: GB
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149D0960
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:05:21
CDN-EdgeStorageId: 874
CDN-RequestId: 3b621e6371dff7a7284522b3b20edb8c
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 2400:52e0:1e00::865:1:80 · lolita.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:22 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-865 CDN-PullZone: 908404 CDN-RequestCountryCode: DE Location: https://lolita.fetgen.cloud/ CDN-RequestId: 6bc0ebdc85680c811e79d8eaeec8af1c CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 2400:52e0:1e00::1075:1:80 · pantyhood.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:23 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-1075 CDN-PullZone: 908404 CDN-RequestCountryCode: CA Location: https://pantyhood.fetgen.cloud/ CDN-RequestId: a59871d93791432a7fa8e5d6af7a204a CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 2400:52e0:1e00::860:1:80 · sperm.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:23 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-860 CDN-PullZone: 908404 CDN-RequestCountryCode: SG Location: https://sperm.fetgen.cloud/ CDN-RequestId: 541a67c5d6e0d8dd9275ff8050a326b0 CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 169.150.247.36:443 · pantyhood.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:05:23 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-1079
CDN-PullZone: 908404
CDN-RequestCountryCode: CA
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149D2404
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:05:23
CDN-EdgeStorageId: 1080
CDN-RequestId: ff634a9b5fca7e501c61b0539479ba20
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 169.150.247.36:80 · pantyhood.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:05:22 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-1079 CDN-PullZone: 908404 CDN-RequestCountryCode: NL Location: https://pantyhood.fetgen.cloud/ CDN-RequestId: 82ce995294a453d49f6beea7e44a7ba9 CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 2400:52e0:1e00::1075:1:443 · pantyhood.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:05:22 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-1075
CDN-PullZone: 908404
CDN-RequestCountryCode: DE
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149CFBEE
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:05:22
CDN-EdgeStorageId: 860
CDN-RequestId: 74ab04280bf6b01f3a8ce5dd71294527
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 169.150.247.33:443 · sperm.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:05:23 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-1076
CDN-PullZone: 908404
CDN-RequestCountryCode: DE
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149D2458
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:05:23
CDN-EdgeStorageId: 1078
CDN-RequestId: 664deef34d57bc55c9ae0dd2b7b57d93
CDN-Cache: MISS
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 2400:52e0:1e00::860:1:443 · sperm.fetgen.cloud
2025-12-23 22:05
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:05:34 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-860
CDN-PullZone: 908404
CDN-RequestCountryCode: DE
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149D1F60
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:05:34
CDN-EdgeStorageId: 1078
CDN-RequestId: 42fe78eca59cb7cf68c1951b99eeeb74
CDN-Cache: MISS
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 185.111.111.159:80 · jewelry.fetgen.cloud
2025-12-23 22:04
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:04:33 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-1333 CDN-PullZone: 908404 CDN-RequestCountryCode: CA Location: https://jewelry.fetgen.cloud/ CDN-RequestId: 21d22ba2fd934fdcde588b9d27fcdcdc CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 2400:52e0:1e00::1076:1:443 · jewelry.fetgen.cloud
2025-12-23 22:04
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:04:33 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-1076
CDN-PullZone: 908404
CDN-RequestCountryCode: US
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149C6D55
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:04:32
CDN-EdgeStorageId: 1077
CDN-RequestId: e5a9e62c48b41623b21df655e160d411
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 185.111.111.159:443 · jewelry.fetgen.cloud
2025-12-23 22:04
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:04:33 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-1333
CDN-PullZone: 908404
CDN-RequestCountryCode: CA
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149C6D55
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:04:32
CDN-EdgeStorageId: 1077
CDN-RequestId: b0a4d8f0c42c48e3dab694e141c5f6e6
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 2400:52e0:1e00::1076:1:80 · jewelry.fetgen.cloud
2025-12-23 22:04
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:04:33 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-1076 CDN-PullZone: 908404 CDN-RequestCountryCode: US Location: https://jewelry.fetgen.cloud/ CDN-RequestId: 1336a289a995587437a3765c2808212d CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 2400:52e0:1e00::1082:1:443 · blindfold.fetgen.cloud
2025-12-23 22:04
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:04:33 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-1082
CDN-PullZone: 908404
CDN-RequestCountryCode: US
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149C68CB
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:04:28
CDN-EdgeStorageId: 1047
CDN-RequestId: a6b875648f237233a8f3eb8e7289fd8d
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 2400:52e0:1e00::1082:1:80 · blindfold.fetgen.cloud
2025-12-23 22:04
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:04:33 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-1082 CDN-PullZone: 908404 CDN-RequestCountryCode: CA Location: https://blindfold.fetgen.cloud/ CDN-RequestId: 79cdc4c098cac373713e2ac38766bedc CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 89.187.169.47:443 · blindfold.fetgen.cloud
2025-12-23 22:04
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:04:32 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-756
CDN-PullZone: 908404
CDN-RequestCountryCode: DE
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149C68CB
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:04:28
CDN-EdgeStorageId: 1047
CDN-RequestId: 319dae979a497a14e33eb7863bca2200
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 89.187.169.47:80 · blindfold.fetgen.cloud
2025-12-23 22:04
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:04:33 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-756 CDN-PullZone: 908404 CDN-RequestCountryCode: US Location: https://blindfold.fetgen.cloud/ CDN-RequestId: f8f2067c12739865079ff7cda972f336 CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 2400:52e0:1e00::1080:1:80 · cape.fetgen.cloud
2025-12-23 22:04
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:04:31 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-1080 CDN-PullZone: 908404 CDN-RequestCountryCode: US Location: https://cape.fetgen.cloud/ CDN-RequestId: c08d9b63fec9fd0581e726fb9bb36514 CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 169.150.247.33:443 · cape.fetgen.cloud
2025-12-23 22:04
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:04:31 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-1076
CDN-PullZone: 908404
CDN-RequestCountryCode: US
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149C6BB3
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:04:31
CDN-EdgeStorageId: 1082
CDN-RequestId: 494e067b221a77340d55de1e7fc23ea6
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
Open service 169.150.247.33:80 · cape.fetgen.cloud
2025-12-23 22:04
HTTP/1.1 301 Moved Permanently Date: Tue, 23 Dec 2025 22:04:31 GMT Content-Type: text/html Content-Length: 166 Connection: close Server: BunnyCDN-DE1-1076 CDN-PullZone: 908404 CDN-RequestCountryCode: IN Location: https://cape.fetgen.cloud/ CDN-RequestId: dd317e5a5a13db74cd85929983c1fe15 CDN-RequestTime: 0 Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>openresty</center> </body> </html>
Open service 2400:52e0:1e00::1080:1:443 · cape.fetgen.cloud
2025-12-23 22:04
HTTP/1.1 200 OK
Date: Tue, 23 Dec 2025 22:04:30 GMT
Content-Type: text/html
Content-Length: 627
Connection: close
Vary: Accept-Encoding
Server: BunnyCDN-DE1-1080
CDN-PullZone: 908404
CDN-RequestCountryCode: GB
Cache-Control: public, max-age=31919000
Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
x-amz-request-id: HCFF006900149C6E88
CDN-ProxyVer: 1.43
CDN-RequestPullSuccess: True
CDN-RequestPullCode: 206
CDN-CachedAt: 12/23/2025 22:04:30
CDN-EdgeStorageId: 1049
CDN-RequestId: cab778aaefa08b2a090377f70ccffcb1
CDN-Cache: HIT
CDN-Status: 200
CDN-RequestTime: 0
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>body{background:#111}</style>
<script>
(()=>{
const d=document;
const p=new URLSearchParams(location.search).get('p')!='0';
const c={
b:'https://app.beautrait.com/',
j:`main${p?'':'.dev'}.js`,
s:`style${p?'':'.dev'}.css`,
t:p?'202508151815':+new Date
};
const T=`?t=${c.t}`;
const[b,s,j]=['base','link','script'].map(t=>d.createElement(t));
b.href=c.b;
s.rel='stylesheet';
s.href=c.s+T;
j.src=c.j+T;
j.defer=!0;
d.head.append(b,s,j);
})();
</script>
</head>
<body></body>
</html>
169.150.247.35 2 2400:52e0:1e00::1082:1 2 138.199.37.227 2 2400:52e0:1e00::1075:1 2 169.150.247.33 2 2400:52e0:1e00::864:1 1 169.150.247.36 1 169.150.247.37 1 2400:52e0:1e00::863:1 1 2400:52e0:1e00::723:1 1 2400:52e0:1e00::865:1 1 2400:52e0:1e00::860:1 1 2400:52e0:1e00::755:1 1 138.199.37.232 1 185.111.111.159 1 2400:52e0:1e00::1076:1 1 138.199.37.229 1 89.187.169.47 1 2400:52e0:1e00::1080:1 1