summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authordavid <david>2002-03-07 17:33:25 +0000
committerdavid <david>2002-03-07 17:33:25 +0000
commitd11a22094f2d2b82e48d0dfa9247d96cdb299006 (patch)
tree9950eb57371d58fd240a0d89b97ed7732667d222 /security
parent340a0d3aa596619523bb10529c1e99e26155daf6 (diff)
downloadpkgsrc-d11a22094f2d2b82e48d0dfa9247d96cdb299006.tar.gz
Manually add patch for new Security issue - local, and possibly remote exploits
are a concern. http://www.pine.nl/advisories/pine-cert-20020301.txt
Diffstat (limited to 'security')
-rw-r--r--security/openssh/distinfo3
-rw-r--r--security/openssh/patches/patch-ap13
2 files changed, 15 insertions, 1 deletions
diff --git a/security/openssh/distinfo b/security/openssh/distinfo
index a62400f890b..00925689b71 100644
--- a/security/openssh/distinfo
+++ b/security/openssh/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.10 2002/03/07 16:45:34 tron Exp $
+$NetBSD: distinfo,v 1.11 2002/03/07 17:33:25 david Exp $
SHA1 (openssh-3.0.2p1.tar.gz) = c9a7e02936ace163ea58ec42e8e3f95df27fef2a
Size (openssh-3.0.2p1.tar.gz) = 781092 bytes
@@ -6,3 +6,4 @@ SHA1 (patch-aa) = 275e035cbed29ec3e72d7b3c9290cec8068d742b
SHA1 (patch-ab) = 271811fc88fbed42f22fa1dc503dc88953b5d76f
SHA1 (patch-ac) = e151977f95723c9bdc48dea5e313b89361b5b515
SHA1 (patch-ah) = 0c75daaa11c6a6e32bce628b8f866008677f155f
+SHA1 (patch-ap) = bf248a1b5770fbe1f8251e9355c9d9aea2cf905c
diff --git a/security/openssh/patches/patch-ap b/security/openssh/patches/patch-ap
new file mode 100644
index 00000000000..7ae11982d85
--- /dev/null
+++ b/security/openssh/patches/patch-ap
@@ -0,0 +1,13 @@
+$NetBSD: patch-ap,v 1.1 2002/03/07 17:33:25 david Exp $
+
+--- channels.c.orig Thu Mar 7 12:24:37 2002
++++ channels.c
+@@ -145,7 +145,7 @@
+ {
+ Channel *c;
+
+- if (id < 0 || id > channels_alloc) {
++ if (id < 0 || id >= channels_alloc) {
+ log("channel_lookup: %d: bad id", id);
+ return NULL;
+ }