Displaying 14 results from an estimated 14 matches for "bottom_s".
Did you mean:
bottom_sg
2001 Apr 09
1
input_userauth_request() vs. stateful authmethods
The way things are now, input_userauth_request() calls the authmethod,
and then does a bunch of checks, like the special case for root. If
an authmethod requires a challenge-response conversation, these checks are
skipped, unless they are duplicated by the authmethod. For example, in
auth2-chall.c, some of the code is duplicated (logging, sending the
reply), but the root special case is skipped.
2001 Mar 30
2
BETA release of OpenSSH-2.5.2p2 with SRP
This is to announce the availability of SRP (Secure Remote Password)
support for OpenSSH. A tarball is available on Tripod:
http://members.tripod.com/professor_tom/archives/
http://members.tripod.com/professor_tom/archives/openssh-2.5.2p2-srp5.tar.gz
(Note: Tripod requires you to LEFT click on links to download files.)
To install, unpack, configure --with-srp, and make install, then create an
2001 Apr 03
1
user:style
I noticed that (perhaps because ':' is invalid in a username) you can
say ssh -l user:style host, where the "user:style" is sent by the client,
and the server strips the ":style" part off and makes it available as
part of the authentication context. It's currently unused.
What are the plans for this, if any? I was experimenting with the idea of
using it with SRP
2001 May 01
3
SRP unencumbered license statement
On Sun, 29 Apr 2001, RJ Atkinson wrote:
> At 06:26 27/04/01, Tom Wu wrote:
> >For those of you who were following the discussion about the new draft
> >and implementation of SRP-based password authentication in OpenSSH, I
> >promised to have Stanford issue the IETF an official, explicit,
> >statement reiterating the unencumbered royalty-free licensing terms.
> >The
2001 Mar 14
1
poor default seeding of RNG
Correct me if I'm wrong, but init_rng() in entropy.c doesn't call
seed_rng(), and in fact seed_rng() isn't called from _anywhere_ (in
openssh-2.5.1p2). So calls to BN_rand() only pick up the
tiny/non-existent amount of entropy added by BN_rand() itself from the
system clock (time in seconds). Shouldn't seed_rng() be called from
init_rng()? It should be called from _somewhere_,
2001 Mar 28
1
[Wishlist] another level of logging
Hello - got a small wishlist item here:
The currently available LogLevel settings (according to the man page)
are:
QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG.
Using "INFO" causes messages about RSA key re-generation to appear in
the auth logs. However using the next-lower LogLevel of "ERROR" causes
client IP and port to not be reported in the auth logs.
I was hoping for
2001 Apr 04
1
random openssh todo notes
fyi
http://wwwcip.informatik.uni-erlangen.de/~msfriedl/openssh/TODO
2001 Apr 11
0
2nd BETA release of OpenSSH with SRP
This is the 2nd beta release of SRP for OpenSSH.
The patch attached to this message is relative to the current (20010411)
CVS sources of OpenSSH-portable (2.5.4p1). A tarball is also available:
http://members.tripod.com/professor_tom/archives/
http://members.tripod.com/professor_tom/archives/openssh-2.5.4p1-srp6.tar.gz
(Note: Tripod requires you to LEFT click on links to download files, and
2001 Jun 26
0
Update of SRP patch
I have uploaded a new release of the OpenSSH (portable) SRP patch.
This version is vs. the 20010625 openssh_cvs; there are no other changes.
You can find it here:
http://members.tripod.com/professor_tom/archives/
http://members.tripod.com/professor_tom/archives/OpenSSH-srp9.tar.bz2
http://members.tripod.com/professor_tom/archives/OpenSSH-srp9.patch.bz2
The tarball is the whole thing with the
2001 Sep 20
2
vis.[ch]
Does anybody use openbsd-compat/vis.c? Not at the moment I think:
% find . -name '*.[ch]' -exec grep -l "vis *(" {} \;
./openbsd-compat/vis.c
./openbsd-compat/vis.h
% find . -name '*.[ch]' -exec grep -l VIS_ {} \;
./includes.h
./openbsd-compat/vis.c
./openbsd-compat/vis.h
The reason I ask is, AT&T's graphviz package includes a vis.h, and when I
try to compile
2002 Mar 25
2
compile failure
The latest snapshot (20020324) fails to compile here.
Linux 2.4.18-rc1 Alpha
The first messages are:
monitor_wrap.c: In function `mm_request_receive':
monitor_wrap.c:91: warning: int format, different type arg (arg 3)
monitor_wrap.c:100: warning: int format, different type arg (arg 3)
which have to do with fatal() calls and int not being the same as
ssize_t... But the next one is the
2001 Mar 23
1
-I$(srcdir)/openbsd-compat removal can cause errors
This is a Linux/Alpha system, with AT&T's graphviz suite installed.
gcc -O2 -Wall -I. -I. -I/usr/local/ssl/include -DETCDIR=\"/usr/local/etc\"
-D_PATH_SSH_PROGRAM=\"/usr/local/bin/ssh\"
-D_PATH_SSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh-askpass\"
-D_PATH_SFTP_SERVER=\"/usr/local/libexec/sftp-server\" -DHAVE_CONFIG_H -c
atomicio.c
In file included
2001 Apr 03
2
the "primes" file
In message <Pine.LNX.4.30.0104031615270.8678-100000 at holly.crl.go.jp>, Tom Holro
yd writes:
>SRP has different requirements from Diffie-Hellman. In particular,
>for SRP the generator must be primitive. It turns out that the "primes"
>file contains only safe primes with primitive generators, and is thus
>ideal for SRP, but so far in OpenSSH it has only been used for
2002 Feb 20
11
Call for testing.
Recently we made somemajor changes to do_child() in
OpenSSH -current. Those changes included splitting it up
into smaller chunks to help with readability and also to
extract out IRIX and AIX specific code to reduce the number
of lines in our diffs against the OpenSSH tree.
I need people to do some testing on different platforms to ensure
that all the right #ifdef/#endif bits got put back in