Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-01-18 | rename *-skey.c *-chall.c since the files are not skey specific | Markus Friedl | |
2001-01-18 | 1) removes fake skey from sshd, since this will be much | Markus Friedl | |
harder with /usr/libexec/auth/login_XXX 2) share/unify code used in ssh-1 and ssh-2 authentication (server side) 3) make addition of BSD_AUTH and other challenge reponse methods easier. | |||
2001-01-18 | log() is at pri=LOG_INFO, since LOG_NOTICE goes to /dev/console on many systems | Markus Friedl | |
2001-01-18 | don't call rsa-keygen from signalhandler. | Markus Friedl | |
re-schedule keygen at the time the key is actually used. | |||
2001-01-18 | remove signal races, using flags | Theo de Raadt | |
2001-01-17 | use more strlcpy() | Theo de Raadt | |
2001-01-17 | remove stdio code from handler, and _exit() at termination | Theo de Raadt | |
2001-01-17 | Don't dump core when a ``bad address'' error occurs and there is neither | Paul Janzen | |
a file nor a command underlying it. This fixes NetBSD PR 11543; the fix is from Aymeric Vincent <aymeric@netbsd.org>. | |||
2001-01-17 | avoid C sequence point issues; found by cgd@netbsd.org using a development | Paul Janzen | |
version of gcc. | |||
2001-01-16 | indent | Theo de Raadt | |
2001-01-16 | spelling | Theo de Raadt | |
2001-01-16 | remove some statics. simpler handles; idea from nisse@lysator.liu.se | Markus Friedl | |
2001-01-16 | fix verbosity levels. pointed out by J.D. Carlson <jd@noc7.uchsc.edu> | Eric Jackson | |
2001-01-16 | make "ssh-rsa" key format for ssh2 confirm to the ietf-drafts; from ↵ | Markus Friedl | |
galb@vandyke.com. note that you have to delete older ssh2-rsa keys, since they are in the wrong format, too. they must be removed from .ssh/authorized_keys2 and .ssh/known_hosts2, etc. (cd; grep -v ssh-rsa .ssh/authorized_keys2 > TMP && mv TMP .ssh/authorized_keys2) additionally, we now check that BN_num_bits(rsa->n) >= 768. | |||
2001-01-16 | Changes from Don Beusee: | Todd C. Miller | |
o escape From line with a leading '>' when needed o only print To: address and Subject lines if actually present o new variable 'allnet' to treat user@foo and user@bar as the same "user" o folders command now takes an optional argument like ls. o new "pipe" (|) command to pipe the message through an arbitrary command o make header display format the same as SunOS 4.1.3 /usr/ucb/mail o tilde commands work regardless of interactive mode. o fix "read: Interrupted system call" error by retrying if EINTR o expanded help file Changes by me: o read the help file via the PAGER as it is now more than 24 lines long | |||
2001-01-16 | Changes from Don Beusee: | Todd C. Miller | |
o escape From line with a leading '>' when needed o only print To: address and Subject lines if actually present o new variable 'allnet' to treat user@foo and user@bar as the same "user" o folders command now takes an optional argument like ls. o new "pipe" (|) command to pipe the message through an arbitrary command o make header display format the same as SunOS 4.1.3 /usr/ucb/mail o tilde commands work regardless of interactive mode. o fix "read: Interrupted system call" error by retrying if EINTR o expanded help file Changes by me: o read the help file via the PAGER as it is now more than 24 lines long | |||
2001-01-15 | readable long listing for sftp-server, ok deraadt@ | Markus Friedl | |
2001-01-15 | rename must fail if newpath exists, debug off by default | Markus Friedl | |
2001-01-15 | use error() not stderr! | Markus Friedl | |
2001-01-15 | use log() instead of stderr | Markus Friedl | |
2001-01-15 | typo | Theo de Raadt | |
2001-01-15 | oops | Theo de Raadt | |
2001-01-13 | move callback to headerfile | Markus Friedl | |
2001-01-13 | support supplementary group in {Allow,Deny}Groups | Markus Friedl | |
from stevesk@pobox.com | |||
2001-01-13 | oops | Markus Friedl | |
2001-01-13 | support supplementary group in {Allow,Deny}Groups | Markus Friedl | |
from stevesk@pobox.com | |||
2001-01-13 | Wall | Markus Friedl | |
2001-01-13 | fix comment | Markus Friedl | |
2001-01-13 | reorder, typo | Markus Friedl | |
2001-01-13 | split out keepalive from packet_interactive (from dale@accentre.com) | Markus Friedl | |
set IPTOS_LOWDELAY TCP_NODELAY IPTOS_THROUGHPUT for ssh2, too. | |||
2001-01-13 | enable kerberos passwd auth in ssh2, use k_setpag; ok hin, dugsong, from ↵ | Markus Friedl | |
ksulliva@psc.edu | |||
2001-01-13 | typo, from stevesk@sweden.hp.com | Markus Friedl | |
2001-01-13 | free() -> xfree(); fix memory leak; from stevesk@pobox.com | Markus Friedl | |
2001-01-13 | use SSH_DEFAULT_PORT; from stevesk@pobox.com | Markus Friedl | |
2001-01-13 | getopt() returns -1 not EOF; stevesk@pobox.com | Markus Friedl | |
2001-01-13 | small ssh-keygen manpage cleanup; stevesk@pobox.com | Markus Friedl | |
2001-01-12 | moved stests to src/regress/usr.bin/sort which is more appropriate | Todd C. Miller | |
2001-01-12 | various small cleanups | Theo de Raadt | |
2001-01-11 | maxfd+1 | Markus Friedl | |
2001-01-11 | fix select overflow, work by deraadt and me. | Markus Friedl | |
2001-01-11 | comment on a real nasty race | Theo de Raadt | |
2001-01-11 | make closedown() use __svc_fdset, so that large fd_set sizes close down nice | Theo de Raadt | |
2001-01-11 | grep() returns a list of aliases to entries in the original list | Todd C. Miller | |
so modifying them directly results in a munged line in the resulting mail message that gets sent out. Similar to a patch from cazz@wezl.org; closes PR 1617 | |||
2001-01-10 | cleanup sftp-server implementation: | Markus Friedl | |
add buffer_get_int64, buffer_put_int64, GET_64BIT, PUT_64BIT parse SSH2_FILEXFER_ATTR_EXTENDED send SSH2_FX_EOF if readdir returns no more entries reply to SSH2_FXP_EXTENDED messages use #defines from the draft. move #definitions to sftp.h more info: http://www.ietf.org/internet-drafts/draft-ietf-secsh-filexfer-00.txt | |||
2001-01-10 | handle malloc() failures | Theo de Raadt | |
2001-01-10 | error out for strdup() failures | Theo de Raadt | |
2001-01-10 | XXX -- generate_empheral_server_key() is not safe against races, because it ↵ | Theo de Raadt | |
calls log() | |||
2001-01-09 | allow TCP_NDELAY for ipv6; from netbsd via itojun@ | Markus Friedl | |
2001-01-09 | Typos: 'eg.' -> 'e.g.' | Kenneth R Westerback | |
2001-01-09 | Get Dijkstra's middle initial correct too, as in PR 1613; gently pointed | Paul Janzen | |
out by janjaap@stack.nl (Janjaap van Velthooven). Really fixes user/1613 this time. |