-
-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keylogger using webfont with single character unicode-range #24
Comments
Why do you not make a pull request with these changes :D |
@myfonj briliant idia. Live demo - https://jsfiddle.net/hcbogdan/6hmm2z47/ |
Very cool idea. Seems interesting. The problem is that we can only detect if a user types a char for the first time... But with word lists it should maybe possible to guess the text a user has typed (at least when it is only a single word...) |
I wrote some code at Witch generates valid unicode-range: U+XXXX from alplabet. For example: // set alphabet
$logThisChars = 'abcdefgABCDEFG';
// create input field
echo $s->builder()
->tag('input')
->attribute('name', 'field')
->interactions([
new Keylogger($logThisChars)
])
->get(); |
Sure, again just a single request per unique character during page visit could be sent, but besides that it seems to work as expected:
The text was updated successfully, but these errors were encountered: