| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /tmp/smi-shot/ |
Upload File : |
const puppeteer=require('puppeteer');
(async()=>{
const b=await puppeteer.launch({headless:'new',args:['--no-sandbox','--disable-setuid-sandbox','--host-resolver-rules=MAP www.safemyident.de 127.0.0.1','--ignore-certificate-errors']});
const p=await b.newPage();
await p.setViewport({width:1280,height:900,deviceScaleFactor:1});
await p.goto('https://www.safemyident.de/tools/ip-check/',{waitUntil:'networkidle2',timeout:60000});
const m=await p.evaluate(()=>{
function box(sel){const e=document.querySelector(sel);if(!e)return null;const r=e.getBoundingClientRect();const cs=getComputedStyle(e);return {sel,left:Math.round(r.left),right:Math.round(window.innerWidth-r.right),width:Math.round(r.width),padL:cs.paddingLeft,padR:cs.paddingRight,marL:cs.marginLeft,marR:cs.marginRight};}
return ['.tool-single__body','.tool-single__body .row','.col-lg-8','.entry-content','.smi-ipc','.smi-ipc__form','.smi-ipc__modes'].map(box).filter(Boolean);
});
m.forEach(x=>console.log(`${x.sel.padEnd(26)} L=${String(x.left).padStart(4)} R=${String(x.right).padStart(4)} w=${x.width} padL=${x.padL} padR=${x.padR} marL=${x.marL} marR=${x.marR}`));
await p.screenshot({path:'/tmp/smi-shot/full-tool.png',clip:{x:0,y:180,width:1280,height:720}});
await b.close();
})().catch(e=>{console.error('ERR',e.message);process.exit(1);});