Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | make this -Wsign-compare clean; ok avsm@ markus@ | 2005-06-17 | 1 | -2/+3 | ||
| | ||||||
* | introduce a generic %foo expansion function. replace existing % expansion and | 2005-06-06 | 1 | -30/+11 | ||
| | | | | add expansion to ControlPath; ok markus@ | |||||
* | Switch atomicio to use a simpler interface; it now returns a size_t | 2005-05-24 | 1 | -6/+7 | ||
| | | | | | | | | | | | (containing number of bytes read/written), and indicates error by returning 0. EOF is signalled by errno==EPIPE. Typical use now becomes: if (atomicio(read, ..., len) != len) err(1,"read"); ok deraadt@, cloder@, djm@ | |||||
* | spacing | 2005-03-10 | 1 | -3/+3 | ||
| | ||||||
* | fix addition of new hashed hostnames when CheckHostIP=yes; | 2005-03-02 | 1 | -10/+25 | ||
| | | | | found and ok dtucker@ | |||||
* | add support for hashing host names and addresses added to known_hosts files, | 2005-03-01 | 1 | -3/+4 | ||
| | | | | to improve privacy of which hosts user have been visiting; ok markus@ deraadt@ | |||||
* | remove dead code, log connect() failures with level error, ok djm@ | 2005-01-05 | 1 | -17/+3 | ||
| | ||||||
* | make ssh -Wshadow clean, no functional changes | 2004-06-21 | 1 | -6/+6 | ||
| | | | | markus@ ok | |||||
* | kill a tiny header; ok deraadt@ | 2004-05-08 | 1 | -2/+1 | ||
| | ||||||
* | reset nonblocking flag after ConnectTimeout > 0 connect; (bugzilla #785) | 2004-01-25 | 1 | -5/+6 | ||
| | | | | from jclonguet AT free.fr; ok millert@ | |||||
* | rename keepalive to tcpkeepalive; the old name causes too much | 2003-12-09 | 1 | -3/+3 | ||
| | | | | confusion; ok djm, dtucker; with help from jmc@ | |||||
* | unexpand and delete whitespace at EOL; ok markus@ | 2003-11-21 | 1 | -5/+5 | ||
| | ||||||
* | update SSHFP validation. ok markus@ | 2003-11-12 | 1 | -19/+21 | ||
| | ||||||
* | constify. ok markus@ & djm@ | 2003-11-10 | 1 | -2/+2 | ||
| | ||||||
* | do not free static type pointer in warn_changed_key() | 2003-11-03 | 1 | -3/+2 | ||
| | ||||||
* | move changed key warning into warn_changed_key(). ok markus@ | 2003-11-03 | 1 | -12/+25 | ||
| | ||||||
* | include SSHFP lookup code (not enabled by default). ok markus@ | 2003-10-14 | 1 | -9/+1 | ||
| | ||||||
* | missing {}; bug #656; jclonguet at free.fr | 2003-09-18 | 1 | -2/+3 | ||
| | ||||||
* | memset 0, not \0; andrushock@korovino.net | 2003-06-29 | 1 | -2/+2 | ||
| | ||||||
* | deal with typing of write vs read in atomicio | 2003-06-28 | 1 | -2/+2 | ||
| | ||||||
* | clean up check_host_key() and improve SSHFP feedback. ok markus@ | 2003-06-11 | 1 | -8/+34 | ||
| | ||||||
* | disable challenge/response and keyboard-interactive auth methods upon hostkey | 2003-06-04 | 1 | -2/+13 | ||
| | | | | mismatch. based on patch from fcusack AT fcusack.com. bz #580; ok markus@ | |||||
* | fix format strings; ok markus@ | 2003-05-26 | 1 | -3/+3 | ||
| | ||||||
* | fix leak; ok markus@ | 2003-05-23 | 1 | -7/+9 | ||
| | ||||||
* | add a ConnectTimeout option to ssh, based on patch from | 2003-05-15 | 1 | -2/+68 | ||
| | | | | Jean-Charles Longuet (jclonguet at free.fr); portable #207 ok markus@ | |||||
* | add experimental support for verifying hos keys using DNS as described | 2003-05-14 | 1 | -1/+22 | ||
| | | | | | in draft-ietf-secsh-dns-xx.txt. more information in README.dns. ok markus@ and henning@ | |||||
* | avoid hardcoded SOCK_xx; with itojun@; should allow ssh over SCTP | 2003-04-14 | 1 | -8/+10 | ||
| | ||||||
* | rename log() into logit() to avoid name conflict. markus ok, from netbsd | 2003-04-08 | 1 | -11/+11 | ||
| | ||||||
* | KNF | 2002-11-21 | 1 | -5/+5 | ||
| | ||||||
* | debug->debug2, unify debug messages | 2002-11-21 | 1 | -2/+2 | ||
| | ||||||
* | bugzilla.mindrot.org #223 - ProxyCommands don't exit. | 2002-09-19 | 1 | -3/+13 | ||
| | | | | Patch from dtucker@zip.com.au; ok markus@ | |||||
* | remove use of SO_LINGER, it should not be needed. error check | 2002-09-13 | 1 | -11/+1 | ||
| | | | | SO_REUSEADDR. fixup comments. ok markus@ | |||||
* | print file:line | 2002-07-29 | 1 | -2/+2 | ||
| | ||||||
* | print out all known keys for a host if we get a unknown host key, | 2002-07-24 | 1 | -4/+69 | ||
| | | | | | | | | | | | see discussion at http://marc.theaimsgroup.com/?t=101069210100016&r=1&w=4 the ssharp mitm tool attacks users in a similar way, so i'd like to pointed out again: A MITM attack is always possible if the ssh client prints: The authenticity of host 'bla' can't be established. (protocol version 2 with pubkey authentication allows you to detect MITM attacks) | |||||
* | print connect failure during debugging mode. | 2002-07-12 | 1 | -14/+3 | ||
| | ||||||
* | bark if all connection attempt fails. | 2002-07-10 | 1 | -7/+5 | ||
| | ||||||
* | ed static function (less warnings) | 2002-07-09 | 1 | -1/+3 | ||
| | ||||||
* | silently try next address on connect(2). markus ok | 2002-07-09 | 1 | -1/+3 | ||
| | ||||||
* | more checks for NULL pointers; from grendel@zeitbombe.org; ok deraadt@ | 2002-06-27 | 1 | -2/+2 | ||
| | ||||||
* | various KNF and %d for unsigned | 2002-06-23 | 1 | -3/+2 | ||
| | ||||||
* | KNF done automatically while reading.... | 2002-06-19 | 1 | -2/+2 | ||
| | ||||||
* | no longer use uidswap.[ch] from the ssh client | 2002-06-11 | 1 | -27/+16 | ||
| | | | | | | run less code with euid==0 if ssh is installed setuid root just switch the euid, don't switch the complete set of groups (this is only needed by sshd). ok provos@ | |||||
* | pass salen to sockaddr_ntop so that we are happy on linux/solaris | 2002-06-09 | 1 | -5/+5 | ||
| | ||||||
* | abort() - > fatal() | 2002-06-09 | 1 | -2/+2 | ||
| | ||||||
* | always use getnameinfo. (diag message only) | 2002-06-08 | 1 | -14/+4 | ||
| | ||||||
* | add /usr/libexec/ssh-keysign: a setuid helper program for hostbased authentication | 2002-05-23 | 1 | -4/+4 | ||
| | | | | in protocol v2 (needs to access the hostkeys). | |||||
* | use read_passphrase+ECHO in confirm(), allows use of ssh-askpass | 2002-01-21 | 1 | -46/+38 | ||
| | | | | for hostkey confirm. | |||||
* | basic KNF done while i was looking for something else | 2001-12-19 | 1 | -8/+8 | ||
| | ||||||
* | shutdown(sock, SHUT_RDWR) not needed here; ok markus@ | 2001-12-06 | 1 | -2/+1 | ||
| | ||||||
* | minor KNF | 2001-12-05 | 1 | -11/+11 | ||
| |