Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | rhosts-rsa is no longer automagically disabled if ssh is not privileged. | 2000-12-12 | 1 | -12/+7 | ||
| | | | | | UsePrivilegedPort=no disables rhosts-rsa _only_ for old servers. these changes should not change the visible default behaviour of the ssh client. | |||||
* | consistently use __progname; from stevesk@pobox.com | 2000-12-12 | 1 | -13/+4 | ||
| | ||||||
* | check -T before isatty() | 2000-11-30 | 1 | -4/+4 | ||
| | ||||||
* | complain about invalid ciphers for ssh1/ssh2, fall back to reasonable defaults | 2000-11-23 | 1 | -4/+10 | ||
| | ||||||
* | just ignore non existing user keys | 2000-11-15 | 1 | -2/+2 | ||
| | ||||||
* | add support for RSA to SSH2. please test. | 2000-11-12 | 1 | -37/+45 | ||
| | | | | | | | | | | | | | | | there are now 3 types of keys: RSA1 is used by ssh-1 only, RSA and DSA are used by SSH2. you can use 'ssh-keygen -t rsa -f ssh2_rsa_file' to generate RSA keys for SSH2 and use the RSA keys for hostkeys or for user keys. SSH2 RSA or DSA keys are added to .ssh/authorised_keys2 as before. IdentityFile2, HostDsaKey and DSAAuthentication are obsolete. you can use multiple IdentityFile and HostKey for all types of keys. the option DSAAuthentication is replaced by PubkeyAuthetication. | |||||
* | do not disabled rhosts(rsa) if server port > 1024; from pekkas@netcore.fi | 2000-11-06 | 1 | -1/+3 | ||
| | ||||||
* | agent forwarding and -R for ssh2, based on work from jhuuskon@messi.uku.fi | 2000-11-06 | 1 | -51/+60 | ||
| | ||||||
* | enable non-blocking IO on channels, and tty's (except for the client ttys). | 2000-10-27 | 1 | -2/+10 | ||
| | ||||||
* | new cipher framework | 2000-10-11 | 1 | -3/+4 | ||
| | ||||||
* | do not resolve canonname, i have no idea why this was added oin ossh | 2000-10-03 | 1 | -17/+1 | ||
| | ||||||
* | multiple debug levels | 2000-09-12 | 1 | -3/+12 | ||
| | ||||||
* | cleanup window and packet sizes for ssh2 flow control; ok niels | 2000-09-07 | 1 | -9/+7 | ||
| | ||||||
* | cleanup copyright notices on all files. I have attempted to be accurate with | 2000-09-07 | 1 | -3/+31 | ||
| | | | | | | | the details. everything is now under Tatu's licence (which I copied from his readme), and/or the core-sdi bsd-ish thing for deattack, or various openbsd developers under a 2-term bsd licence. We're not changing any rules, just being accurate. | |||||
* | allow combination of -N and -f | 2000-08-28 | 1 | -2/+2 | ||
| | ||||||
* | enable -n and -f for ssh2 | 2000-08-28 | 1 | -8/+12 | ||
| | ||||||
* | Add calls to setusercontext() and login_get*(). We basically call | 2000-08-20 | 1 | -1/+2 | ||
| | | | | | setusercontext() in most places where previously we did a setlogin(). Add default login.conf file and put root in the "daemon" login class. | |||||
* | support for ~. in ssh2 | 2000-08-19 | 1 | -7/+14 | ||
| | ||||||
* | accept remsh as a valid name as well; roman@buildpoint.com | 2000-08-19 | 1 | -3/+3 | ||
| | ||||||
* | make ssh-add accept dsa keys (the agent does not) | 2000-07-16 | 1 | -2/+2 | ||
| | ||||||
* | Always create ~/.ssh with mode 700; ok Markus | 2000-07-15 | 1 | -2/+2 | ||
| | ||||||
* | OpenBSD tag | 2000-06-20 | 1 | -1/+1 | ||
| | ||||||
* | xauth_location support; pr 1234 | 2000-05-31 | 1 | -12/+12 | ||
| | ||||||
* | remove dependency on openssl-0.9.5a; green@FreeBSD.org via kris@FreeBSD.org | 2000-05-30 | 1 | -2/+2 | ||
| | ||||||
* | forwardagent defaults to no, add ssh -A | 2000-05-29 | 1 | -1/+5 | ||
| | ||||||
* | fix usage() | 2000-05-15 | 1 | -2/+3 | ||
| | ||||||
* | complain about invalid ciphers in SSH1 (e.g. arcfour is SSH2 only) | 2000-05-08 | 1 | -1/+2 | ||
| | ||||||
* | support for x11-fwding, client+server | 2000-04-28 | 1 | -43/+59 | ||
| | ||||||
* | add DSA pubkey auth and other SSH2 fixes. use ssh-keygen -[xX] | 2000-04-26 | 1 | -18/+49 | ||
| | | | | | for trading keys with the real and the original SSH, directly from the people who invented the SSH protocol. | |||||
* | whitespace cleanup | 2000-04-14 | 1 | -31/+8 | ||
| | ||||||
* | ssh -2 | 2000-04-14 | 1 | -1/+6 | ||
| | ||||||
* | add Cipher and Protocol options to ssh/sshd, e.g.: | 2000-04-12 | 1 | -3/+6 | ||
| | | | | ssh -o 'Protocol 1,2' if you prefer proto 1, ssh -o 'Ciphers arcfour,3des-cbc' | |||||
* | ssh2 client implementation, interops w/ ssh.com and lsh servers. | 2000-04-04 | 1 | -15/+147 | ||
| | ||||||
* | replace big switch() with function tables (prepare for ssh2) | 2000-03-28 | 1 | -1/+2 | ||
| | ||||||
* | switch to raw mode only if he _get_ a pty (not if we _want_ a pty). | 2000-03-23 | 1 | -4/+6 | ||
| | ||||||
* | remove unused cipher_attack_detected code | 2000-03-22 | 1 | -4/+1 | ||
| | ||||||
* | turn off x11-fwd for the client, too. | 2000-02-28 | 1 | -1/+2 | ||
| | ||||||
* | suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp | 2000-02-20 | 1 | -2/+2 | ||
| | ||||||
* | more hints (hints.ai_socktype=SOCK_STREAM) for getaddrinfo, from itojun@ | 2000-01-04 | 1 | -1/+2 | ||
| | ||||||
* | 'ssh @host' is illegal (null user name), from karsten@gedankenpolizei.de | 2000-01-04 | 1 | -1/+3 | ||
| | ||||||
* | ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new features: | 2000-01-04 | 1 | -15/+36 | ||
| | | | | | | sshd allows multiple ListenAddress and Port options. note that libwrap is not IPv6-ready. (based on patches from <kick@kyoto.wide.ad.jp> and fujiwara@rcac.tdi.co.jp) | |||||
* | type conflict for 'extern Type *options' in channels.c; dot@dotat.at | 1999-12-12 | 1 | -2/+3 | ||
| | ||||||
* | ports are u_short | 1999-12-01 | 1 | -10/+6 | ||
| | ||||||
* | postpone fork_after_authentication until command execution, | 1999-11-24 | 1 | -10/+6 | ||
| | | | | | request/patch from jahakala@cc.jyu.fi via damien@ibs.com.au plus: use daemon() for backgrounding | |||||
* | KNF, final part 3 | 1999-11-24 | 1 | -67/+100 | ||
| | ||||||
* | much more KNF | 1999-11-24 | 1 | -23/+18 | ||
| | ||||||
* | KNF part 1 | 1999-11-23 | 1 | -702/+649 | ||
| | ||||||
* | a note for legay systems about secuity issues with permanently_set_uid(), | 1999-11-15 | 1 | -1/+8 | ||
| | | | | the private hostkey and ptrace() | |||||
* | print _all_ bad config-options in ssh(1), too | 1999-11-14 | 1 | -3/+4 | ||
| | ||||||
* | make all access to options via 'extern Options options' | 1999-11-11 | 1 | -2/+2 | ||
| | | | | | | | | and 'extern ServerOptions options' respectively; options are no longer passed as arguments: * make options handling more consistent * remove #include "readconf.h" from ssh.h * readconf.h is only included if necessary |