forked from DarkModderVC/PS4JB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
156 lines (142 loc) · 3.76 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<html manifest="offlineCache.manifest">
<style>
.button {
background-color: #003263;
border-radius: 5px;
color: white;
padding: .5em;
text-decoration: none;
height:100%;
display:inline-table;
font-family: system-ui;
}
.button:focus,
.button:hover {
background-color: #007bff;
color: White;
}
.titlehead {
background-color: #003263;
border-radius: 5px;
color: white;
padding: .5em;
text-decoration: none;
text-align: center;
margin-top: -10px;
margin-bottom: -10px;
font-family: system-ui;
}
.titlehead:focus,
.titlehead:hover {
background-color: #007bff;
color: White;
}
.bg {
/* The image used */
background-image: url("ps4.jpg");
font-family: system-ui;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#myProgress {
border: 5px solid #FFFFFF;
border-radius: 5px;
background-color: #ddd;
height: 45px;
position: absolute;
top:0;
bottom: 250;
left: 150;
right: 150;
margin: auto;
}
#myBar {
width: 0%;
height: 40px;
background-color: #4CAF50;
text-align: center;
line-height: 30px;
color: white;
font-size: 35px;
padding-top: 5px;
}
</style>
<head>
<title>PS4 Jailbreak 7.55</title>
</head>
<body onload="go()" class="bg">
<script>
window.applicationCache.ondownloading=function(){document.getElementById("progress").innerHTML="Page Caching Started!!";localStorage.is755Cached=false;};
window.applicationCache.onprogress=function(a){document.getElementById("myBar").style.width=(Math.round(100*(a.loaded/a.total)))+"%";document.getElementById("myBar").innerHTML=(Math.round(100*(a.loaded/a.total)))+"%";};
window.applicationCache.oncached=function(){document.getElementById("progress").innerHTML="Page Cached Successfully!!";localStorage.is755Cached=true;setTimeout(function(){document.getElementById("progress").innerHTML="Turn Off the Internet & Reopen the Page to Run the Exploit!!"; }, 1500);};
</script>
<script>
var width = 0;
function frame1() {
var elem = document.getElementById("myBar");
var i=0;
var id = setInterval(fra, 10);
function fra(){
if(i<10 && width<100){
width++;
elem.style.width = width + "%";
elem.innerHTML = width + "%";
} i++;
}
}
</script>
<script>
function print(){}
var scriptCode = '';
function preloadScripts(lst)
{
for(var i = 0; i < lst.length; i++)
{
var xhr = new XMLHttpRequest();
xhr.open('GET', lst[i], false);
xhr.send('');
scriptCode += xhr.responseText + '\n';
}
}
function done()
{
if(main_ret == 0 || main_ret == 179){
document.getElementById("progress").innerHTML="Payload Loaded Successfully!!";
read_ptr_at(0);
}
else{
alert("Jailbreak failed! Reboot your PS4 and try again.");
}
}
window.miraloader = function()
{
preloadScripts(['blob.js', 'jb.js']);
}
window.postExploit = function()
{
setTimeout(function()
{
eval.call(window, scriptCode);
done();
}, 100);
};
</script>
<script src="utils.js"></script>
<script src="int64.js"></script>
<script src="ps4.js"></script>
<h1 id="progress" class="titlehead">Loading.. Please Wait !!</h1><hr><br>
<button style="opacity:0" id="input1" onfocus="handle2()"></button>
<button style="opacity:0" id="input2"></button>
<button style="opacity:0" id="input3" onfocus="handle2()"></button>
<select style="opacity:0" id="select1">
<option value="value1">Value1</option>
</select>
<h1 id="myProgress">
<div id="myBar">0%</div>
</h1>
<table id="load" align="center" style="width:600px;margin-top:30px;">
</table>
</body>
</html>