openbsd-ports/graphics/netpbm/patches/patch-pbm_mgrtopbm_c
brad 73a9fe0066 Several math overflow errors were found in NetPBM by Al Viro and Alan
Cox.  While these programs are not installed suid root, they are often
used to prepare data for processing.  These errors may permit remote
attackers to cause a denial of service or execute arbitrary code in
any programs or scripts that use these graphics conversion tools.

http://marc.theaimsgroup.com/?l=bugtraq&m=104644687816522&w=2
2003-03-29 04:13:54 +00:00

17 lines
711 B
Plaintext

$OpenBSD: patch-pbm_mgrtopbm_c,v 1.1 2003/03/29 04:13:54 brad Exp $
--- pbm/mgrtopbm.c.orig Thu Mar 2 20:02:09 2000
+++ pbm/mgrtopbm.c Fri Mar 28 20:22:06 2003
@@ -108,6 +108,12 @@ getinit( file, colsP, rowsP, depthP, pad
head.magic[0], head.magic[1] );
pad = -1; /* should never reach here */
}
+
+ if(head.h_wide < ' ' || head.l_wide < ' ')
+ pm_error("bad width/height chars in MGR file");
+
+ overflow_add(*colsP, pad);
+
*colsP = ( ( (int) head.h_wide - ' ' ) << 6 ) + ( (int) head.l_wide - ' ' );
*rowsP = ( ( (int) head.h_high - ' ' ) << 6 ) + ( (int) head.l_high - ' ' );
*padrightP = ( ( *colsP + pad - 1 ) / pad ) * pad - *colsP;