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):
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 :
You can’t perform that action at this time.
0 commit comments