-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (134 loc) · 4.93 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oresterosso 900 - Autoinstall ESP32-S2</title>
<style>
body {
background: linear-gradient(135deg, #ff8c00, #ffa500);
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
max-width: 600px;
margin: 20px;
text-align: center;
padding: 30px;
background-color: #fff;
border-radius: 15px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
position: relative;
transition: transform 0.3s ease;
}
.container:hover {
transform: scale(1.02);
}
.button {
display: inline-block;
padding: 12px 25px;
font-size: 16px;
font-weight: bold;
color: white;
text-align: center;
text-decoration: none;
border-radius: 5px;
margin: 10px 5px;
transition: all 0.3s ease, background-color 0.3s ease;
cursor: pointer;
}
.button:hover {
transform: translateY(-3px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.youtube {
background-color: #FF0000;
font-size: 14px;
padding: 8px 15px;
position: absolute;
bottom: 10px;
right: 10px;
}
.youtube:hover {
background-color: #cc0000;
}
hr {
border: 2px solid black;
border-radius: 50px;
width: 60%;
margin: 20px auto;
}
#blink {
font-weight: bold;
font-size: 20px;
color: #000;
animation: blink-animation 1s steps(2, start) infinite;
}
@keyframes blink-animation {
to {
visibility: hidden;
}
}
.message {
font-weight: bold;
font-size: 18px;
color: red;
}
#main {
margin-bottom: -5px;
}
h5 {
margin-top: -5px;
}
</style>
</head>
<body>
<div class="container">
<h4>ORESTEROSSO Host Auto flash ESP32-S2 GoldHEN</h4>
<div id="blink"><h5>New PS4 Jailbreak Fw 9.00</h5></div>
<div id="main" style="display: none;">
<br>
<label for="goldhenVersion">Seleziona Versione GoldHEN:</label>
<select id="goldhenVersion">
<option value="goldhen_2.4b18.2/manifest.json">GoldHEN v2.4b18.2 (NEW Pre-Release)</option>
<option value="goldhen_2.4b18/manifest.json">GoldHEN v2.4b18 (Pre-Release)</option>
<option value="psfree_2.4b18/manifest.json">GoldHEN v2.4b18 (Pre-Release) + PSFree</option>
<option value="goldhen_2.3/manifest.json">GoldHEN v2.3 (Latest)</option>
</select>
<br><br>
<script type="module" src="https://unpkg.com/[email protected]/dist/web/install-button.js?module"></script>
<esp-web-install-button id="installButton" manifest="goldhen_2.4b18.2/manifest.json" class="button">Connetti</esp-web-install-button>
<br><br>
</div>
<div id="notSupported" class="message" style="display: none;">Azz!, il tuo browser non funziona!</div>
<div id="not-allowed" class="message" style="display: none;">Azz!, non hai il permesso di usarlo su HTTP!</div>
<script>
if (navigator.serial) {
document.getElementById("notSupported").style.display = 'none';
document.getElementById("main").style.display = 'block';
} else {
document.getElementById("notSupported").style.display = 'block';
document.getElementById("main").style.display = 'none';
}
const installButton = document.getElementById("installButton");
const goldhenVersionSelector = document.getElementById("goldhenVersion");
goldhenVersionSelector.addEventListener("change", function() {
const selectedManifest = goldhenVersionSelector.value;
installButton.setAttribute("manifest", selectedManifest);
});
</script>
<br>
<h5>User SSID: PS4_WEB_AP   PASSWORD: 12345678</h5>
<hr>
<h2>BUON DIVERTIMENTO!!</h2>
<hr>
<a href="https://www.youtube.com/@oresterosso" class="button youtube" target="_blank">YouTube</a>
</div>
</body>
</html>