summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Put the 'const' back into ssh_askpass() function. Pointed outmouring2001-05-021-2/+2
| | | | by Mark Miller <markm@swoon.net>. OK Markus
* ssh-2.0.10 has the weak-key-bug, too.markus2001-04-301-2/+2
|
* allow interop with weaker key generation used by ssh-2.0.x, x < 10markus2001-04-303-6/+15
|
* implement 'ssh -b bind_address' like 'telnet -b'markus2001-04-305-18/+64
|
* more ssh.com-2.0.x bug-compat; from per@appgate.commarkus2001-04-295-29/+34
|
* fix whitespacemarkus2001-04-291-4/+4
|
* OpenSSH-2.9markus2001-04-241-2/+2
|
* remove debugmarkus2001-04-231-3/+3
|
* allow public key for -e, toomarkus2001-04-232-11/+13
|
* document hostbased and other cleanupmarkus2001-04-223-81/+146
|
* style, noted by stevesk; sort flags in usagemarkus2001-04-222-4/+4
|
* xref draft-ietf-secsh-*markus2001-04-224-10/+46
|
* rename arguments -x -> -e (export key), -X -> -i (import key)markus2001-04-222-20/+41
| | | | xref draft-ietf-secsh-publickeyfile-01.txt
* scp > 2GB; niles@scyld.com; ok deraadt@, djm@markus2001-04-221-4/+4
|
* typos spotted by stevesk@; ok deraadt@djm2001-04-221-4/+4
|
* Spellingmouring2001-04-211-2/+2
|
* set non-privileged gid before uid; tholo@ and deraadt@markus2001-04-201-5/+5
|
* remove old information from ssh-1.2.12markus2001-04-201-567/+25
| | | | | refer to http://www.openssh.com/portable.html and tell how to install OpenSSH on an OpenBSD system, ok deraadt@
* Split out and improve escape character documentation, mention ~R indjm2001-04-202-26/+40
| | | | ~? help text; ok markus@
* use local variable, no function call needed.markus2001-04-191-2/+2
| | | | (btw, hostbased works now with ssh.com >= 2.0.13)
* error->debug; noted by fries@markus2001-04-181-2/+2
|
* more ssh v2 hostbased-auth interop: ssh.com >= 2.1.0 works nowmarkus2001-04-183-26/+15
| | | | (however the 2.1.0 server seems to work only if debug is enabled...)
* no longer constmarkus2001-04-181-3/+3
|
* use FDQN with trailing dot in the hostbased auth packets, ok deraadt@markus2001-04-182-7/+14
|
* call askpass from ssh, too, based on work by roth@feep.net, ok deraadtmarkus2001-04-182-64/+77
|
* Fix typo reported in PR/1779ian2001-04-181-2/+2
|
* debug->debug3markus2001-04-181-2/+2
|
* move auth_approval to do_authenticated().markus2001-04-171-10/+13
| | | | | do_child(): nuke hostkeys from memory don't source .ssh/rc for subsystems.
* undo socks5 and https support since they are not really used andmarkus2001-04-172-193/+24
| | | | only bloat ssh. remove -D from usage(), since '-D' is experimental.
* add HostKeyAlgorithms; based on patch from res@shore.net; ok provos@markus2001-04-176-7/+54
|
* handle EINTR/EAGAIN on read; ok deraadt@markus2001-04-171-3/+5
|
* check for key!=NULL, thanks to costamarkus2001-04-171-2/+2
|
* better safe than sorry in later mods; yongari@kt-is.co.krderaadt2001-04-161-2/+2
|
* Split motd and hushlogin checks into seperate functions, helps for portable.djm2001-04-161-13/+43
| | | | From Chris Adams <cmadams@hiwaay.net>; ok markus@
* xrealloc dealing with ptr == nULL; mouringderaadt2001-04-161-3/+4
|
* IPv6 support for sftp (which I bungled in my last patch) which ismouring2001-04-166-45/+173
| | | | borrowed from scp.c. Thanks to Markus@ for pointing it out.
* 2,1, not 1,2deraadt2001-04-152-4/+4
|
* use fatal() or error() vs. fprintf(); ok markus@stevesk2001-04-152-53/+34
|
* default for protocol is 1,2; ok markus@stevesk2001-04-152-4/+4
|
* some ClientAlive cleanup; ok markus@stevesk2001-04-151-6/+12
|
* set stdin/out/err to nonblocking in SSH proto 1, too. suggested by ho@markus2001-04-151-1/+9
| | | | should fix some of the blocking problems for rsync over SSH-1
* don't use errno for key_{load,save}_private; discussion w/ solar@openwallmarkus2001-04-153-25/+24
|
* some unused variable and typos; from tomh@po.crl.go.jpmarkus2001-04-156-20/+19
|
* fix commentsstevesk2001-04-151-3/+3
|
* 'T' handling rcp/scp sync; ok markus@stevesk2001-04-141-14/+11
|
* protocol 2 tty modes support; ok markus@stevesk2001-04-149-131/+388
|
* use clear_pass instead of xfree()markus2001-04-141-3/+2
|
* remove some channels that are not appropriate for keepalive.markus2001-04-141-5/+5
|
* do not double freederaadt2001-04-141-1/+2
|
* Add options ClientAliveInterval and ClientAliveCountMax to sshd.beck2001-04-136-11/+152
| | | | | | | | This gives the ability to do a "keepalive" via the encrypted channel which can't be spoofed (unlike TCP keepalives). Useful for when you want to use ssh connections to authenticate people for something, and know relatively quickly when they are no longer authenticated. Disabled by default (of course). ok markus@