pkgsrc/audio/mpg123/patches/patch-aq
tron 06f374e77e Add fix for security vulnerability reported in CAN-2004-0982 based on
patches from Debian's advisory DSA-578. Bump package revision because of
this fix.
2004-11-07 08:55:04 +00:00

69 lines
1.4 KiB
Text

$NetBSD: patch-aq,v 1.2 2004/11/07 08:55:04 tron Exp $
--- httpget.c.orig 2004-11-07 09:47:28.000000000 +0100
+++ httpget.c 2004-11-07 09:49:34.000000000 +0100
@@ -55,11 +55,10 @@
#endif
int pos = 0;
- while(1) {
+ while(pos < (maxlen - 1)) {
if( read(fileno(f),string+pos,1) == 1) {
pos++;
if(string[pos-1] == '\n') {
- string[pos] = 0;
break;
}
}
@@ -78,6 +77,7 @@
}
#endif
+ string[pos] = '\0';
}
void encode64 (char *source,char *destination)
@@ -111,7 +111,7 @@
}
/* VERY simple auth-from-URL grabber */
-int getauthfromURL(char *url,char *auth)
+int getauthfromURL(char *url,char *auth,unsigned long authlen)
{
char *pos;
@@ -126,9 +126,13 @@
if( url[i] == '/' )
return 0;
}
+ if (pos-url >= authlen) {
+ fprintf (stderr, "Error: authentication data exceeds max. length.\n");
+ return -1;
+ }
strncpy(auth,url,pos-url);
auth[pos-url] = 0;
- strcpy(url,pos+1);
+ memmove(url,pos+1,strlen(pos+1)+1);
return 1;
}
return 0;
@@ -265,7 +269,10 @@
strncpy (purl, url, 1023);
purl[1023] = '\0';
- getauthfromURL(purl,httpauth1);
+ if (getauthfromURL(purl,httpauth1,sizeof(httpauth1)) < 0) {
+ sock = -1;
+ goto exit;
+ }
do {
strcpy (request, "GET ");
@@ -399,6 +406,7 @@
fprintf (stderr, "Too many HTTP relocations.\n");
exit (1);
}
+exit:
free (purl);
free (request);
free(host);