Snoopers Can Obtain Passwords Just By Listening
Boffins at the University of California in Berkeley have devised a way of obtaining a password just by listening to the keystrokes.
I’ve always thought this was possible as there is a certain rhythm to the way people type and i guess each keystroke sounds different, particularly if pressed after a certain key.
Bookmark & Share
WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 've always thought this was possible as there is a certain rhythm to the way peop' at line 1]
SELECT ID, post_title, post_date, post_content, (MATCH (post_content) AGAINST ('boffins at the university of california in berkeley have devised a way of obtaining a password just by <a href="http://www.boston.com/business/technology/articles/2005/09/15/careful_or_theyll_hear_your_password/">listening to the keystrokes.</a>
i've always thought this was possible as there is a certain rhythm to the way people type and i guess each keystroke sounds different, particularly if pressed after a certain key.')) as bodyscore, (MATCH (post_title) AGAINST ('snoopers can obtain passwords just by listening')) as titlescore, COUNT( DISTINCT tagtax.term_taxonomy_id ) as tagscore, COUNT( DISTINCT cattax.term_taxonomy_id ) as catscore, (0+ (MATCH (post_content) AGAINST ('boffins at the university of california in berkeley have devised a way of obtaining a password just by <a href="http://www.boston.com/business/technology/articles/2005/09/15/careful_or_theyll_hear_your_password/">listening to the keystrokes.</a>
i've always thought this was possible as there is a certain rhythm to the way people type and i guess each keystroke sounds different, particularly if pressed after a certain key.')) * 1+ (MATCH (post_title) AGAINST ('snoopers can obtain passwords just by listening')) * 1+ COUNT( DISTINCT tagtax.term_taxonomy_id ) * 1+ COUNT( DISTINCT cattax.term_taxonomy_id ) * 1) as score
from wp_posts
left JOIN wp_term_relationships AS thistag ON (thistag.object_id = 552 )
left JOIN wp_term_relationships AS tagrel on (tagrel.term_taxonomy_id = thistag.term_taxonomy_id
AND tagrel.object_id = wp_posts.ID)
left JOIN wp_term_taxonomy AS tagtax ON ( tagrel.term_taxonomy_id = tagtax.term_taxonomy_id
AND tagtax.taxonomy = 'post_tag')
left JOIN wp_term_relationships AS thiscat ON (thiscat.object_id = 552 )
left JOIN wp_term_relationships AS catrel on (catrel.term_taxonomy_id = thiscat.term_taxonomy_id
AND catrel.object_id = wp_posts.ID)
left JOIN wp_term_taxonomy AS cattax ON ( catrel.term_taxonomy_id = cattax.term_taxonomy_id
AND cattax.taxonomy = 'category')
where (post_status IN ( 'publish', 'static' ) and ID != '552') and post_password ='' and post_type IN ('post', 'page')
group by id
having score >= 6 order by score DESC limit 7




