Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | move #include <sys/wait.h> out of includes.h; ok markus@ | 2006-02-10 | 1 | -1/+4 | ||
| | ||||||
* | <openssl/bn.h> not needed | 2006-02-08 | 1 | -3/+1 | ||
| | ||||||
* | move #include <paths.h> out of includes.h; ok markus@ | 2006-02-08 | 1 | -1/+3 | ||
| | ||||||
* | Add support for tun(4) forwarding over OpenSSH, based on an idea and | 2005-12-06 | 1 | -1/+37 | ||
| | | | | | | | | | | | | initial channel code bits by markus@. This is a simple and easy way to use OpenSSH for ad hoc virtual private network connections, e.g. administrative tunnels or secure wireless access. It's based on a new ssh channel and works similar to the existing TCP forwarding support, except that it depends on the tun(4) network interface on both ends of the connection for layer 2 or layer 3 tunneling. This diff also adds support for LocalCommand in the ssh(1) client. ok djm@, markus@, jmc@ (manpages), tested and discussed with others | |||||
* | no need to escape single quotes in comments, no binary change | 2005-10-30 | 1 | -2/+2 | ||
| | ||||||
* | make external definition static; ok deraadt@ | 2005-10-15 | 1 | -3/+2 | ||
| | ||||||
* | knf says that a 2nd level indent is four (not three or five) spaces | 2005-07-17 | 1 | -4/+4 | ||
| | ||||||
* | spacing | 2005-07-16 | 1 | -2/+2 | ||
| | ||||||
* | Fix ControlPath's %p expanding to "0" for a default port, | 2005-06-17 | 1 | -10/+1 | ||
| | | | | spotted dwmw2 AT infradead.org; ok markus@ | |||||
* | 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 | ||
| |