Skip to content

Commit 966b6c7

Browse files
Cleanup.
1 parent dc391a3 commit 966b6c7

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

data/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<html manifest="cache.manifest"><head>
3-
<title>ESP8266 PS4 9.00 FW Host v1.1 by GamerHack - ESP8266 port by Cellie</title>
3+
<title>PS4 9.00 FW Host v1.1 by GamerHack - ESP8266 port by Cellie</title>
44
<style>
55
html, body {
66
background-size: 100%;
@@ -63,7 +63,7 @@
6363
function DLProgress(e){Percent=(Math.round(e.loaded / e.total * 100));window.msgs.innerHTML="Installing Offline Cache: " + Percent + "%";}
6464
function DisplayCacheProgress(){setTimeout(function(){window.msgs.innerHTML="Cache Installed Successfully ✔";},1000);setTimeout(function(){window.msgs.innerHTML="Now Close And Re-Open Your Browser ...";},3000);}window.applicationCache.addEventListener("progress",DLProgress,false);window.applicationCache.oncached=function(e){DisplayCacheProgress();};window.applicationCache.onupdateready=function(e){DisplayCacheProgress();};
6565
</script>
66-
<h1 id="msgs">ESP8266 PS4 9.00 FW Host v1.1 by GamerHack - ESP8266 port by Cellie</h1>
66+
<h1 id="msgs">PS4 9.00 FW Host v1.1 by GamerHack - ESP8266 port by Cellie</h1>
6767
<hr>
6868
<br>
6969
<h1 style="font-size:20px;color:yellow;">Main Payloads</h1>

ps4_jb900_esp8266.ino

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ void setup() {
1111
Serial.begin(115200);
1212
delay(500);
1313

14-
Serial.println("\n\nESP8266 PS4 9.00 jailbreak");
14+
Serial.println("\n\n");
15+
16+
Serial.println(WIFISSID);
1517

1618
if (!SPIFFS.begin()) {
1719
Serial.println("SPIFFS Init failed. System halted");
@@ -35,14 +37,11 @@ void setup() {
3537
request->send(404);
3638
});
3739

38-
DefaultHeaders::Instance().addHeader("Access-Control-Allow-Origin", "*");
39-
4040
server.begin();
4141

4242
Serial.printf("\n\n1. Connect your PS4 to '%s' WiFi access point.\n", WIFISSID);
43-
Serial.print("2. Browse to '");
44-
Serial.print(WiFi.softAPIP().toString());
45-
Serial.println("' to jailbreak your PS4.");
43+
Serial.printf("2. Browse to '%s' to jailbreak your PS4.", WiFi.softAPIP().toString());
44+
Serial.println();
4645

4746
digitalWrite(LED_BUILTIN, LOW);
4847
}

0 commit comments

Comments
 (0)