-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (52 loc) · 1.85 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
<html manifest="offlineCache.manifest">
<head>
<meta charset="utf-8" />
<title>PS4 v6.72 Exploits Menu</title>
<link rel="stylesheet" type="text/css" href="css/index.css" />
<script src="exploits/utils.js"></script>
<script>
window.applicationCache.addEventListener("progress", updateCacheProgress, false);
window.applicationCache.oncached = function (e) { onCacheInstallation(); };
window.applicationCache.onupdateready = function (e) { onCacheInstallation(); };
</script>
<script src="exploits/common.js"></script>
<script src="exploits/exploit.js"></script>
</head>
<body>
<div id="exploitsMessage" class="exploits-message">PS4 v6.72 Exploits Menu</div>
<div class="exploits">
<div class="jailbreak">
<div class="title">Jailbreak</div>
<div class="exploits-scripts">
<button class="button" onclick="loadExploitAndHEN()">Load Exploit + HEN</button>
<button class="button" onclick="loadExploitAndMira()">Load Exploit + Mira</button>
</div>
</div>
<div class="payloads">
<div class="title">Payloads</div>
<div class="exploits-scripts">
<button class="button" onclick="disableUpdates()">Disable Updates</button>
<button class="button" onclick="enableUpdates()">Enable Updates</button>
</div>
</div>
</div>
<script>
function loadExploitAndHEN() {
updateExploitsMessage("Loading Exploit + HEN ...");
setTimeout(jailbreakPs4(true), 500);
}
function loadExploitAndMira() {
updateExploitsMessage("Loading Exploit + Mira ...");
setTimeout(jailbreakPs4(false), 500);
}
function disableUpdates() {
updateExploitsMessage("Disabling Updates ...");
loadPayload("exploits/payloads/disableUpdates.js", "Updates disabled !");
}
function enableUpdates() {
updateExploitsMessage("Enabling Updates ...");
loadPayload("exploits/payloads/enableUpdates.js", "Updates enabled !");
}
</script>
</body>
</html>