Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-11-18 | bad aaron | Theo de Raadt | |
1999-11-18 | we don't install zopen.3 | Todd C. Miller | |
1999-11-18 | Add MLINK for openssh(1). | Aaron Campbell | |
1999-11-17 | Spell my name right. | Aaron Campbell | |
1999-11-17 | Add missing MLINKs | Todd C. Miller | |
1999-11-17 | Turn warnings on, | Marc Espie | |
Add missing prototypes, Make local functions static, Sort extern.h by file, Constify all char * that can be, Copy temp file name so that eval does not modify its arguments. | |||
1999-11-17 | Typo | Marc Espie | |
1999-11-17 | Ensure translit works with accented characters. | Marc Espie | |
1999-11-17 | Night of the moronic coder, part 2. | Marc Espie | |
repairs patterns such as divert(6) divert(7) undivert(6) divert(6) which are not that frequent, but were *quite* thoroughly broken... | |||
1999-11-17 | include fingerprint.h | Markus Friedl | |
1999-11-17 | bugfix: the log() for passwd-auth escaped during logging changes. | Markus Friedl | |
1999-11-17 | foregroundproc() in scp | Theo de Raadt | |
1999-11-17 | add MLINKs | Todd C. Miller | |
1999-11-16 | typo | Theo de Raadt | |
1999-11-16 | bugfix: check for space if child has terminated, from: iedowse@maths.tcd.ie | Markus Friedl | |
1999-11-16 | add OpenSSH information to AUTHOR section. okay markus@ | Niels Provos | |
1999-11-16 | close-on-exec for auth-socket, ok deraadt | Markus Friedl | |
1999-11-16 | rsa key fingerprints, idea from Bjoern Groenvall <bg@sics.se> | Markus Friedl | |
1999-11-16 | move common prompt-for-filename-code into own function | 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-16 | prettyprint dreaded keysize warnings | Markus Friedl | |
1999-11-16 | noone needs this anymore | Theo de Raadt | |
1999-11-16 | Close PR 961, approved by millert@ | Marc Espie | |
1999-11-16 | in known_hosts key lookup the entry for the bits does not need to match, all | Niels Provos | |
the information is contained in n and e. This solves the problem with buggy servers announcing the wrong modulus length. markus and me. | |||
1999-11-15 | more detailed messages about adding and checking hostkeys | Markus Friedl | |
1999-11-15 | I'm a moron... | Marc Espie | |
Bug found by dugsong@. I can't believe it wasn't found before. | |||
1999-11-15 | remove support for cipher RC4 | Markus Friedl | |
1999-11-15 | a note for legay systems about secuity issues with permanently_set_uid(), | Markus Friedl | |
the private hostkey and ptrace() | |||
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 | o Make -q option the default | Todd C. Miller | |
o When invoked with no arguments and the record contains 'Whois Server: foo' also do the lookup using foo as the whois server. o If an entry BAR is not found (No match for "BAR"), fall back on whois.internic.net. This makes internic handle lookups work again. o Fix lookup of multiple entries o Add -Q (quick) option to turn off double lookup Note: Double lookups will not work properly until {com,net,org}.whois-servers.net has been changed to point to whois.crsnic.net (in progress). Man page still needs a bit of work. | |||
1999-11-15 | fix .Xr | Eric Jackson | |
1999-11-15 | From FreeBSD: | Todd C. Miller | |
o Change default nic host to whois.crsnic.net to also get hosts registered by registrars other than NSI. o -i option to use NSI's nic host (whois.internic.net) o -g option to use .gov nic host o -R option to use .ru nic host | |||
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-14 | missing xfree(*client) | Markus Friedl | |
1999-11-14 | fix comment: we _do_ disconnect if ip-options are set | Markus Friedl | |
1999-11-14 | avoid extra fd per sshd, from millert@ | Markus Friedl | |
1999-11-14 | print _all_ bad config-options in ssh(1), too | Markus Friedl | |
1999-11-14 | Fix erroneous free of static storage. | Marc Espie | |
Problem reported by fgsch@. | |||
1999-11-14 | change passphrase loop logic and remove ref to $DISPLAY, ok niels | Markus Friedl | |
1999-11-14 | o link with -ocurses for now since window does not work properly with ncurses | Todd C. Miller | |
o use mkdtemp(), not mktemp + mkdir in TERMINFO support o correct program paths for TERMINFO support o use the curses unctrl() function instead of a private one | |||
1999-11-14 | stathz instead of hz, plus improvements by me; camield@inet.unisource.nl | Theo de Raadt | |
1999-11-12 | save a view malloc/memcpy/memset/free's, ok niels | Markus Friedl | |
1999-11-12 | fix overflow reported by damien@ibs.com.au: off_t totalsize, ok niels,aaron | Markus Friedl | |
1999-11-11 | clear temp buffer | Markus Friedl | |
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 | print _all_ bad options found in configfile | Markus Friedl | |
1999-11-11 | IgnoreUserKnownHosts(default=no), used for RhostRSAAuth, ok deraadt,millert | Markus Friedl | |
1999-11-11 | Add support for sending signals other than SIGHUP and optionally | Todd C. Miller | |
run a command instead of sending a signal. | |||
1999-11-11 | Use snprintf instead of sprintf and sizeof(foo) instead of hardcoded sizes. | Artur Grabowski | |