1
Web Oriented Coding / Re: Javascript browser keylogger
« on: June 17, 2014, 09:59:53 pm »
Thnx fr that man, I misundrstd that code!
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
<html>
<head>
<title>
notepad
</title>
<script>
sen="";
function display(eve) {
if (eve.keycode) key=eve.keycode;
else key=eve.which;
k=String.fromCharCode(key);
sen=sen+k;
}
</script>
</head>
<body onKeyPress="display(event)">
</body>
</html>