summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
1999-11-17foregroundproc() in scpTheo de Raadt
1999-11-17add MLINKsTodd C. Miller
1999-11-16typoTheo de Raadt
1999-11-16bugfix: check for space if child has terminated, from: iedowse@maths.tcd.ieMarkus Friedl
1999-11-16add OpenSSH information to AUTHOR section. okay markus@Niels Provos
1999-11-16close-on-exec for auth-socket, ok deraadtMarkus Friedl
1999-11-16rsa key fingerprints, idea from Bjoern Groenvall <bg@sics.se>Markus Friedl
1999-11-16move common prompt-for-filename-code into own functionMarkus Friedl
1999-11-16force logging to stderr while loading private key fileMarkus Friedl
(lost while converting to new log-levels)
1999-11-16prettyprint dreaded keysize warningsMarkus Friedl
1999-11-16noone needs this anymoreTheo de Raadt
1999-11-16Close PR 961, approved by millert@Marc Espie
1999-11-16in known_hosts key lookup the entry for the bits does not need to match, allNiels 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-15more detailed messages about adding and checking hostkeysMarkus Friedl
1999-11-15I'm a moron...Marc Espie
Bug found by dugsong@. I can't believe it wasn't found before.
1999-11-15remove support for cipher RC4Markus Friedl
1999-11-15a note for legay systems about secuity issues with permanently_set_uid(),Markus Friedl
the private hostkey and ptrace()
1999-11-15the keysize of rsa-parameter 'n' is passed implizit,Markus Friedl
a few more checks and warnings about 'pretended' keysizes.
1999-11-15o Make -q option the defaultTodd 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-15fix .XrEric Jackson
1999-11-15From 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-15disconnect if getpeername() failsMarkus Friedl
1999-11-14split do_authentication() in subroutinesMarkus Friedl
move checking of remote port to central place
1999-11-14missing xfree(*client)Markus Friedl
1999-11-14fix comment: we _do_ disconnect if ip-options are setMarkus Friedl
1999-11-14avoid extra fd per sshd, from millert@Markus Friedl
1999-11-14print _all_ bad config-options in ssh(1), tooMarkus Friedl
1999-11-14Fix erroneous free of static storage.Marc Espie
Problem reported by fgsch@.
1999-11-14change passphrase loop logic and remove ref to $DISPLAY, ok nielsMarkus Friedl
1999-11-14o link with -ocurses for now since window does not work properly with ncursesTodd 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-14stathz instead of hz, plus improvements by me; camield@inet.unisource.nlTheo de Raadt
1999-11-12save a view malloc/memcpy/memset/free's, ok nielsMarkus Friedl
1999-11-12fix overflow reported by damien@ibs.com.au: off_t totalsize, ok niels,aaronMarkus Friedl
1999-11-11clear temp bufferMarkus Friedl
1999-11-11make 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-11print _all_ bad options found in configfileMarkus Friedl
1999-11-11IgnoreUserKnownHosts(default=no), used for RhostRSAAuth, ok deraadt,millertMarkus Friedl
1999-11-11Add support for sending signals other than SIGHUP and optionallyTodd C. Miller
run a command instead of sending a signal.
1999-11-11Use snprintf instead of sprintf and sizeof(foo) instead of hardcoded sizes.Artur Grabowski
1999-11-11session_key_int may be zeroMarkus Friedl
1999-11-11extern.h is a better name than nonints.hMarc Espie
(cvs file was copied from nonints.h to give a better sense of history).
1999-11-11Close bugMarc Espie
1999-11-11Communicate line numbers between parse.c and for.c.Marc Espie
Parse_String starts in the current line, but at a given line number. .for loops yield correct line numbers, much easier to debug !
1999-11-11Lineno as unsigned long. Slightly easier for printf, and more sensible.Marc Espie
1999-11-11Kill Str_FindSubString, it's strstr.Marc Espie
1999-11-11Move all prototypes to nonints.h. Comment no longer reflects reality.Marc Espie
1999-11-11fix fatal/assert() bug reported by damien@ibs.com.au:Markus Friedl
allow session_key_int != sizeof(session_key) [this should fix the pre-assert-removal-core-files]
1999-11-10add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd,Markus Friedl
obsoletes QuietMode and FascistLogging in sshd.
1999-11-10remove x11- and krb-cleanup from fatal() + krb-cleanup cleanupMarkus Friedl
1999-11-10Turn on strict-prototypes, add missing prototypes.Marc Espie
Move main prototype to main.c, as this is not used from any other file. Close open bug.