A long time I did login Gmail by a(n unsafe) html script. As of last october Google changed their login form in a way that this relative simple html script doesn't work anymore.
html-script:
<form id="autoLoginbutton1"style="display: inline;" action="https://www.google.com/accounts/ServiceLoginAuth?service=mail" method="post">
<input type="hidden" name="ltmpl" value="default" />
<input type="hidden" name="ltmplcache" value="2" />
<input type="hidden" name="continue" value="https://mail.google.com/mail/ui=2#inbox" />
<input type="hidden" name="service" value="mail" />
<input type="hidden" name="rm" value="false" />
<input type="hidden" name="hl" value="NL" />
*insert line*
<input type="hidden" name="Email" value="account1@gmail.com" />
<input type="hidden" name="Passwd" value="password1" />
<input type="hidden" name="rmShown" value="1" />
<input type="hidden" name="signIn" value="Sign in" />
<input type="hidden" name="asts" value="" />
<input type="submit" value="Gmail button1txt" />
</form>
5 times this script in a html file gave me 5 buttons to autologin the account of my choice.
Google incorporated a changing variable GALX in their login form and I found out that using GALX with the right value in this html script, like:
<input type="hidden" name="GALX" value="6Nb9AfkKKbU" />
at *insert line* makes this html script working again.
Problem is that each fresh browser start causes a new GALX value in Google's login form.
Who can/will volunteer in adding relevant JS to handle GALX with its changing value?
My JS capabilities are practically zero, so I'm looking for help here. Your help is appreciated very much.
Rudolf