[asterisk-commits] sgriepentrog: branch certified-11.2 r403859 - /certified/branches/11.2/apps/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Dec 16 09:38:13 CST 2013
Author: sgriepentrog
Date: Mon Dec 16 09:38:11 2013
New Revision: 403859
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=403859
Log:
app_sms: BufferOverflow when receiving odd length 16 bit message
This patch prevents an infinite loop overwriting memory when
a message is received into the unpacksms16() function, where
the length of the message is an odd number of bytes.
(closes issue ASTERISK-22590)
Reported by: Jan Juergens
Tested by: Jan Juergens
Modified:
certified/branches/11.2/apps/app_sms.c
Modified: certified/branches/11.2/apps/app_sms.c
URL: http://svnview.digium.com/svn/asterisk/certified/branches/11.2/apps/app_sms.c?view=diff&rev=403859&r1=403858&r2=403859
==============================================================================
--- certified/branches/11.2/apps/app_sms.c (original)
+++ certified/branches/11.2/apps/app_sms.c Mon Dec 16 09:38:11 2013
@@ -697,7 +697,7 @@
}
while (l--) {
int v = *i++;
- if (l--) {
+ if (l && l--) {
v = (v << 8) + *i++;
}
*o++ = v;
@@ -715,6 +715,7 @@
} else if (is8bit(dcs)) {
unpacksms8(i, l, udh, udhl, ud, udl, udhi);
} else {
+ l += l % 2;
unpacksms16(i, l, udh, udhl, ud, udl, udhi);
}
return l + 1;
More information about the asterisk-commits
mailing list