Closed Bug 1278817 Opened 8 years ago Closed 6 years ago

Insufficient length check when unserializing NPNSString

Categories

(Core Graveyard :: Plug-ins, defect, P5)

Unspecified
macOS
defect

Tracking

(Not tracked)

RESOLVED INVALID

People

(Reporter: tedd, Unassigned)

References

Details

When unserializing a NPNSString, a length check is performed [1] to avoid an overflow when multiplying integers.

This check can be bypassed with a negative |length| because everything is a long (or casted to long) which makes this a signed check, depending on the alloc implementation (such as malloc) the buffer allocation [2] could return a buffer of size 0 or a null pointer.

Either way, the return value is not checked and used here [3] which leads to a memcpy() operation. memcpy() expects an unsigned int as its length parameter and will therefore copy data to the buffer.

With a buffer of size 0, this could lead to memory corruption on the heap, or a crash because of a null pointer dereference.

This seems to only affect Mac, I had some trouble debugging this (for one, because I don't have a mac), so this is only theoretical right now. I would appreciate if someone could help further investigating this.

[1] https://dxr.mozilla.org/mozilla-central/rev/1828937da9493b2cd54862b9c520b2ba5c7db92b/dom/plugins/ipc/PluginMessageUtils.h#463
[2] https://dxr.mozilla.org/mozilla-central/rev/1828937da9493b2cd54862b9c520b2ba5c7db92b/dom/plugins/ipc/PluginMessageUtils.h#467
[3] https://dxr.mozilla.org/mozilla-central/rev/1828937da9493b2cd54862b9c520b2ba5c7db92b/dom/plugins/ipc/PluginMessageUtils.h#469
Component: DOM → Plug-ins
Group: core-security → dom-core-security
Keywords: sec-moderate
This is not a security bug. Plugins that use mac strings already aren't in a sandbox and could do bad things directly. And MakeUnique currently uses new[] which is infallible.
Group: dom-core-security
Keywords: sec-moderate
Priority: -- → P5
Status: NEW → RESOLVED
Closed: 6 years ago
Resolution: --- → INVALID
Product: Core → Core Graveyard
You need to log in before you can comment on or make changes to this bug.