Domain fetgen.click
Germany
Datacamp Limited
Software information

BunnyCDN-DE1-1048

tcp/443 tcp/80

BunnyCDN-DE1-1075

tcp/443 tcp/80

BunnyCDN-DE1-1076

tcp/443 tcp/80

BunnyCDN-DE1-1077

tcp/443 tcp/80

BunnyCDN-DE1-1079

tcp/443 tcp/80

BunnyCDN-DE1-1080

tcp/443 tcp/80

BunnyCDN-DE1-722

tcp/443 tcp/80

BunnyCDN-DE1-723

tcp/443 tcp/80

BunnyCDN-DE1-752

tcp/443 tcp/80

BunnyCDN-DE1-755

tcp/443 tcp/80

BunnyCDN-DE1-860

tcp/443 tcp/80

BunnyCDN-DE1-864

tcp/443 tcp/80

BunnyCDN-DE1-874

tcp/443 tcp/80

  • Open service 169.150.247.34:443 · fetgen.click

    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-1077
    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: HCFF00690058D771CF
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 01/10/2026 16:27:41
    CDN-EdgeStorageId: 860
    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: 3572b2c708665662aa01aff22f3e57c6
    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
    Found 2026-01-26 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::755:1:443 · fetgen.click

    2026-01-26 13:03

    HTTP/1.1 200 OK
    Date: Mon, 26 Jan 2026 13:03:31 GMT
    Content-Type: text/html
    Content-Length: 6474
    Connection: close
    Vary: Accept-Encoding
    Server: BunnyCDN-DE1-755
    CDN-PullZone: 5071379
    CDN-RequestCountryCode: GB
    Cache-Control: public, max-age=2592000
    Last-Modified: Sun, 04 Jan 2026 23:35:22 GMT
    x-amz-request-id: HCFF00690058D771CF
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 01/10/2026 16:27:41
    CDN-EdgeStorageId: 860
    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: 366236198dd1ef86548488c408fd4124
    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
    Found 2026-01-26 by HttpPlugin
    Create report
  • Open service 169.150.247.34:80 · fetgen.click

    2026-01-26 13:03

    HTTP/1.1 301 Moved Permanently
    Date: Mon, 26 Jan 2026 13:03:31 GMT
    Content-Type: text/html
    Content-Length: 166
    Connection: close
    Server: BunnyCDN-DE1-1077
    CDN-PullZone: 5071379
    CDN-RequestCountryCode: DE
    Location: https://fetgen.click/
    CDN-RequestId: d2e14d89ddea826eced979977a7bd16b
    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>
    
    Found 2026-01-26 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::755:1:80 · fetgen.click

    2026-01-26 13:03

    HTTP/1.1 301 Moved Permanently
    Date: Mon, 26 Jan 2026 13:03:31 GMT
    Content-Type: text/html
    Content-Length: 166
    Connection: close
    Server: BunnyCDN-DE1-755
    CDN-PullZone: 5071379
    CDN-RequestCountryCode: US
    Location: https://fetgen.click/
    CDN-RequestId: 4125b34eefc9628931b0fff872e316fe
    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>
    
    Found 2026-01-26 by HttpPlugin
    Create report
  • Open service 138.199.37.232:80 · blindfold.fetgen.click

    2025-12-23 23:04

    HTTP/1.1 301 Moved Permanently
    Date: Tue, 23 Dec 2025 23:04:30 GMT
    Content-Type: text/html
    Content-Length: 166
    Connection: close
    Server: BunnyCDN-DE1-874
    CDN-PullZone: 908404
    CDN-RequestCountryCode: US
    Location: https://blindfold.fetgen.click/
    CDN-RequestId: 7915f8e4688e608b7af1492c739f396a
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::874:1:443 · blindfold.fetgen.click

    2025-12-23 23:04

    HTTP/1.1 200 OK
    Date: Tue, 23 Dec 2025 23:04:30 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: HCFF00690014BE6552
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 23:04:30
    CDN-EdgeStorageId: 756
    CDN-RequestId: 39e508fbfa415f5b0472345392282ceb
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::874:1:80 · blindfold.fetgen.click

    2025-12-23 23:04

    HTTP/1.1 301 Moved Permanently
    Date: Tue, 23 Dec 2025 23:04:30 GMT
    Content-Type: text/html
    Content-Length: 166
    Connection: close
    Server: BunnyCDN-DE1-874
    CDN-PullZone: 908404
    CDN-RequestCountryCode: DE
    Location: https://blindfold.fetgen.click/
    CDN-RequestId: 12a85738f699658fcd4fa3e21af8b0d7
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 138.199.37.232:443 · blindfold.fetgen.click

    2025-12-23 23:04

    HTTP/1.1 200 OK
    Date: Tue, 23 Dec 2025 23:04:30 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: HCFF00690014BE6552
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 23:04:30
    CDN-EdgeStorageId: 756
    CDN-RequestId: 5aa1beaffc0bf9c62a6939905249097c
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 185.59.220.199:80 · wetting.fetgen.click

    2025-12-23 22:05

    HTTP/1.1 301 Moved Permanently
    Date: Tue, 23 Dec 2025 22:05:45 GMT
    Content-Type: text/html
    Content-Length: 166
    Connection: close
    Server: BunnyCDN-DE1-722
    CDN-PullZone: 908404
    CDN-RequestCountryCode: US
    Location: https://wetting.fetgen.click/
    CDN-RequestId: b7ac3dc2deefd292f6e698863d105772
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::722:1:443 · wetting.fetgen.click

    2025-12-23 22:05

    HTTP/1.1 200 OK
    Date: Tue, 23 Dec 2025 22:05:47 GMT
    Content-Type: text/html
    Content-Length: 627
    Connection: close
    Vary: Accept-Encoding
    Server: BunnyCDN-DE1-722
    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: HCFF006900149D79AF
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:44
    CDN-EdgeStorageId: 752
    CDN-RequestId: 660b591fcb3457ebf477c8b444c0b903
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::722:1:80 · wetting.fetgen.click

    2025-12-23 22:05

    HTTP/1.1 301 Moved Permanently
    Date: Tue, 23 Dec 2025 22:05:44 GMT
    Content-Type: text/html
    Content-Length: 166
    Connection: close
    Server: BunnyCDN-DE1-722
    CDN-PullZone: 908404
    CDN-RequestCountryCode: NL
    Location: https://wetting.fetgen.click/
    CDN-RequestId: c0e62f14ff5aa4f95f4f32e053b2155f
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 185.59.220.199:443 · wetting.fetgen.click

    2025-12-23 22:05

    HTTP/1.1 200 OK
    Date: Tue, 23 Dec 2025 22:05:44 GMT
    Content-Type: text/html
    Content-Length: 627
    Connection: close
    Vary: Accept-Encoding
    Server: BunnyCDN-DE1-722
    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: HCFF006900149D79AF
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:44
    CDN-EdgeStorageId: 752
    CDN-RequestId: f22d38e3a0a9b509d6939452692e86ef
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::723:1:443 · cape.fetgen.click

    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: SG
    Cache-Control: public, max-age=31919000
    Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
    x-amz-request-id: HCFF006900149D4782
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:33
    CDN-EdgeStorageId: 723
    CDN-RequestId: 2cfa991a01d4ea921815ca4920b10ffb
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 185.59.220.198:80 · cape.fetgen.click

    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: NL
    Location: https://cape.fetgen.click/
    CDN-RequestId: 86f1132c39ff75ecbf5e4a4ad49bbf78
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 185.59.220.198:443 · cape.fetgen.click

    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: US
    Cache-Control: public, max-age=31919000
    Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
    x-amz-request-id: HCFF006900149D4782
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:33
    CDN-EdgeStorageId: 723
    CDN-RequestId: 7679c46ecbd3a0b14073c2da7711007e
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::723:1:80 · cape.fetgen.click

    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: CA
    Location: https://cape.fetgen.click/
    CDN-RequestId: 62279489f54c296e1737218ffb56709d
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::1079:1:443 · leather.fetgen.click

    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-1079
    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: HCFF006900149D4311
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:33
    CDN-EdgeStorageId: 1082
    CDN-RequestId: 1d5ab2a49122398e0b94da960b62ad1b
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 138.199.37.227:443 · leather.fetgen.click

    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-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: HCFF006900149D3CEF
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:33
    CDN-EdgeStorageId: 1076
    CDN-RequestId: 2572f7a533dfa2cfab22384c436e0355
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::1079:1:80 · leather.fetgen.click

    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-1079
    CDN-PullZone: 908404
    CDN-RequestCountryCode: DE
    Location: https://leather.fetgen.click/
    CDN-RequestId: 352670be4ab2409001347cac0d4cc85b
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 138.199.37.227:80 · leather.fetgen.click

    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-860
    CDN-PullZone: 908404
    CDN-RequestCountryCode: DE
    Location: https://leather.fetgen.click/
    CDN-RequestId: f5a27fee53f5858246187035da22e0a9
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::1075:1:80 · pantyhood.fetgen.click

    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.click/
    CDN-RequestId: 83d04d344c788bdea3acc6a4a608492a
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::1075:1:443 · pantyhood.fetgen.click

    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-1075
    CDN-PullZone: 908404
    CDN-RequestCountryCode: SG
    Cache-Control: public, max-age=31919000
    Last-Modified: Fri, 15 Aug 2025 16:16:06 GMT
    x-amz-request-id: HCFF006900149D23F3
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:23
    CDN-EdgeStorageId: 1080
    CDN-RequestId: 47e62b56c9b7df785cc06935e35b0c3c
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 169.150.247.37:80 · pantyhood.fetgen.click

    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-1080
    CDN-PullZone: 908404
    CDN-RequestCountryCode: DE
    Location: https://pantyhood.fetgen.click/
    CDN-RequestId: 61ade58a381dc2b2c2441a8833de8609
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 169.150.247.37:80 · cum.fetgen.click

    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-1080
    CDN-PullZone: 908404
    CDN-RequestCountryCode: GB
    Location: https://cum.fetgen.click/
    CDN-RequestId: c93f9e6d50a6050180b3eef2a5414542
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 138.199.36.8:443 · jewelry.fetgen.click

    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-1048
    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: HCFF006900149D03F1
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:22
    CDN-EdgeStorageId: 1077
    CDN-RequestId: fcaef949f0723034615abfc25b359d89
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::1076:1:80 · jewelry.fetgen.click

    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-1076
    CDN-PullZone: 908404
    CDN-RequestCountryCode: DE
    Location: https://jewelry.fetgen.click/
    CDN-RequestId: edbb95279bb003516cefbdec63a35270
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 169.150.247.36:443 · lolita.fetgen.click

    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-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: HCFF00690013F61680
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 15:03:20
    CDN-EdgeStorageId: 874
    CDN-RequestId: 64cf409a72a574fa7d7cd761f376d105
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::1076:1:443 · jewelry.fetgen.click

    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-1076
    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: HCFF006900149CEE37
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:22
    CDN-EdgeStorageId: 1333
    CDN-RequestId: d902cd456e38199e2c8bcbf22d4fc213
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 169.150.247.37:443 · cum.fetgen.click

    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-1080
    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: HCFF006900149D2074
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:22
    CDN-EdgeStorageId: 752
    CDN-RequestId: b79861565f02479336751d0f6e7ecd19
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 169.150.247.36:80 · lolita.fetgen.click

    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: US
    Location: https://lolita.fetgen.click/
    CDN-RequestId: 3c47083bf3cee5e4a137e7f6f7d8ae56
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::1048:1:80 · cum.fetgen.click

    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-1048
    CDN-PullZone: 908404
    CDN-RequestCountryCode: CA
    Location: https://cum.fetgen.click/
    CDN-RequestId: 4bf4c201b179cf47d24a38e689d40c89
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::1048:1:80 · sperm.fetgen.click

    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-1048
    CDN-PullZone: 908404
    CDN-RequestCountryCode: GB
    Location: https://sperm.fetgen.click/
    CDN-RequestId: 0cb1bbe9abdf754b94ad16dda48a2925
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::1048:1:443 · sperm.fetgen.click

    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-1048
    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: HCFF006900149D2283
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:23
    CDN-EdgeStorageId: 1334
    CDN-RequestId: bb802330c8e90d69499d4f5dd3ce1f0f
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 138.199.37.232:80 · sperm.fetgen.click

    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-874
    CDN-PullZone: 908404
    CDN-RequestCountryCode: DE
    Location: https://sperm.fetgen.click/
    CDN-RequestId: 05bd7e498437b3a0fb0a47ef75471a9c
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 138.199.37.232:443 · sperm.fetgen.click

    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-874
    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: HCFF0069001139954D
    CDN-ProxyVer: 1.41
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/22/2025 18:55:04
    CDN-EdgeStorageId: 1054
    CDN-RequestId: 53ae7f1ea6901c099ab6f4b4ac5d70a1
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::755:1:443 · cam.fetgen.click

    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-755
    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: HCFF006900149D1AB4
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:21
    CDN-EdgeStorageId: 1076
    CDN-RequestId: 76e66ccf84b38ac15bc715259b8dab30
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::755:1:80 · cam.fetgen.click

    2025-12-23 22:05

    HTTP/1.1 301 Moved Permanently
    Date: Tue, 23 Dec 2025 22:05:21 GMT
    Content-Type: text/html
    Content-Length: 166
    Connection: close
    Server: BunnyCDN-DE1-755
    CDN-PullZone: 908404
    CDN-RequestCountryCode: GB
    Location: https://cam.fetgen.click/
    CDN-RequestId: f88a4e93127d092b0b9d16b23d305f20
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 138.199.37.230:443 · cam.fetgen.click

    2025-12-23 22:05

    HTTP/1.1 200 OK
    Date: Tue, 23 Dec 2025 22:05:21 GMT
    Content-Type: text/html
    Content-Length: 627
    Connection: close
    Vary: Accept-Encoding
    Server: BunnyCDN-DE1-864
    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: HCFF006900149D1AB4
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:21
    CDN-EdgeStorageId: 1076
    CDN-RequestId: ec21e1230724cadc77d1a3d6a9e29035
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 138.199.37.230:80 · cam.fetgen.click

    2025-12-23 22:05

    HTTP/1.1 301 Moved Permanently
    Date: Tue, 23 Dec 2025 22:05:21 GMT
    Content-Type: text/html
    Content-Length: 166
    Connection: close
    Server: BunnyCDN-DE1-864
    CDN-PullZone: 908404
    CDN-RequestCountryCode: GB
    Location: https://cam.fetgen.click/
    CDN-RequestId: d4395565fc5b28e16382b8c21a0e71d4
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 79.127.216.111:443 · aodai.fetgen.click

    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-752
    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: HCFF006900149D1528
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:22
    CDN-EdgeStorageId: 1049
    CDN-RequestId: 03322120ec3ed41d3522362ff3400304
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::1079:1:80 · aodai.fetgen.click

    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: SG
    Location: https://aodai.fetgen.click/
    CDN-RequestId: 427095228ac4859467a46ed7bcae349f
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 79.127.216.111:80 · aodai.fetgen.click

    2025-12-23 22:05

    HTTP/1.1 301 Moved Permanently
    Date: Tue, 23 Dec 2025 22:05:21 GMT
    Content-Type: text/html
    Content-Length: 166
    Connection: close
    Server: BunnyCDN-DE1-752
    CDN-PullZone: 908404
    CDN-RequestCountryCode: GB
    Location: https://aodai.fetgen.click/
    CDN-RequestId: 4648e182d276b3fb7f48f6a3f30e803c
    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>
    
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 2400:52e0:1e00::1079:1:443 · aodai.fetgen.click

    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-1079
    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: HCFF006900149CF818
    CDN-ProxyVer: 1.43
    CDN-RequestPullSuccess: True
    CDN-RequestPullCode: 206
    CDN-CachedAt: 12/23/2025 22:05:20
    CDN-EdgeStorageId: 1055
    CDN-RequestId: 5b16d193a3fd4c748e5ea38dea44ba36
    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>
    Found 2025-12-23 by HttpPlugin
    Create report
