Displaying 20 results from an estimated 20 matches for "xauth_path".
1999 Dec 09
0
xauth location in openssh-1.2pre17
...ot; to includes.h, which quiets a
compiler warning in sshd.c.
hope this helps,
-dagraz
--- configure.in.orig Thu Dec 9 14:16:45 1999
+++ configure.in Thu Dec 9 14:14:42 1999
@@ -287,4 +287,8 @@
[AC_DEFINE(HAVE_MD5_PASSWORDS)]
)
+dnl Check for the path to xauth
+AC_PATH_PROG(xauth_path, xauth)
+AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")
+
AC_OUTPUT(Makefile)
--- includes.h.orig Thu Dec 9 14:16:16 1999
+++ includes.h Thu Dec 9 14:15:50 1999
@@ -77,11 +77,7 @@
#include "bsd-strlcat.h"
#include "bsd-mktemp.h"
#include "bsd-snprintf.h...
2002 Jun 24
1
remove --with-rsh
...===========================================
RCS file: /var/cvs/openssh/acconfig.h,v
retrieving revision 1.138
diff -u -r1.138 acconfig.h
--- acconfig.h 12 Jun 2002 16:57:15 -0000 1.138
+++ acconfig.h 24 Jun 2002 00:50:20 -0000
@@ -228,9 +228,6 @@
/* Define if xauth is found in your path */
#undef XAUTH_PATH
-/* Define if rsh is found in your path */
-#undef RSH_PATH
-
/* Define if you want to allow MD5 passwords */
#undef HAVE_MD5_PASSWORDS
Index: configure.ac
===================================================================
RCS file: /var/cvs/openssh/configure.ac,v
retrieving revision 1.68
di...
2001 Aug 18
0
installing openssh-2.9p2 after openssl-0.9.6b on freebsd-4.3-RELEASE
...cdir) $(PATHS) -DHAVE_CONFIG_H
! # -ino: Sat-18.08.01-21:02
! #LIBS=-lwrap -lz -lutil -lcrypto -lRSAglue -lrsaref -lcrypt
! LIBS=-lwrap -lz -lutil -lcrypt -L/l/ssl/lib -lcrypto -lssl -L/l/lib -lrsaref
AR=/usr/bin/ar
RANLIB=ranlib
INSTALL=/usr/bin/install -c
PERL=/usr/bin/perl5
ENT=
XAUTH_PATH=/usr/X11R6/bin/xauth
! LDFLAGS=-L. -Lopenbsd-compat/
EXEEXT=
SSH_MODE= 04711
--- 27,41 ----
CC=gcc
LD=gcc
CFLAGS=-O -pipe -Wall -I/l/ssl/include
! CPPFLAGS=-I. -I$(srcdir) -I/usr/local/ssl/include $(PATHS) -DHAVE_CONFIG_H
! LIBS=-lwrap -lz -lutil -lcrypto -lcrypt
AR=/usr/bin/ar...
2002 May 31
11
(no subject)X-forward
No "ssh -X hostname" doesn't work.
But when you "export DISPLAY=..." it works!?
I set the the Display Hack so that I can see my IP with "env" or "echo
SSH_CLIENT" when I'm connect via VPN-Tunnel and I don't know my IP in
the Net I'm connected through.
Andreas Kerl
-----------------------------------------
DTS Medien GmbH
Heidestrasse 38
2018 Apr 27
4
[PATCH] allow indefinite ForwardX11Timeout by setting it to 0
This change allows use of untrusted X11 forwarding (which is more
secure) without
requiring users to choose a finite timeout after which to refuse new
connections.
This matches the semantics of the X11 security extension itself, which
also treat a
validity timeout of 0 on an authentication cookie as indefinite.
Signed-off-by: Trixie Able <table at inventati.org>
---
clientloop.c | 12
1999 Dec 28
1
Patch to detect perl using autoconf
...configure.in to find where perl is and use it to
run fixpaths. Here's the patch:
--- configure.in.orig Mon Dec 27 23:09:36 1999
+++ configure.in Tue Dec 28 10:16:05 1999
@@ -9,6 +9,7 @@
AC_PROG_RANLIB
AC_PROG_INSTALL
AC_CHECK_PROG(AR, ar, ar)
+AC_CHECK_PROG(PERL, perl, perl)
AC_PATH_PROG(xauth_path, xauth)
dnl Use ip address instead of hostname in $DISPLAY
--- Makefile.in.orig Tue Dec 28 10:22:27 1999
+++ Makefile.in Tue Dec 28 10:23:54 1999
@@ -25,6 +25,7 @@
AR=@AR@
RANLIB=@RANLIB@
INSTALL=@INSTALL@
+PERL=@PERL@
LDFLAGS=-L. @LDFLAGS@
GNOME_CFLAGS=`gnome-config --cflags gnome gnomeu...
2000 Oct 25
1
Typo in configure.in
...thval" != "xno" ; then
tryssldir=$withval
fi
]
@@ -824,7 +824,7 @@
AC_ARG_WITH(xauth,
[ --with-xauth=PATH Specify path to xauth program ],
[
- if test "x$withval" != "$xno" ; then
+ if test "x$withval" != "xno" ; then
xauth_path=$withval
fi
],
@@ -950,7 +950,7 @@
[
if test "x$withval" != "xno" ; then
- if test "x$withval" != "$xyes" ; then
+ if test "x$withval" != "xyes" ; then
CFLAGS="$CFLAGS -I${withval}/include"
LDFLAGS=&quo...
2001 Feb 20
1
_PATH_STDPATH and @bindir@
Sorry if this is stuff that's been talked about before. If it is, just
ignore me.
I'm curious to know why Portable OpenSSH doesn't include @bindir@ in
the _PATH_STDPATH. This would save most installers of portable OpenSSH
from having to --with-default-path=$PREFIX/bin in order to ensure that
scp will work properly. This would also, I imagine, save quite a lot
of hassle for
2008 Jan 08
2
have configure generate header dependencies automatically
...======================================================
RCS file: /usr/local/src/security/openssh/cvs/openssh/Makefile.in,v
retrieving revision 1.285
diff -u -p -r1.285 Makefile.in
--- Makefile.in 11 Jun 2007 04:01:42 -0000 1.285
+++ Makefile.in 8 Jan 2008 05:36:33 -0000
@@ -56,6 +56,7 @@ ENT=@ENT@
XAUTH_PATH=@XAUTH_PATH@
LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@
EXEEXT=@EXEEXT@
+INCLUDES=@INCLUDES@
INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
INSTALL_SSH_RAND_HELPER=@INSTALL_SSH_RAND_HELPER@
@@ -120,7 +121,7 @@ $(LIBSSH_OBJS): Makefile.in config.h
$(SSHOBJS): Makefile.in config.h
$(SSHDOBJS): Ma...
2000 Aug 13
1
Patches for openssh port forwarding
...play_offset = -1;
options->xauth_location = NULL;
+ options->port_forwarding = -1;
options->strict_modes = -1;
options->keepalives = -1;
options->log_facility = (SyslogFacility) - 1;
@@ -116,6 +117,8 @@
if (options->xauth_location == NULL)
options->xauth_location = XAUTH_PATH;
#endif /* XAUTH_PATH */
+ if (options->port_forwarding == -1)
+ options->port_forwarding = 1; /* Allow forwarding */
if (options->strict_modes == -1)
options->strict_modes = 1;
if (options->keepalives == -1)
@@ -180,9 +183,9 @@
sSkeyAuthentication,
#endif
sPassword...
2001 Feb 12
3
add scp path to _PATH_STDPATH
what do you think about this patch to add the path to scp to
_PATH_STDPATH? is there a better or cleaner way to do this? i'm hoping
to ward off 'scp doesn't work' questions for the next release.
i did *not* add this to a --with-default-path path, because if a user
specifies that, they should control its value completely.
Index: Makefile.in
1999 Dec 01
1
Compile bugs in openssh-1.2pre15 on Solaris (2.6)
...1999
***************
*** 76,81 ****
--- 76,83 ----
#include "bsd-strlcpy.h"
#include "bsd-strlcat.h"
#include "bsd-mktemp.h"
+ #include "bsd-login.h"
+ #include "bsd-daemon.h"
/* Define this to be the path of the xauth program. */
#ifndef XAUTH_PATH
*** rsa.h.ORIG Thu Nov 25 10:54:59 1999
--- rsa.h Wed Dec 1 13:10:55 1999
***************
*** 14,19 ****
--- 14,26 ----
*/
/* RCSID("$Id: rsa.h,v 1.4 1999/11/24 19:53:50 markus Exp $"); */
+ #ifndef __P
+ #ifdef __STDC__
+ #define __P(x) x
+ #else
+ #define __P(x) ()
+ #end...
2002 Apr 01
0
[Bug 198] New: Error getting file with sftp on old F-Secure servers
...$(srcdir) -I/home/gmccone/installs/openssl-0.9.6c/include -
I/home/gmccone/installs/zlib-1.1.4 -I/usr/local/include $(PATHS) -
DHAVE_CONFIG_H
LIBS=-lz -lsocket -lnsl -lcrypto
LIBPAM=-lpam -ldl
LIBWRAP=
AR=/usr/xpg4/bin/ar
RANLIB=ranlib
INSTALL=./install-sh -c
PERL=/home/gmccone/local/bin/perl
ENT=
XAUTH_PATH=/usr/openwin/bin/xauth
LDFLAGS=-L. -Lopenbsd-compat/ -R/home/gmccone/installs/openssl-0.9.6c -
L/home/gmccone/installs/openssl-0.9.6c -L/home/gmccone/installs/zlib-1.1.4 -
R/home/gmccone/installs/zlib-1.1.4 -L/usr/local/lib -R/usr/local/lib
EXEEXT=
SSH_MODE= 0711
INSTALL_SSH_PRNG_CMDS=
INSTALL_SS...
2006 Apr 11
0
Problem building openssh-4.3p2 under cygwin and windows XP
...39;undef'
PROG_WHO='/bin/who'
RANLIB='ranlib'
SED='/usr/bin/sed'
SH='/usr/bin/sh'
SHELL='/bin/sh'
SSH_PRIVSEP_USER='sshd'
STARTUP_SCRIPT_SHELL='/bin/sh'
STRIP_OPT='-s'
TEST_MINUS_S_SH='/usr/bin/bash'
TEST_SHELL='sh'
XAUTH_PATH='undefined'
ac_ct_CC='gcc'
ac_ct_RANLIB='ranlib'
bindir='${exec_prefix}/bin'
build='i686-pc-cygwin'
build_alias=''
build_cpu='i686'
build_os='cygwin'
build_vendor='pc'
datadir='${prefix}/share'
exec_prefix='${prefix...
2002 Mar 26
0
[Bug 187] New: ssh-keygen not converting from and to SECSH standard correctly
...$(srcdir) -I/home/gmccone/installs/openssl-0.9.6c/include -
I/home/gmccone/installs/zlib-1.1.4 -I/usr/local/include $(PATHS) -
DHAVE_CONFIG_H
LIBS=-lz -lsocket -lnsl -lcrypto
LIBPAM=-lpam -ldl
LIBWRAP=
AR=/usr/xpg4/bin/ar
RANLIB=ranlib
INSTALL=./install-sh -c
PERL=/home/gmccone/local/bin/perl
ENT=
XAUTH_PATH=/usr/openwin/bin/xauth
LDFLAGS=-L. -Lopenbsd-compat/ -R/home/gmccone/installs/openssl-0.9.6c -
L/home/gmccone/installs/openssl-0.9.6c -L/home/gmccone/installs/zlib-1.1.4 -
R/home/gmccone/installs/zlib-1.1.4 -L/usr/local/lib -R/usr/local/lib
EXEEXT=
SSH_MODE= 0711
INSTALL_SSH_PRNG_CMDS=
INSTALL_SS...
1999 Dec 21
0
Problem with UTMP recording
...e HAVE_OLD_PAM 1
/* Data types */
/* #undef HAVE_QUAD_T */
#define HAVE_INTXX_T 1
#define HAVE_U_INTXX_T 1
#define HAVE_UINTXX_T 1
/* Define if you have /dev/ptmx */
/* #undef HAVE_DEV_PTMX */
/* Define if you have /dev/ptc */
/* #undef HAVE_DEV_PTS_AND_PTC */
/* Path to xauth binary */
#define XAUTH_PATH "/usr/X11R6/bin/xauth"
/* The number of bytes in a int. */
#define SIZEOF_INT 4
/* The number of bytes in a long int. */
#define SIZEOF_LONG_INT 4
/* The number of bytes in a long long int. */
#define SIZEOF_LONG_LONG_INT 8
/* The number of bytes in a short int. */
#define SIZEOF_...
2001 Oct 16
6
program-prefix does not work
...(sysconfdir)/ssh_host_key \
! -D/etc/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \
! -D/etc/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \
! -D/var/run/sshd.pid=$(piddir)/sshd.pid \
-D/etc/moduli=$(sysconfdir)/moduli \
! -D/etc/sshrc=$(sysconfdir)/sshrc \
-D/usr/X11R6/bin/xauth=$(XAUTH_PATH) \
-D/usr/bin:/bin:/usr/sbin:/sbin=@user_path@
FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
--- 62,86 ----
CONFIGFILES_IN=sshd_config ssh_config moduli
PATHSUBS = \
! -D/etc/ssh_config=$(sysconfdir)/$(program_prefix)ssh_config \
! -D/etc/ssh_known_hosts=$(sysconfdir)/$(prog...
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...USE_EXTERNAL_ASKPASS */
#define HAVE___PROGNAME 1
#define HAVE___FUNCTION__ 1
#define HAVE___func__ 1
/* #undef GSSAPI */
/* #undef KRB5 */
/* #undef HEIMDAL */
/* #undef USE_AFS */
/* #undef SKEY */
/* #undef LIBWRAP */
#define HAVE_LOGIN 1
#define HAVE_DAEMON 1
#define HAVE_GETPAGESIZE 1
#define XAUTH_PATH "/usr/X11R6/bin/xauth"
/* #undef HAVE_MD5_PASSWORDS */
/* #undef DISABLE_SHADOW */
#define HAS_SHADOW_EXPIRE 1
/* #undef HAVE_OSF_SIA */
/* #undef HAVE_GETPWANAM */
/* #undef HAVE_OLD_PAM */
/* #undef PAM_SUN_CODEBASE */
/* #undef MAIL_DIRECTORY */
#define HAVE_U_INT 1
#define HAVE_INTXX_...
1999 Dec 10
5
openssh on AIX v4.3.3 with native compiler
Hello,
Was looking in the archives... and haven't seen this one listed.
When I compile openssh-1.2pre17 on AIX v4.3.3 with the native compiler
I get the following errors. I haven't see this __attribute__ code.. What
compiler/libraries are needed to compile this? I have seen that people
have compiled openssh on AIX.. Just wondering what you have used.
# make
cc -g
2000 Aug 23
1
Protocol 2 remote forwarding patch
...11_display_offset = -1;
options->xauth_location = NULL;
+ allow_port_forwarding = -1;
options->strict_modes = -1;
options->keepalives = -1;
options->log_facility = (SyslogFacility) - 1;
@@ -116,6 +120,8 @@
if (options->xauth_location == NULL)
options->xauth_location = XAUTH_PATH;
#endif /* XAUTH_PATH */
+ if (allow_port_forwarding == -1)
+ allow_port_forwarding = 1; /* Allow forwarding */
if (options->strict_modes == -1)
options->strict_modes = 1;
if (options->keepalives == -1)
@@ -180,9 +186,9 @@
sSkeyAuthentication,
#endif
sPasswordAuthenticati...