Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-11-21 | unexpand and delete whitespace at EOL; ok markus@ | Damien Miller | |
2003-11-18 | unbreak fake authloop for non-existent users (my screwup). Spotted and | Damien Miller | |
tested by dtucker@; ok markus@ | |||
2003-11-17 | replace "gssapi" with "gssapi-with-mic"; from Simon Wilkinson; test + ok jakob. | Markus Friedl | |
2003-11-04 | standardise arguments to auth methods - they should all take authctxt. | Damien Miller | |
check authctxt->valid rather then pw != NULL; ok markus@ | |||
2003-09-23 | replace fatal_cleanup() and linked list of fatal callbacks with static | Markus Friedl | |
cleanup_exit() function. re-refine cleanup_exit() where appropriate, allocate sshd's authctxt eary to allow simpler cleanup in sshd. tested by many, ok deraadt@ | |||
2003-08-28 | remove kerberos support from ssh1, since it has been replaced with GSSAPI; | Markus Friedl | |
but keep kerberos passwd auth for ssh1 and 2; ok djm, hin, henning, ... | |||
2003-08-26 | fix passwd auth for 'username leaks via timing'; with djm@, original patches ↵ | Markus Friedl | |
from solar | |||
2003-08-24 | 64 bit cleanups; markus ok | Theo de Raadt | |
2003-08-22 | support GSS API user authentication; patches from Simon Wilkinson, | Markus Friedl | |
stripped down and tested by Jakob and myself. | |||
2003-07-22 | remove (already disabled) KRB4/AFS support, re-enable -k in ssh(1); | Markus Friedl | |
test+ok henning@ | |||
2003-06-24 | int -> u_int; ok djm@, deraadt@, mouring@ | Markus Friedl | |
2003-06-12 | typos; dtucker at zip.com.au | Markus Friedl | |
2003-06-02 | deprecate VerifyReverseMapping since it's dangerous if combined | Markus Friedl | |
with IP based access control as noted by Mike Harding; replace with a UseDNS option, UseDNS is on by default and includes the VerifyReverseMapping check; with itojun@, provos@, jakob@ and deraadt@ ok deraadt@, djm@ | |||
2003-05-24 | cast some types for printing; ok markus@ | Damien Miller | |
2003-05-14 | http://bugzilla.mindrot.org/show_bug.cgi?id=560 | Markus Friedl | |
Privsep child continues to run after monitor killed. Pass monitor signals through to child; Darren Tucker | |||
2003-05-14 | implement kerberos over ssh2 ("kerberos-2@ssh.com"); tested with jakob@ | Markus Friedl | |
server interops with commercial client; ok jakob@ djm@ | |||
2003-04-08 | rename log() into logit() to avoid name conflict. markus ok, from netbsd | Jun-ichiro itojun Hagino | |
2003-04-02 | reapply rekeying chage, tested by henning@, ok djm@ | Markus Friedl | |
2003-04-01 | backout rekeying changes (for 3.6.1) | Markus Friedl | |
2003-04-01 | rekeying bugfixes and automatic rekeying: | Markus Friedl | |
* both client and server rekey _automatically_ (a) after 2^31 packets, because after 2^32 packets the sequence number for packets wraps (b) after 2^(blocksize_in_bits/4) blocks (see: http://www.ietf.org/internet-drafts/draft-ietf-secsh-newmodes-00.txt) (a) and (b) are _enabled_ by default, and only disabled for known openssh versions, that don't support rekeying properly. * client option 'RekeyLimit' * do not reply to requests during rekeying | |||
2003-03-23 | unbreak rekeying for privsep; ok millert@ | Markus Friedl | |
2003-03-05 | fix memory leaks; from dlheine@suif.Stanford.EDU/CLOUSEAU; ok djm@ | Markus Friedl | |
2003-02-16 | fix permitrootlogin forced-commands-only for privsep; bux #387; ok provos@ | Markus Friedl | |
2003-02-04 | skey/bsdauth: use 0 to indicate failure instead of -1, because | Markus Friedl | |
the buffer API only supports unsigned ints. | |||
2002-11-05 | handle overflows for size_t larger than u_int; siw@goneko.de, bug #425 | Markus Friedl | |
2002-09-26 | krb4 + privsep; ok dugsong@, deraadt@ | Markus Friedl | |
2002-09-24 | only call kerberos code for authctxt->valid | Markus Friedl | |
2002-09-23 | only call auth_krb5 if kerberos is enabled; ok deraadt@ | Markus Friedl | |
2002-09-09 | signed vs unsigned from -pedantic; ok henning@ | Markus Friedl | |
2002-09-09 | kerberos support for privsep. confirmed to work by lha@stacken.kth.se | Jun-ichiro itojun Hagino | |
patch from markus | |||
2002-08-29 | pass addrlen with sockaddr *; from Hajimu UMEMOTO <ume@FreeBSD.org> | Kevin Steves | |
NOTE: there are also p-specific parts to this patch. ok markus@ | |||
2002-08-02 | Change mm_zalloc() sanity checks to be more in line with what | Todd C. Miller | |
we do in calloc() and add a check to monitor_mm.c. OK provos@ and markus@ | |||
2002-07-22 | u_int here; ok provos@ | Kevin Steves | |
2002-06-27 | use xfree() | Theo de Raadt | |
2002-06-27 | improve mm_zalloc check; markus ok | Theo de Raadt | |
2002-06-26 | correct %u | Theo de Raadt | |
2002-06-26 | be careful in mm_zalloc | Theo de Raadt | |
2002-06-22 | save auth method before monitor_reset_key_state(); bugzilla bug #284; | Kevin Steves | |
ok provos@ | |||
2002-06-21 | Don't initialise compression buffers when compression=no in sshd_config; | Damien Miller | |
ok Niels@ | |||
2002-06-19 | make the monitor sync the transfer ssh1 session key; | Markus Friedl | |
transfer keycontext only for RC4 (this is still depends on EVP implementation details and is broken). | |||
2002-06-04 | __FUNCTION__ -> __func__ | Markus Friedl | |
2002-06-04 | save the session id (hash) for ssh2 (it will be passed with the initial sign ↵ | Markus Friedl | |
request) and verify that this value is used during authentication; ok provos@ | |||
2002-06-04 | only allow enabled authentication methods; ok provos@ | Markus Friedl | |
2002-05-15 | 'monitor' variable clashes with at least one lame platform (NeXT). Renamed | mouring | |
to 'pmonitor'. provos@ | |||
2002-05-12 | Fix sshd Banner option for privsep; ok markus@ provos@ | Damien Miller | |
2002-03-30 | check waitpid for EINTR; based on patch from peter@ifm.liu.se | Markus Friedl | |
2002-03-27 | monitor_allowed_key() returns int instead of pointer. ok markus@ | mouring | |
2002-03-24 | remove "\n" from fatal() | Kevin Steves | |
2002-03-21 | fix NULL %s on debug3(); ok markus@ | Kevin Steves | |
2002-03-19 | use SSH_SESSION_KEY_LENGTH for key length | Markus Friedl | |