summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2000-08-28don't complain if setting NONBLOCK fails with ENODEVMarkus Friedl
2000-08-28undoMarkus Friedl
2000-08-28util.cMarkus Friedl
2000-08-28allow combination of -N and -fMarkus Friedl
2000-08-28enable -n and -f for ssh2Markus Friedl
2000-08-28print uid/gid as unsignedTheo de Raadt
2000-08-27compatibility with future ssh.com versionsMarkus Friedl
2000-08-26ssh.com-2.3.0Markus Friedl
2000-08-26typo. sync with kameJun-ichiro itojun Hagino
2000-08-25no need for those dynamic libraries anymoreTheo de Raadt
2000-08-25WallTheo de Raadt
2000-08-24off_t in sink, to fix files > 2GB, i think, test is still running ;-)Theo de Raadt
2000-08-24Last change inadvertantly broke non-kerberos logins. It's not clearTodd C. Miller
that the authok flag is really meaningful but keep it for now.
2000-08-24Fix non-root kerberos logins broken after rev 1.29. That change wasTodd C. Miller
correct but it uncovered a bug that had thusfar stayed hidden due more to serendipity than anything else. Problem found by danh@openbsd.org
2000-08-23repair sendmail options handlingMichael Shalayeff
2000-08-21Fix incorrect PATH setting; noted by Markus.Todd C. Miller
2000-08-21Var_Append needs to set v for DEBUG(VAR) to work.Marc Espie
Obvious fix. Problem reported by Gregory Steuck, thanks a lot !
2000-08-20Add calls to setusercontext() and login_get*(). We basically callTodd C. Miller
setusercontext() in most places where previously we did a setlogin(). Add default login.conf file and put root in the "daemon" login class.
2000-08-20Only check /etc/nologin if "UseLogin no" since login(1) may have itsTodd C. Miller
own policy on determining who is allowed to login when /etc/nologin is present. Also use the _PATH_NOLOGIN define.
2000-08-20We have to stash the result of get_remote_name_or_ip() before weTodd C. Miller
close our socket or getpeername() will get EBADF and the process will exit. Only a problem for "UseLogin yes".
2000-08-19oopsMarkus Friedl
2000-08-19more ~ support for ssh2Markus Friedl
2000-08-19add SSH2/DSA support to the agent and some other DSA related cleanups.Markus Friedl
(note that we cannot talk to ssh.com's ssh2 agents)
2000-08-19proper prototypeTheo de Raadt
2000-08-19support for ~. in ssh2Markus Friedl
2000-08-19shortenTheo de Raadt
2000-08-19knfTheo de Raadt
2000-08-19-S prog support; tv@debian.orgTheo de Raadt
2000-08-19rename crc32() to ssh_crc32() to avoid zlib name clash. do not move toTheo de Raadt
libz crc32 function yet, because it has ugly "long"'s in it; oneill@cs.sfu.ca
2000-08-19accept remsh as a valid name as well; roman@buildpoint.comTheo de Raadt
2000-08-17sshd -u len, similar to telnetdMarkus Friedl
2000-08-17cleanup login(1)-like jobs, no duplicate utmp entriesMarkus Friedl
2000-08-15typo; kravietz@ceti.plNiels Provos
2000-08-15cleanup; ok niels@Markus Friedl
2000-08-13update to sudo 1.6.3p5Todd C. Miller
2000-08-13recover 1.29 -> 1.30Jun-ichiro itojun Hagino
2000-08-13properly look at error code from getnameinfo(3)Jun-ichiro itojun Hagino
2000-08-13typo. be more friendly with netstat -ssn. from jhawk@netbsd (via kame)Jun-ichiro itojun Hagino
2000-08-13telnet -b broke when getaddrinfo conversion was done,Niklas Hallqvist
bind(2) was done on the dst addr instead of the src.
2000-08-12- Convert to using getopt().Aaron Campbell
- Sync man page options with actual program/usage. - KNF.
2000-08-12Fix missing pluralization.Aaron Campbell
2000-08-05Fix name comparison bug found by Thilo Manske in NetBSD PR 10638. While I'mPaul Janzen
at it, do some -Wall fixing.
2000-08-04MaxStartupsMarkus Friedl
2000-08-04unusedMarkus Friedl
2000-08-02disallow kerberos authentication if we can't verify the TGT; fromNiels Provos
dugsong@ kerberos authentication is on by default only if you have a srvtab.
2000-08-02disable kerberos authentication by defaultNiels Provos
2000-08-02correct sun_len; Alexander@Leidinger.netTheo de Raadt
2000-08-02$HOME paranoia: never use getenv("HOME") w/o checking for NULL and non-zeroTodd C. Miller
2000-08-01talk about password checkingNiels Provos
2000-08-01integrate password quality checking, disallow all digit passwords motivatedNiels Provos
by Solar Designer. External password checking program can be spawned now, number of password trials configurable. work by me and Bob Beck.