Lucene search
+L

2199 matches found

OSS-Fuzz
OSS-Fuzz
added 2018/02/10 8:08 p.m.22 views

chakra: Crash in Js::JavascriptPromise::ResolveHelper

Project: https://github.com/Microsoft/ChakraCore.git Detailed report: https://oss-fuzz.com/testcase?key=4883765965881344 Project: chakra Fuzzer: jsfuzzer Job Type: asanchakra Platform Id: linux Crash Type: UNKNOWN READ Crash Address: 0x7f2d885c84d8 Crash State: Js::JavascriptPromise::ResolveHelpe...

6.7AI score
SaveExploits0Affected Software1
OSS-Fuzz
OSS-Fuzz
added 2018/01/31 8:33 a.m.25 views

chakra: Heap-use-after-free in Js::LiteralStringWithPropertyStringPtr::NewFromCString

Project: https://github.com/Microsoft/ChakraCore.git Detailed report: https://oss-fuzz.com/testcase?key=4913256519958528 Project: chakra Fuzzer: jsfuzzer Job Type: asanchakra Platform Id: linux Crash Type: Heap-use-after-free READ 1 Crash Address: 0x61100000a600 Crash State:...

6.7AI score
SaveExploits0Affected Software1
OSS-Fuzz
OSS-Fuzz
added 2018/01/29 1:15 p.m.23 views

chakra: Heap-double-free in void Memory::SmallHeapBlockT<SmallAllocationBlockAttributes>::SweepObjects<

Project: https://github.com/Microsoft/ChakraCore.git Detailed report: https://oss-fuzz.com/testcase?key=5709198886174720 Project: chakra Fuzzer: jsfuzzer Job Type: asanchakra Platform Id: linux Crash Type: Heap-double-free Crash Address: 0x61500002e100 Crash State: void...

6.7AI score
SaveExploits0Affected Software1
OSS-Fuzz
OSS-Fuzz
added 2018/01/22 11:40 a.m.18 views

chakra: Crash in Js::JavascriptError::Is

Project: https://github.com/Microsoft/ChakraCore.git Detailed report: https://oss-fuzz.com/testcase?key=6196917705900032 Project: chakra Fuzzer: jsfuzzer Job Type: asanchakra Platform Id: linux Crash Type: UNKNOWN READ Crash Address: 0x00107fff8004 Crash State: Js::JavascriptError::Is...

6.7AI score
SaveExploits0Affected Software1
seebug.org
seebug.org
added 2018/01/22 12:00 a.m.61 views

Microsoft Edge: Chakra: Deferred parsing makes wrong scopes #2(CVE-2018-0775)

Since the PoC is only triggerable when the "DeferParse" flag enabled and requires a with statement, I think this is simillar to issue 1310 . PoC: // Enable the flag using '\n'.repeat0x1000 evalfunction f with function printf; ; ; + '\n'.repeat0x1000; PoC 2: // ./ch poc.js -ForceDeferParse functio...

7.6CVSS7.4AI score0.6787EPSS
SaveExploits5
seebug.org
seebug.org
added 2018/01/22 12:00 a.m.61 views

Microsoft Edge: Chakra: Incorrect scope handling(CVE-2018-0774)

PoC: function funcarg = function printfunc; // SetHasOwnLocalInClosure should be called for the param scope in the PostVisitFunction function. printfunc; function func ; Chakra fails to distinguish whether the function is referenced in the param scope and ends up to emit an invalid opcode. functi...

7.6CVSS7.4AI score0.6787EPSS
SaveExploits5
seebug.org
seebug.org
added 2018/01/22 12:00 a.m.61 views

Microsoft Edge: Chakra: AsmJSByteCodeGenerator::EmitCall call handling bug(CVE-2018-0780)

AsmJSByteCodeGenerator::EmitCall which is used to emit call insturctions doesn't check if an array identifier is used as callee. The method handles those invalid calls in the same way it handles valid calls such as "arridx & ...". In these cases, the index register remains NoRegister which is...

2.6CVSS6.4AI score0.58572EPSS
SaveExploits5
seebug.org
seebug.org
added 2018/01/22 12:00 a.m.88 views

Microsoft Edge: Chakra: JIT: stack-to-heap copy bug(CVE-2018-0776)

If variables don't escape the scope, the variables can be allocated to the stack. However, there are some situations, such as when a bailout happens or accessing to arguments containing stack-allocated variables, where those variables should not exist in the stack. In these cases, the...

7.6CVSS7.6AI score0.78434EPSS
SaveExploits5
seebug.org
seebug.org
added 2018/01/22 12:00 a.m.58 views

Microsoft Edge: Chakra: JIT: Loop analysis bug(CVE-2018-0777)

Here's the PoC demonstrating OOB write. function optarr, start, end for let i = start; i end; i++ if i === 10 i += 0; // -- a arri = 2.3023e-320; function main let arr = new Array100; arr.fill1.1; for let i = 0; i 1000; i++ optarr, 0, 3; optarr, 0, 100000; main; What happens here is as follows: I...

7.6CVSS7.3AI score0.78434EPSS
SaveExploits5
seebug.org
seebug.org
added 2018/01/22 12:00 a.m.44 views

Microsoft Edge: Chakra: JIT: Incorrect bounds calculation(CVE-2018-0769)

Let's start with comments in the "GlobOpt::TrackIntSpecializedAddSubConstant" method. // Track bounds for add or sub with a constant. For instance, consider b = a + 2. The value of 'b' should track // that it is equal to the value of 'a' + 2. That part has been done above. Similarly, the value of...

