Skip to content

Instantly share code, notes, and snippets.

View thatsokaybaby's full-sized avatar

thatsokaybaby thatsokaybaby

View GitHub Profile
@thatsokaybaby
thatsokaybaby / secureLogin.js.patch
Created November 19, 2012 17:23
SecureLogin 1.0.1 / fix google/amazon login
--- secureLogin.js Mon Nov 19 07:08:50 2012
+++ secureLogin.js Wed Nov 21 08:01:20 2012
@@ -836,7 +836,7 @@
// Skip disabled elements or elements without a "name":
if(!elements[i].name || elements[i].disabled)
continue;
- if(elements[i].type == 'text') {
+ if(elements[i].type == 'text' || elements[i].type == 'email') {
// input of type "text" found, this is no password only form:
inputTextFound = true;