-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 1.68 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
<html>
<body>
<head>
<script src="./utils/jquery.min.js"></script>
<script src="./utils/utils.js"></script>
<script src="./utils/utils.log.js"></script>
</head>
<h1>Based on the work of qwertyoruiop and ALEXZZZ9</h1>
<h1>Exploit Dumper 5.55 Ported by 84Ciss</h1>
<h1>Dump libkernel.sprx and libSceWebKit2.sprx</h1>
<script>
window.didload = 0;
window.didpost = 0;
window.onload = function() {
window.didload = 1;
if (window.didpost == 1)
window.stage2();
}
window.postExpl = function() {
window.didpost = 1;
if (window.didload == 1)
window.stage2();
}
/*
window.finish = function() {
sc = document.createElement("script");
sc.src="kern_qwerty.js";
document.body.appendChild(sc);
}
*/
</script>
<script src="./expl.js"></script>
<script src="./rop.js"></script>
<pre id="console"></pre>
<center id="buttons" style="visibility:hidden;">
<input id="go1" type="button" value="Dump libkernel">
<br>
<input id="go2" type="button" value="Dump libSceWebKit2"><br>
</center>
<script>
/*
setTimeout(function() {
document.getElementById('go1').click();
}, 100);
setTimeout(function() {
document.getElementById('go2').click();
}, 100);
*/
</script>
</body>
</html>