7.6CVSS7.7AI score0.78954EPSS
SaveExploits5
seebug.org
seebug.org
added 2018/01/22 12:00 a.m.52 views

Microsoft Edge: Chakra: OOB read in AppendLeftOverItemsFromEndSegment(CVE-2018-0767)

Here's a snippet of AppendLeftOverItemsFromEndSegment in JavascriptArray.inl. growby = endSeg-length; current = current-GrowByMinrecycler, growby; CopyArraycurrent-elements + endIndex + 1, endSeg-length, Js::SparseArraySegmentendSeg-elements, endSeg-length;...

2.6CVSS5.8AI score0.65467EPSS
SaveExploits2
seebug.org
seebug.org
added 2018/01/22 12:00 a.m.42 views

Microsoft Edge: Chakra: JavascriptGeneratorFunction::GetPropertyBuiltIns exposes scriptFunction(CVE-2017-11914)

Here's a snippet of the method. bool JavascriptGeneratorFunction::GetPropertyBuiltInsVar originalInstance, PropertyId propertyId, Var value, PropertyValueInfo info, ScriptContext requestContext, BOOL result if propertyId == PropertyIds::length ... int len = 0; Var varLength; if...

7.6CVSS7.8AI score0.62646EPSS
SaveExploits5
Packet Storm
Packet Storm
added 2018/01/18 12:00 a.m.72 views

Microsoft Edge Chakra AsmJSByteCodeGenerator::EmitCall Call Handling

Microsoft Edge: Chakra: AsmJSByteCodeGenerator::EmitCall call handling bug CVE-2018-0780 AsmJSByteCodeGenerator::EmitCall which is used to emit call insturctions doesn't check if an array identifier is used as callee. The method handles those invalid calls in the same way it handles valid calls...

0.2AI score0.58572EPSS
SaveExploits5
Packet Storm
Packet Storm
added 2018/01/18 12:00 a.m.74 views

Microsoft Edge Chakra JIT Stack-To-Heap Copy Bug

Microsoft Edge: Chakra: JIT: stack-to-heap copy bug CVE-2018-0776 If variables don't escape the scope, the variables can be allocated to the stack. However, there are some situations, such as when a bailout happens or accessing to arguments containing stack-allocated variables, where those...

7.6CVSS0.78434EPSS
SaveExploits5
zdt
zdt
added 2018/01/18 12:00 a.m.62 views

Microsoft Edge Chakra - Incorrect Scope Handling Exploit

Exploit for windows platform in category dos / poc // PoC: function funcarg = function printfunc; // SetHasOwnLocalInClosure should be called for the param scope in the PostVisitFunction function. printfunc; function func ; // Chakra fails to distinguish whether the function is referenced in the...

7.6CVSS7.5AI score0.6787EPSS
SaveExploits5
zdt
zdt
added 2018/01/18 12:00 a.m.64 views

Microsoft Edge Chakra - AsmJSByteCodeGenerator::EmitCall Out-of-Bounds Read Exploit

Exploit for windows platform in category dos / poc / AsmJSByteCodeGenerator::EmitCall which is used to emit call insturctions doesn't check if an array identifier is used as callee. The method handles those invalid calls in the same way it handles valid calls such as "arridx & ...". In these case...

2.6CVSS6.4AI score0.58572EPSS
SaveExploits5
zdt
zdt
added 2018/01/18 12:00 a.m.99 views

Microsoft Edge Chakra - JavascriptGeneratorFunction::GetPropertyBuiltIns Type Confusion Exploit

Exploit for windows platform in category dos / poc / Here's a snippet of the method. bool JavascriptGeneratorFunction::GetPropertyBuiltInsVar originalInstance, PropertyId propertyId, Var value, PropertyValueInfo info, ScriptContext requestContext, BOOL result if propertyId == PropertyIds::length...

7.6CVSS7.8AI score0.62646EPSS
SaveExploits5
BDU FSTEC
BDU FSTEC
added 2018/01/18 12:00 a.m.9 views

The vulnerability of JavaScript ChakraCore and Microsoft Edge browsers, related to improper handling of objects in memory, allows attackers to gain control of the current user’s rights.

The vulnerability of JavaScript ChakraCore and the Microsoft Edge browser is related to improper handling of objects in memory. Exploiting this vulnerability can allow a remote attacker to gain privileges of the current user...

7.6CVSS5.5AI score0.07912EPSS
SaveExploits0References4
zdt
zdt
added 2018/01/18 12:00 a.m.72 views

Microsoft Edge Chakra JIT - Incorrect Bounds Calculation Exploit

Exploit for windows platform in category dos / poc / Let's start with comments in the "GlobOpt::TrackIntSpecializedAddSubConstant" method. // Track bounds for add or sub with a constant. For instance, consider b = a + 2. The value of 'b' should track // that it is equal to the value of 'a' + 2...

7.6CVSS7.5AI score0.78954EPSS
SaveExploits5
zdt
zdt
added 2018/01/18 12:00 a.m.56 views

Microsoft Edge Chakra JIT - Out-of-Bounds Write Exploit

Exploit for windows platform in category dos / poc // Here's the PoC demonstrating OOB write. function optarr, start, end for let i = start; i end; i++ if i === 10 i += 0; // -- a arri = 2.3023e-320; function main let arr = new Array100; arr.fill1.1; for let i = 0; i 1000; i++ optarr, 0, 3; optar...

7.6CVSS7.5AI score0.78434EPSS
SaveExploits5
Rows per page
Query Builder