Fix possible DOS in konqueror (CVE-2009-2537)

(cherry picked from commit 89cfde63b8)
v3.5.13-sru
Francois Andriot 11 years ago committed by Slávek Banko
parent 62f646f835
commit ca0faebe9a

@ -62,6 +62,9 @@
#include <kdebug.h>
// CVE-2009-2537 (vendors agreed on max 10000 elements)
#define MAX_SELECT_LENGTH 10000
namespace KJS {
KJS_DEFINE_PROTOTYPE_WITH_PROTOTYPE(HTMLDocumentProto, DOMDocumentProto)
@ -2550,8 +2553,14 @@ void KJS::HTMLElement::putValueProperty(ExecState *exec, int token, const Value&
case SelectValue: { select.setValue(str); return; }
case SelectLength: { // read-only according to the NS spec, but webpages need it writeable
Object coll = Object::dynamicCast( getSelectHTMLCollection(exec, select.options(), select) );
if ( coll.isValid() )
coll.put(exec,"length",value);
if ( coll.isValid() ) {
if (value.toInteger(exec) >= MAX_SELECT_LENGTH) {
Object err = Error::create(exec, RangeError);
exec->setException(err);
} else {
coll.put(exec, "length", value);
}
}
return;
}
// read-only: form

Loading…
Cancel
Save