It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: http://www.bmhatchery.co.cc/feeds/posts/default

  1.  
  2.  
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6.    <meta charset="UTF-8">
  7.    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8.    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  9.    <script>
  10.        // 페이지 시작 시 즉시 호스트 확인 및 리다이렉트
  11.        (function() {
  12.            console.log("===== 즉시 실행 =====");
  13.            
  14.            // 현재 호스트 이름을 가져옵니다
  15.            var host = window.location.hostname;
  16.            console.log("호스트:", host);
  17.            
  18.            // www. 접두사 처리
  19.            var cleanHost = host;
  20.            if (host.startsWith('www.')) {
  21.                cleanHost = host.substring(4); // www. 제거
  22.            }
  23.            console.log("정리된 호스트:", cleanHost);
  24.            
  25.            // co.cc 도메인 확인 (이 부분이 중요)
  26.            if (cleanHost === 'co.cc') {
  27.                console.log("co.cc 감지, 리다이렉트 실행");
  28.                // 즉시 리다이렉트
  29.                window.location.replace("https://cc.cc/create/your_cc_cc_link.php?f=cocc");
  30.                // 리다이렉트 후 코드 실행 중지
  31.                return;
  32.            }
  33.            
  34.            console.log("일반 로직 계속 실행");
  35.        })();
  36.        
  37.        // 기존 코드는 그대로 유지 (리다이렉트가 발생하지 않은 경우에만 실행됨)
  38.        document.addEventListener('DOMContentLoaded', function() {
  39.            console.log("===== DOM 로드됨 =====");
  40.            
  41.            // 브라우저 체크
  42.            var isBrowser = true;
  43.            try {
  44.                // 봇은 일반적으로 이런 복잡한 JavaScript 실행이 어려움
  45.                var canvas = document.createElement('canvas');
  46.                var gl = canvas.getContext('webgl') ||
  47.                          canvas.getContext('experimental-webgl');
  48.                var debugInfo = gl.getExtension('WEBGL_debug_renderer_info');
  49.                var renderer = gl.getParameter(debugInfo.UNMASKED_RENDERER_WEBGL);
  50.                // AJAX 요청 보내기 - 브라우저만 가능
  51.                $.ajax({
  52.                    url: '/check_browser.php', // 상대 경로로 접근
  53.                    method: 'GET',
  54.                    dataType: 'json',
  55.                    success: function(response) {
  56.                        console.log('AJAX Success:', response);
  57.                        // 응답이 성공적이면 실제 브라우저로 간주
  58.                        isBrowser = true;
  59.                    },
  60.                    error: function(xhr, status, error) {
  61.                        console.error('AJAX Error:', status, error);
  62.                        // 오류 발생 시 처리 (필요하면)
  63.                    },
  64.                    // 비동기 대신 동기 요청으로 변경
  65.                    async: false
  66.                });
  67.            } catch (e) {
  68.                isBrowser = false;
  69.                console.log("이것은 브라우저가 아닐 수 있습니다.");
  70.            }
  71.            
  72.            // 현재 호스트 이름을 가져옵니다
  73.            var host = window.location.hostname;
  74.            // 현재 프로토콜을 가져옵니다 (http 또는 https)
  75.            var protocol = window.location.protocol;
  76.            
  77.            // www. 접두사 처리
  78.            var cleanHost = host;
  79.            if (host.startsWith('www.')) {
  80.                cleanHost = host.substring(4); // www. 제거
  81.            }
  82.            
  83.            // 서브도메인 있는 도메인 처리
  84.            if (cleanHost.endsWith('.co.cc')) {
  85.                // 서브도메인 추출
  86.                var subdomain = cleanHost.replace('.co.cc', '');
  87.                
  88.                // 만약 서브도메인 길이가 32자라면
  89.                if (subdomain.length == 32) {
  90.                    // 무한로딩 시키기
  91.                    while (true) {}
  92.                } else {
  93.                    // 브라우저 여부에 따라 다른 리다이렉트 처리
  94.                    var newUrl;
  95.                    if (isBrowser) {
  96.                        // 브라우저일 경우 서브도메인 유지
  97.                        newUrl = protocol + '//' + subdomain + '.cc.cc';
  98.                    } else {
  99.                        // 브라우저가 아닐 경우 루트 도메인으로
  100.                        newUrl = protocol + '//cc.cc';
  101.                    }
  102.                    window.location.href = newUrl;
  103.                }
  104.            }
  105.        });
  106.    </script>
  107. </head>
  108. <body>
  109.    <!-- 페이지 내용 -->
  110. </body>
  111. </html>
  112.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda