Pastebin

Paste #26609: Proxy retrive etc mtc lol

< previous paste - next paste>

Pasted by F12

Download View as text

console.log("=== Cross-Origin Data (Simulated) ===");
// Replace the proxy URL with your own
const proxyUrl = 'https://your-proxy-url.com/?url=';
Array.from(document.querySelectorAll('iframe, script')).forEach(resource => {
    const src = resource.src || resource.dataset.src;
    if (src) {
        fetch(proxyUrl + encodeURIComponent(src))
            .then(res => res.text())
            .then(content => console.log(`Content of ${src} (via proxy):`, content.slice(0, 200)))
            .catch(err => console.error("Proxy fetch error for:", src, err));
    }
});

New Paste


Do not write anything in this field if you're a human.

Go to most recent paste.