forked from Hiperhazz/wiiuexploit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.15 KB
/
index.html
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
<html lang = "en-US">
<head>
<title>Wii U Web Exploits</title>
<script type="text/javascript">
if (navigator.userAgent.indexOf('.11274.US') !=-1)
{
window.location.href = "firmware/55X.html"
}
else if (navigator.userAgent.indexOf('.11274.EU') !=-1)
{
window.location.href = "firmware/55X.html"
}
else if (navigator.userAgent.indexOf('.11274.JP') !=-1)
{
window.location.href = "firmware/55X.html"
}
else if (navigator.userAgent.indexOf('.11264') !=-1)
{
window.location.href = "firmware/55X.html"
}
else if (navigator.userAgent.indexOf('.11224') !=-1)
{
window.location.href = "firmware/55X.html"
}
else if (navigator.userAgent.indexOf('.11146') !=-1)
{
window.location.href = "firmware/540.html"
}
else if (navigator.userAgent.indexOf('Nintendo WiiU') !=-1)
{
window.location.href = "firmware/xxx.html"
}
else
{
window.location.href = "firmware/404.html"
}
</script>
</head>
</html>