summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* unexpand and delete whitespace at EOL; ok markus@djm2003-11-211-3/+3
|
* remote x11 clients are now untrusted by default, uses xauth(8) to generatemarkus2003-10-111-24/+68
| | | | | untrusted cookies; ForwardX11Trusted=yes restores old behaviour. ok deraadt; feedback and ok djm/fries
* remove unused kerberos code; ok henning@markus2003-09-011-3/+2
|
* socks4->socks, since with support both 4 and 5; dtucker@zip.com.aumarkus2003-08-131-2/+2
|
* remove RhostsAuthentication; suggested by djm@ before; ok djm@, deraadt@,markus2003-08-131-8/+1
| | | | fgsch@, miod@, henning@, jakob@ and others
* remove (already disabled) KRB4/AFS support, re-enable -k in ssh(1);markus2003-07-221-7/+2
| | | | test+ok henning@
* don't exit on multiple -v or -d; ok deraadt@markus2003-07-161-6/+6
|
* fix AddressFamily option in config file, from brent@graveland.net; ok markus@djm2003-07-031-10/+7
|
* convert hostkeyalias to lowercase, otherwise uppercase aliases willmarkus2003-07-021-1/+8
| | | | not match at all; ok henning@
* add sc_get_key_label; larsch at trustcenter.de; bugzilla#591markus2003-06-121-2/+2
|
* Make "ssh -V" print the OpenSSL version in a human readable form. Patchdjm2003-05-151-3/+3
| | | | from Craig Leres (mindrot at ee.lbl.gov); ok markus@
* make channel_new() strdup the 'remote_name' (not the caller); ok theomarkus2003-05-111-2/+2
|
* rename log() into logit() to avoid name conflict. markus ok, from netbsditojun2003-04-081-9/+9
|
* support 'ProxyCommand none'; bugzilla #433; binder@arago.de; ok djm@markus2003-02-061-1/+5
|
* Avoid setting optind to 0 as GNU getopt treats that like we do optreset.millert2002-12-091-5/+4
| | | | markus@ OK
* allow usernames with embedded '@', e.g. scp user@vhost@realhost:file /tmp;markus2002-11-271-3/+3
| | | | http://bugzilla.mindrot.org/show_bug.cgi?id=447; ok mouring@, millert@
* debug->debug2markus2002-11-211-2/+2
|
* bugzilla.mindrot.org #223 - ProxyCommands don't exit.djm2002-09-191-1/+12
| | | | Patch from dtucker@zip.com.au; ok markus@
* don't connect to agent to test for presence if we've previouslystevesk2002-09-111-5/+2
| | | | connected; ok markus@
* shrink initial privilege bracket for setuid case; ok markus@stevesk2002-08-291-10/+10
|
* deprecate -P as UsePrivilegedPort defaults to no now; ok markus@stevesk2002-08-291-3/+2
|
* display a warning from ssh when XAuthLocation does not exist or xauthstevesk2002-07-191-3/+12
| | | | returned no authentication data. ok markus@
* re-enable ssh-keysign's sbit, but make ssh-keysign read /etc/ssh/ssh_configmarkus2002-07-031-2/+3
| | | | | and exit if HostbasedAuthentication is disabled globally. based on discussions with deraadt, itojun and sommerfeld; ok itojun@
* minor KNFderaadt2002-06-301-3/+4
|
* ssh_connect returns 0 on successmarkus2002-06-121-2/+2
|
* remove unused cruft.markus2002-06-111-9/+7
|
* no longer use uidswap.[ch] from the ssh clientmarkus2002-06-111-10/+10
| | | | | | 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@
* deprecate FallBackToRsh and UseRsh; patch from djm@markus2002-06-081-71/+3
|
* nuke ptrace commentmarkus2002-06-081-9/+1
|
* add comment about ssh-keysignmarkus2002-05-231-1/+3
|
* add /usr/libexec/ssh-keysign: a setuid helper program for hostbased authenticationmarkus2002-05-231-7/+14
| | | | in protocol v2 (needs to access the hostkeys).
* spelling; abishoff@arc.nasa.govderaadt2002-05-221-3/+3
|
* don't limit xauth pathlen on client side and longer print length onstevesk2002-05-161-3/+3
| | | | | server when debug; ok markus@ patch from pin@math.chalmers.se
* request reply (success/failure) for -R style fwd in protocol v2,markus2002-04-221-1/+25
| | | | | depends on ordered replies. fixes http://bugzilla.mindrot.org/show_bug.cgi?id=215; ok provos@
* update Copyrightmarkus2002-03-261-1/+2
|
* simplify num_identity_files handlingmarkus2002-03-251-3/+3
|
* change sc_get_key to sc_get_keys and hide smartcard details in scard.cmarkus2002-03-251-33/+21
|
* Add PIN-protection for secret key.rees2002-03-211-2/+2
|
* KNF whitespacemarkus2002-03-191-2/+2
|
* increase the SSH v2 window size to 4 packets. comsumes a littlemarkus2002-02-141-4/+4
| | | | bit more memory for slow receivers but increases througput.
* remove bogus commentsmarkus2002-02-071-3/+1
|
* channel_new never returns NULL, mouring@; ok djm@markus2002-02-061-3/+1
|
* merge channel_request() into channel_request_start()markus2002-02-051-2/+3
|
* generic callbacks are not really used, remove andmarkus2002-02-031-4/+2
| | | | | add a callback for msg of type SSH2_MSG_CHANNEL_OPEN_CONFIRMATION ok djm@
* handle simple case to identify FamilyLocal display; ok markus@stevesk2002-01-271-4/+17
|
* wrapper for channel_setup_fwd_listenermarkus2002-01-161-2/+2
|
* remove plen from the dispatch fn. it's no longer used.markus2001-12-281-2/+2
|
* packet_read* no longer return the packet length, since it's not used.markus2001-12-281-6/+5
|
* s/packet_done/packet_check_eom/ (end-of-message); ok djm@markus2001-12-281-3/+3
|
* get rid of packet_integrity_check, use packet_done() instead.markus2001-12-271-2/+2
|