Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-04-06 | ssh2 server side, see README.openssh2; enable with 'sshd -2' | Markus Friedl | |
2000-04-04 | remove unused argument, split cipher_mask() | Markus Friedl | |
2000-03-28 | split sshd.c -> auth.c session.c sshd.c plus cleanup and goto-removal | Markus Friedl | |
2000-03-28 | replace big switch() with function tables (prepare for ssh2) | Markus Friedl | |
2000-03-23 | initial support for DSA keys. ok deraadt@, niels@ | Markus Friedl | |
2000-03-22 | remove unused cipher_attack_detected code | Markus Friedl | |
2000-03-16 | -pedantic: signed vs. unsigned, void*-arithm, etc | Markus Friedl | |
2000-03-09 | disallow guessing of root password | Markus Friedl | |
2000-03-06 | fix pr 1113, fclose() -> pclose(), todo: remote popen() | Markus Friedl | |
2000-02-28 | create x11 cookie file | Markus Friedl | |
2000-02-15 | register cleanup for pty earlier. move code for pty-owner handling to pty.c | Markus Friedl | |
ok provos@, dugsong@ | |||
2000-02-15 | move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too. | Markus Friedl | |
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907) | |||
2000-02-06 | typo | Markus Friedl | |
2000-02-05 | missing xfree() | Markus Friedl | |
2000-02-01 | oops, fix comment, too. | Markus Friedl | |
2000-01-31 | delay close() of pty until the pty has been chowned back to root | Markus Friedl | |
2000-01-27 | deny login if shell does not exist or is not executable at all | Markus Friedl | |
make no-port-forwarding for RSA keys deny both -L and -R style fwding | |||
2000-01-24 | don't panic if client behaves strange. ok deraadt@ | Markus Friedl | |
2000-01-20 | log with level log() not fatal() if peer behaves badly. | Markus Friedl | |
2000-01-18 | no need for poll.h; from bright@wintelcom.net | Markus Friedl | |
2000-01-18 | disable agent fwding for proto 1.3, remove abuse of auth-rsa flags. | Markus Friedl | |
2000-01-16 | split key exchange (kex) and user authentication (user-auth), ok: provos@ | Markus Friedl | |
2000-01-04 | allow auth-kerberos for IPv4 only | Markus Friedl | |
2000-01-04 | ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new features: | Markus Friedl | |
sshd allows multiple ListenAddress and Port options. note that libwrap is not IPv6-ready. (based on patches from <kick@kyoto.wide.ad.jp> and fujiwara@rcac.tdi.co.jp) | |||
1999-12-12 | type conflict for 'extern Type *options' in channels.c; dot@dotat.at | Markus Friedl | |
1999-12-08 | repair fake-skey for AUTH_TIS | Markus Friedl | |
1999-12-08 | careless niels | Theo de Raadt | |
1999-12-08 | make that a fatal | Niels Provos | |
1999-12-07 | fix sighup handling. accept would just restart and daemon handled sighup | Niels Provos | |
only after the next connection was accepted. use poll on listen sock now. | |||
1999-12-07 | make sure the client selects a supported cipher | Markus Friedl | |
1999-12-06 | move atomicio into it's own file. wrap all socket write()s which were doing | Theo de Raadt | |
write(sock, buf, len) != len, with atomicio() calls. | |||
1999-12-06 | use openpty() if it exists (it does on BSD4_4) | Theo de Raadt | |
1999-11-24 | KNF, final part 3 | Markus Friedl | |
1999-11-24 | much more KNF | Theo de Raadt | |
1999-11-23 | KNF part 1 | Markus Friedl | |
1999-11-22 | tranfer s/key challenge/response data in SSH_SMSG_AUTH_TIS_CHALLENGE | Markus Friedl | |
messages. allows use of s/key in windows (ttssh, securecrt) and ssh-1.2.27 clients without 'ssh -v', ok: niels@ | |||
1999-11-22 | syslog changes: | Markus Friedl | |
* Unified Logmessage for all auth-types, for success and for failed * Standard connections get only ONE line in the LOG when level==LOG: Auth-attempts are logged only, if authentication is: a) successfull or b) with passwd or c) we had more than AUTH_FAIL_LOG failues * many log() became verbose() * old behaviour with level=VERBOSE | |||
1999-11-22 | -V, for fallback to openssh in SSH2 compatibility mode | Markus Friedl | |
1999-11-20 | fix sigchld race; cjc5@po.cwru.edu | Theo de Raadt | |
1999-11-19 | SSH_CMSG_MAX_PACKET_SIZE, some clients use this, some need this, niels@ | Markus Friedl | |
[hope this time my ISP stays alive during commit] | |||
1999-11-18 | more %d vs. %s in fmt-strings | Markus Friedl | |
1999-11-17 | bugfix: the log() for passwd-auth escaped during logging changes. | Markus Friedl | |
1999-11-16 | force logging to stderr while loading private key file | Markus Friedl | |
(lost while converting to new log-levels) | |||
1999-11-15 | remove support for cipher RC4 | Markus Friedl | |
1999-11-15 | the keysize of rsa-parameter 'n' is passed implizit, | Markus Friedl | |
a few more checks and warnings about 'pretended' keysizes. | |||
1999-11-15 | disconnect if getpeername() fails | Markus Friedl | |
1999-11-14 | split do_authentication() in subroutines | Markus Friedl | |
move checking of remote port to central place | |||
1999-11-11 | make all access to options via 'extern Options options' | Markus Friedl | |
and 'extern ServerOptions options' respectively; options are no longer passed as arguments: * make options handling more consistent * remove #include "readconf.h" from ssh.h * readconf.h is only included if necessary | |||
1999-11-11 | IgnoreUserKnownHosts(default=no), used for RhostRSAAuth, ok deraadt,millert | Markus Friedl | |
1999-11-11 | session_key_int may be zero | Markus Friedl | |