4 ms·
I spent an unfortunate chunk of time trying to auto-click all the red square via jquery in chrome console. After a lot of reading and experimenting, I can verif
by neoveller 12y ago
I spent an unfortunate chunk of time trying to auto-click all the red square via jquery in chrome console. After a lot of reading and experimenting, I can verify that the exploit is thoroughly addressed (so far), and I cannot achieve my goal because of it :(.
The most promising workaround would be to find a JS screenshot tool that doesn't rely on the DOM, and then run some client-side image analysis to get the index values of the red squares, and then go from there to click the things. Well played, exploit fixers, well played.
- ma2rten 12y agoI don't think there actually is a way to take screenshots, w/o relying on the dom.
- Geee 12y agoYou could access the webcam and zoom/enhance the reflection in the eyes to get the screenshot.
- neoveller 12y agoThink I just found a way using canvas with a semi transparent element inside of it, then overlaying that on each square, grabbing the computed/resulting color of the canvas to decipher which block is what. S O O N
- path411 12y agoI tried doing this: http://jsfiddle.net/path411/sRkWq/ http://jsfiddle.net/path411/sRkWq/ It appears as though Chrome (37-dev) will not receive any data from behind the canvas, while IE11 and FF(29) will allow me to see pixels behind the canvas, but only see the unvisited color. I don't believe there is another method to receive the color of a pixel from a canvas except through getImageData(), but I could be wrong.