Skip to content

Commit ab48720

Browse files
committed
Modify some output
1 parent e6250d0 commit ab48720

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

start.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,14 +227,14 @@ def do_GET(self):
227227
if self.check_ua():
228228
self.exploit_matcher()
229229
else:
230-
self.send_error(400, explain='This PS4 is not on the right firmware (4.55)')
231-
print('>> Non-4.55 PS4 attempted to access exploits')
230+
self.send_error(400, explain='This PS4 is not on a supported firmware')
231+
print('>> Unsupported PS4 attempted to access exploits')
232232
elif re.match(r'^\/exploits\/.*\/', self.path):
233233
if self.check_ua():
234234
self.exploit()
235235
else:
236-
self.send_error(400, explain='This PS4 is not on the right firmware (4.55)')
237-
print('>> Non-4.55 PS4 attempted to access exploits')
236+
self.send_error(400, explain='This PS4 is not on a supported firmware')
237+
print('>> Unsupported PS4 attempted to access exploits')
238238
elif re.match(r'^\/static\/', self.path):
239239
self.static_request()
240240
else:

0 commit comments

Comments
 (0)