diff options
author | Daniel Drake <dsd@gentoo.org> | 2004-11-10 23:05:04 +0000 |
---|---|---|
committer | Daniel Drake <dsd@gentoo.org> | 2004-11-10 23:05:04 +0000 |
commit | 9dce9e4de2952312a9e7b5a46b7ab59cc7375b71 (patch) | |
tree | 8ca512104ea60be0e279c3e56c15176d02a7d6ad /net-misc/pavuk/files | |
parent | closing out #70714, version bump and typo fix. (diff) | |
download | historical-9dce9e4de2952312a9e7b5a46b7ab59cc7375b71.tar.gz historical-9dce9e4de2952312a9e7b5a46b7ab59cc7375b71.tar.bz2 historical-9dce9e4de2952312a9e7b5a46b7ab59cc7375b71.zip |
Remove old insecure version, GLSA 200411-19
Diffstat (limited to 'net-misc/pavuk/files')
-rw-r--r-- | net-misc/pavuk/files/digest-pavuk-0.9.28-r4 | 1 | ||||
-rw-r--r-- | net-misc/pavuk/files/pavuk-0.9.28-digest_auth.c.patch | 30 | ||||
-rw-r--r-- | net-misc/pavuk/files/pavuk-0.9.28-http.patch | 13 |
3 files changed, 0 insertions, 44 deletions
diff --git a/net-misc/pavuk/files/digest-pavuk-0.9.28-r4 b/net-misc/pavuk/files/digest-pavuk-0.9.28-r4 deleted file mode 100644 index cdc14b2bba09..000000000000 --- a/net-misc/pavuk/files/digest-pavuk-0.9.28-r4 +++ /dev/null @@ -1 +0,0 @@ -MD5 d0f7b77bd11322add1f7d52d62afbf78 pavuk-0.9pl28.tgz 968336 diff --git a/net-misc/pavuk/files/pavuk-0.9.28-digest_auth.c.patch b/net-misc/pavuk/files/pavuk-0.9.28-digest_auth.c.patch deleted file mode 100644 index 9b12207d0a6a..000000000000 --- a/net-misc/pavuk/files/pavuk-0.9.28-digest_auth.c.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- digest_auth_orig.c 2000-12-03 08:25:44.000000000 -0600 -+++ digest_auth.c 2004-07-24 13:45:50.000000000 -0500 -@@ -87,6 +87,7 @@ - return retv; - } - -+/* PRE: Assumes 'buf' can store 2K */ - char *http_get_digest_auth_str(auth_digest, method, user, pass, urlp, buf) - http_digest_info *auth_digest; - char *method; -@@ -99,14 +100,15 @@ - char *a1,*a2,*a3; - char *d = url_encode_str(urlp->p.http.document, URL_PATH_UNSAFE); - -- sprintf(pom, "%s:%s:%s", user, auth_digest->realm, pass); -+ snprintf(pom, sizeof(pom), "%s:%s:%s", user, auth_digest->realm, pass); - a1 = _md5(pom); -- sprintf(pom, "%s:%s", method, d); -+ snprintf(pom, sizeof(pom), "%s:%s", method, d); - a2 = _md5(pom); -- sprintf(pom, "%s:%s:%s", a1, auth_digest->nonce, a2); -+ snprintf(pom, sizeof(pom), "%s:%s:%s", a1, auth_digest->nonce, a2); - a3 = _md5(pom); - -- sprintf(buf, -+ snprintf(buf, -+ 2048, - "Digest username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", response=\"%s\"" , - user, auth_digest->realm, auth_digest->nonce, d, a3); - diff --git a/net-misc/pavuk/files/pavuk-0.9.28-http.patch b/net-misc/pavuk/files/pavuk-0.9.28-http.patch deleted file mode 100644 index 88acf6f5e49f..000000000000 --- a/net-misc/pavuk/files/pavuk-0.9.28-http.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- http.c.old 2001-07-30 00:06:40.000000000 +0200 -+++ http.c 2004-06-14 01:33:27.000000000 +0200 -@@ -1111,8 +1111,8 @@ - if (!loc) - return -1; - -- if (sscanf(loc, "http://%[.0-9A-Za-z_-]:%d", proxy, &port) < 1) -- if (sscanf(loc, "%[.0-9A-Za-z_-]:%d", proxy, &port) !=2) -+ if (sscanf(loc, "http://%255[.0-9A-Za-z_-]:%d", proxy, &port) < 1) -+ if (sscanf(loc, "%255[.0-9A-Za-z_-]:%d", proxy, &port) !=2) - return -1; - - _free(docp->http_proxy); |