Your message dated Mon, 11 Apr 2011 13:47:47 +0000
with message-id <[email protected]>
and subject line Bug#622246: Removed package(s) from unstable
has caused the Debian Bug report #517823,
regarding opie-client: strange, non-working -s option in quick usage message
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
517823: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=517823
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: opie-client
Version: 2.32.dfsg.1-0.1
Severity: minor
Tags: patch
$ opiekey
usage: opiekey [-v] [-h] [-f] [-x] [-t type] [-4 | -5 | -s] [-a] [-n count]
sequence_number seed
$ opiekey -s 100 aa9999
Using the SHA-1 algorithm to compute response.
Reminder: Don't use opiekey from telnet or dial-in sessions.
Enter secret pass phrase: [any passphrase]
ODD DEFT FALL A A ABE
Some experimentation with -n and -x and different sequence numbers and
seeds produces only ODD DEFT FALL A A ABE (2E4E 3DF6 0000 0000) for
any input parameters whatsoever. Looking at the opiekey(1) man page,
-s doesn't appear anywhere that I can see.
>From a cursory glance through the Debianized opie-2.32 source tree,
the opiehashlen function in libopie/hashlen.c seems to mediate all
digest algorithm usage in OPIE, and it contains a case for SHA-1 in
the opiehashlen() function, but it's omitted from compilation with an
#if 0 block. Presumably the solution is to either fully enable the
possibility of SHA-1 usage or strip the broken -s option out of the
opiekey program.
A rough patch is attached that strips the obvious instances of SHA-1
stuff out of opiekey.c; this doesn't hit potential cases of this in
the other client programs and should be reviewed before applying.
---> Drake Wilson
-- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (990, 'unstable')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.27.1 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages opie-client depends on:
ii libc6 2.9-4 GNU C Library: Shared libraries
opie-client recommends no packages.
opie-client suggests no packages.
-- no debconf information
--- opiekey.c.old 2009-03-02 04:40:13.000000000 -0600
+++ opiekey.c 2009-03-02 04:40:47.000000000 -0600
@@ -64,7 +64,7 @@
static VOIDRET usage FUNCTION((s), char *s)
{
- fprintf(stderr, "usage: %s [-v] [-h] [-f] [-x] [-t type] [-4 | -5 | -s] [-a] [-n count] sequence_number seed\n", s);
+ fprintf(stderr, "usage: %s [-v] [-h] [-f] [-x] [-t type] [-4 | -5] [-a] [-n count] sequence_number seed\n", s);
exit(1);
}
@@ -151,9 +151,6 @@
if (strstr(slash, "md5"))
algorithm = 5;
- if (strstr(slash, "sha"))
- algorithm = 3;
-
while ((i = getopt(argc, argv, "fhvn:x45at:s")) != EOF) {
switch (i) {
case 'v':
@@ -201,10 +198,6 @@
}
break;
- case 's':
- algorithm = 3;
- break;
-
default:
usage(argv[0]);
}
--- End Message ---
--- Begin Message ---
Version: 2.32.dfsg.1-0.2+rm
Dear submitter,
as the package opie has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see http://bugs.debian.org/622246
The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Alexander Reichle-Schmehl (the ftpmaster behind the curtain)
--- End Message ---