search for: auth_connect

Displaying 9 results from an estimated 9 matches for "auth_connect".

Did you mean: auth_reconnect
2006 Oct 24
1
[Bug 1254] Race condition in ssh-agent AUTH_CONNECTION
http://bugzilla.mindrot.org/show_bug.cgi?id=1254 Summary: Race condition in ssh-agent AUTH_CONNECTION Product: Portable OpenSSH Version: 4.4p1 Platform: ix86 OS/Version: FreeBSD Status: NEW Keywords: patch Severity: normal Priority: P2 Component: ssh-agent AssignedTo: bitbucket at mindrot.org...
2008 Jun 13
0
[Bug 1254] Race condition in ssh-agent AUTH_CONNECTION
https://bugzilla.mindrot.org/show_bug.cgi?id=1254 --- Comment #3 from Damien Miller <djm at mindrot.org> 2008-06-13 13:23:39 --- I can't reproduce this at all, can you try a recent ssh-agent (ideally from 5.0p1) to see if the behaviour persists? -- Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are
2009 Aug 18
11
[Bug 1633] New: Race condition in ssh-agent AUTH_CONNECTION
https://bugzilla.mindrot.org/show_bug.cgi?id=1633 Summary: Race condition in ssh-agent AUTH_CONNECTION Product: Portable OpenSSH Version: 5.2p1 Platform: ix86 OS/Version: Linux Status: NEW Keywords: patch Severity: normal Priority: P2 Component: ssh-agent AssignedTo: unassigned-bugs at mindrot.org...
2005 Feb 11
1
imap-login zombies
Running dovecot-0.99.13 on Solaris9/Sparc with ~25k users, we are having regularly recurring problems with large numbers imap-login/pop3-login drones, cycling on poll(). Over the course of 1-2 days, the number of such processes slowly rises to >1000, exhausts resources, and necessitates that dovecot be restarted (having killed all current active and zombie child processes). Nothing of
2007 Aug 21
1
ssh-agent security
...19:56:38.000000000 -0400 @@ -134,6 +134,9 @@ /* Default lifetime (0 == forever) */ static int lifetime = 0; +static int run_inform = 0; +char inform_cmd[MAXPATHLEN]; + static void close_socket(SocketEntry *e) { @@ -247,6 +250,28 @@ MD5_CTX md; Key *key; +#if defined(SO_PEERCRED) + if (AUTH_CONNECTION == e->type) { + struct ucred cred; + socklen_t len = sizeof(cred); + char inform_cmdline[MAXPATHLEN]; + + if (run_inform && getsockopt(e->fd, SOL_SOCKET, SO_PEERCRED, &cred, &len) >= 0) { + int ret; + + snprintf(inform_cmdline, sizeof inform_cmdline, "%s %d&...
2004 Jun 14
1
vpopmail and open smtp relay
...-common/auth-connection.c dovecot-0.99.10.5-patched/src/login-common/auth-connection.c --- dovecot-0.99.10.5/src/login-common/auth-connection.c Mon May 26 19:27:13 2003 +++ dovecot-0.99.10.5-patched/src/login-common/auth-connection.c Mon Jun 14 13:21:22 2004 @@ -298,6 +298,9 @@ struct auth_connection *conn; struct auth_request *request; struct auth_login_request_new auth_request; +#ifdef PASSDB_VPOPMAIL + struct client *_client = context; +#endif if (auth_reconnect) auth_connect_missing(); @@ -325,6 +328,9 @@ auth_request.protocol = protocol; auth_r...
2011 May 18
2
Might a patch to ssh-agent to allow relaxing of peer euid check be accepted?
..."peer euid %u != uid %u", + (u_int) euid, (u_int) getuid()); + + } else { + error("uid mismatch: " + "peer euid %u != uid %u", + (u_int) euid, (u_int) getuid()); + close(sock); + break; + } } new_socket(AUTH_CONNECTION, sock); } @@ -1116,6 +1126,7 @@ fprintf(stderr, " -d Debug mode.\n"); fprintf(stderr, " -a socket Bind agent socket to given name.\n"); fprintf(stderr, " -t life Default identity lifetime (seconds).\n"); + fprintf(stderr, " -U...
2012 Mar 11
2
[patch] Threading support in ssh-agent
...* are met: @@ -58,6 +60,9 @@ #ifdef HAVE_PATHS_H # include <paths.h> #endif +#ifdef HAVE_LIBPTHREAD +#include "ssh-openssl-thread-locking.h" +#endif #include <signal.h> #include <stdarg.h> #include <stdio.h> @@ -88,6 +93,9 @@ AUTH_UNUSED, AUTH_SOCKET, AUTH_CONNECTION +#ifdef HAVE_LIBPTHREAD + , AUTH_INUSE +#endif } sock_type; typedef struct { @@ -137,6 +145,50 @@ /* Default lifetime (0 == forever) */ static int lifetime = 0; +#ifdef HAVE_LIBPTHREAD + +#define MAX_THREADS 20 + +#define REQ_QUEUE_LEN (MAX_THREADS * 2) + +typedef void (*AuthWorker)(S...
2009 Jul 31
112
[Bug 1626] New: Bugs intended to be fixed in 5.4
https://bugzilla.mindrot.org/show_bug.cgi?id=1626 Summary: Bugs intended to be fixed in 5.4 Product: Portable OpenSSH Version: -current Platform: Other OS/Version: Mac OS X Status: NEW Severity: normal Priority: P2 Component: Miscellaneous AssignedTo: unassigned-bugs at mindrot.org