aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/Error:_OpenID_failure:_time_bad_sig:.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-01-29 20:34:18 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-01-29 20:34:18 +0000
commitf060b5a6e4cf45b332ddd5259a1e6d2b093dd1c5 (patch)
treecbfa39820ec1c165e7d866e9cd4ece4642d0649c /doc/bugs/Error:_OpenID_failure:_time_bad_sig:.mdwn
parent35cbe738e5fbece3aadbfe1a77dcfaffc86c8f05 (diff)
downloadikiwiki-f060b5a6e4cf45b332ddd5259a1e6d2b093dd1c5.tar
ikiwiki-f060b5a6e4cf45b332ddd5259a1e6d2b093dd1c5.tar.gz
start on debugging this
Diffstat (limited to 'doc/bugs/Error:_OpenID_failure:_time_bad_sig:.mdwn')
-rw-r--r--doc/bugs/Error:_OpenID_failure:_time_bad_sig:.mdwn24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/bugs/Error:_OpenID_failure:_time_bad_sig:.mdwn b/doc/bugs/Error:_OpenID_failure:_time_bad_sig:.mdwn
index fe09701a0..98689d53c 100644
--- a/doc/bugs/Error:_OpenID_failure:_time_bad_sig:.mdwn
+++ b/doc/bugs/Error:_OpenID_failure:_time_bad_sig:.mdwn
@@ -11,4 +11,28 @@ and [myopenid.com](http://www.myopenid.com/) servers I use.
I'm reporting this, but I'm not sure whether a problem is with your
ikiwiki or my OpenID servers. --Pawel
+> I've seen this too, once or twice (using myopenid), and reauthenticating
+> fixed it -- so I can't reproduce it reliably to work on it. I think I've
+> seen it both on this wiki and on the one running on my laptop.
+>
+> The perl openid client module seems
+> to fail with time_bad_sig if the time in the signature from the other end
+> is "faked". I'm not 100% sure what this code does yet:
+ # check age/signature of return_to
+ my $now = time();
+ {
+ my ($sig_time, $sig) = split(/\-/, $self->args("oic.time") || "");
+ # complain if more than an hour since we sent them off
+ return $self->_fail("time_expired") if $sig_time < $now - 3600;
+ # also complain if the signature is from the future by more than 30 seconds,
+ # which compensates for potential clock drift between nodes in a web farm.
+ return $self->_fail("time_in_future") if $sig_time - 30 > $now;
+ # and check that the time isn't faked
+ my $c_secret = $self->_get_consumer_secret($sig_time);
+ my $good_sig = substr(OpenID::util::hmac_sha1_hex($sig_time, $c_secret), 0, 20);
+ return $self->_fail("time_bad_sig") unless $sig eq $good_sig;
+ }
+
+> At least it doesn't seem to be a time sync problem since the test for too
+> early/too late times have different error messages.. --[[Joey]]