*.fetgen.clickfetgen.click
CN:
*.fetgen.click
Key:
ECDSA-256
Issuer:
E8
Not before:
2025-12-27 18:31
Not after:
2026-03-27 18:31
blindfold.fetgen.click
CN:
blindfold.fetgen.click
Key:
RSA-2048
Issuer:
R11
Not before:
2025-08-13 19:03
Not after:
2025-11-11 19:03
wetting.fetgen.click
CN:
wetting.fetgen.click
Key:
RSA-2048
Issuer:
R11
Not before:
2025-08-13 19:07
Not after:
2025-11-11 19:07
cape.fetgen.click
CN:
cape.fetgen.click
Key:
RSA-2048
Issuer:
R10
Not before:
2025-08-13 19:08
Not after:
2025-11-11 19:08
leather.fetgen.click
CN:
leather.fetgen.click
Key:
RSA-2048
Issuer:
R13
Not before:
2025-11-09 20:13
Not after:
2026-02-07 20:13
leather.fetgen.click
CN:
leather.fetgen.click
Key:
RSA-2048
Issuer:
R10
Not before:
2025-08-13 18:59
Not after:
2025-11-11 18:59
pantyhood.fetgen.click
CN:
pantyhood.fetgen.click
Key:
RSA-2048
Issuer:
R11
Not before:
2025-08-13 19:00
Not after:
2025-11-11 19:00
jewelry.fetgen.click
CN:
jewelry.fetgen.click
Key:
RSA-2048
Issuer:
R12
Not before:
2025-11-09 20:13
Not after:
2026-02-07 20:13
lolita.fetgen.click
CN:
lolita.fetgen.click
Key:
RSA-2048
Issuer:
R13
Not before:
2025-11-09 20:13
Not after:
2026-02-07 20:13
jewelry.fetgen.click
CN:
jewelry.fetgen.click
Key:
RSA-2048
Issuer:
R10
Not before:
2025-08-13 19:04
Not after:
2025-11-11 19:04
cum.fetgen.click
CN:
cum.fetgen.click
Key:
RSA-2048
Issuer:
R12
Not before:
2025-11-09 20:13
Not after:
2026-02-07 20:13
sperm.fetgen.click
CN:
sperm.fetgen.click
Key:
RSA-2048
Issuer:
R12
Not before:
2025-11-09 20:13
Not after:
2026-02-07 20:13
sperm.fetgen.click
CN:
sperm.fetgen.click
Key:
RSA-2048
Issuer:
R11
Not before:
2025-08-13 19:01
Not after:
2025-11-11 19:00
cam.fetgen.click
CN:
cam.fetgen.click
Key:
RSA-2048
Issuer:
R10
Not before:
2025-08-13 19:03
Not after:
2025-11-11 19:03
aodai.fetgen.click
CN:
aodai.fetgen.click
Key:
RSA-2048
Issuer:
R10
Not before:
2025-08-13 18:59
Not after:
2025-11-11 18:59
aodai.fetgen.click
CN:
aodai.fetgen.click
Key:
RSA-2048
Issuer:
R12
Not before:
2025-11-09 20:13
Not after:
2026-02-07 20:13