File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -227,14 +227,14 @@ def do_GET(self):
227
227
if self .check_ua ():
228
228
self .exploit_matcher ()
229
229
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' )
232
232
elif re .match (r'^\/exploits\/.*\/' , self .path ):
233
233
if self .check_ua ():
234
234
self .exploit ()
235
235
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' )
238
238
elif re .match (r'^\/static\/' , self .path ):
239
239
self .static_request ()
240
240
else :
You can’t perform that action at this time.
0 commit comments