Displaying 2 results from an estimated 2 matches for "nurd".
Did you mean:
nur
2006 Aug 25
2
RFC: non-root ssh tun access
...bugs have been introduced.
3.) verify I'm not smoking crack. :)
This is my first attempt at modifying openssh, so I'm sure I've screwed up
a few conventions or security procedures. Let me know if I did and I'll
fix it.
thx,
Jason.
-------------- next part --------------
diff -Nurd openssh-4.3p2.orig/misc.c openssh-4.3p2/misc.c
--- openssh-4.3p2.orig/misc.c 2006-01-31 05:49:28.000000000 -0500
+++ openssh-4.3p2/misc.c 2006-08-25 09:01:31.000000000 -0400
@@ -579,12 +579,15 @@
return -1;
}
+#if defined(SSH_TUN_LINUX)
int
-tun_open(int tun, int mode)
+tun_open(int tun, int...
2001 Apr 06
0
Protocol 1 not working in openssh-2.5.2p2
...dev/pts/1 19:32:25 sshd[16823]: Accepted password for
anthonyu
So I dont think it's a problem with ttyname(3).
Below is a workaround patch that allows logins, but I
doubt it will be useful in anything but
troubleshooting. YMMV. Please let me know if a proper
fix is committed.
Thanks,
diff -Nurd openssh-2.5.2p2-orig/sshpty.c
openssh-2.5.2p2/sshpty.c
--- openssh-2.5.2p2-orig/sshpty.c Sun Mar 4
19:53:03 2001
+++ openssh-2.5.2p2/sshpty.c Thu Apr 5 19:41:55
2001
@@ -296,6 +296,10 @@
gid_t gid;
mode_t mode;
struct stat st;
+ char *dex;
+
+ dex = in...