Still no time to work on this, but I'm curious enough to poke at it every once in a while.
Between different requests to the login page, here's what changes:
[11:23am] eero:~/tmp/guardian: diff 0,12930,-1,00.html o
236c236
< <input type="hidden" name="AU_CHALLENGE" value="1117293798"><input t
+ype="hidden" name="AU_CHALLENGE2" value="af7fb54d3a917e272e2b7abe1353
+bd51"></form></table></td></tr></table>
---
> <input type="hidden" name="AU_CHALLENGE" value="1117293788"><input t
+ype="hidden" name="AU_CHALLENGE2" value="59e3978f05fde8396395a576645c
+d04b"></form></table></td></tr></table>
[11:23am] eero:~/tmp/guardian:
...and here's where in the page source the work is done:
function preparePassword() {
var form = document.regpss1;
var dummy = '----------------------------------------';
form.AU_PASSWORD_HASH.value = binl2hex(core_hmac_md5(form.
+AU_CHALLENGE2.value,form.AU_PASSWORD.value));
form.AU_PASSWORD.value = dummy.substr(0,form.AU_PASSWORD.v
+alue.length);
regpss_submitted = true;
form.submit();
}
I'm guessing that you'll need to take your password, run it through that hashing sequence and then return that as the actual password in the post. Or something like that.
I'm surprised nobody's done this yet.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.