Pastebin
Paste #26612: Proxy retrive etc mtc lol
< previous paste - next paste>
Pasted by F12
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
Go to most recent paste.