forked from aldostools/flashwriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.02 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
<!DOCTYPE html>
<html>
<body>
<title>PS3Xploit - Flash Writer</title>
<script>
var ua = navigator.userAgent;
var uaStringCheck = ua.substring(ua.indexOf("5.0 (") + 5, ua.indexOf(") Apple") - 7);
var fwVersion = ua.substring(ua.indexOf("5.0 (") + 19, ua.indexOf(") Apple"));
switch (uaStringCheck) {
case "PLAYSTATION":
switch (fwVersion) {
case "4.90":
window.location="490/index.html";
break;
case "4.91":
window.location="491/index.html";
break;
default:
alert('Your PS3 is not on FW 4.90 - 4.91! Your current running FW version is ' + fwVersion + ', which is not compatible with PS3Xploit Flash Writer.');
window.close();
break;
}
break;
default:
alert('You are not on a PlayStation 3 System! Open PS3Xploit - Flash Writer from PS3 Internet Browser.');
window.close();
break;
}
</script>
<noscript>
<center>
<h1><br><br><br><br><br><br><br><H1>
<H2>This tool requires JavaScript enabled.</H2>
</center>
</noscript>
</body>
</html>