Fix input validation

This commit is contained in:
Brahim Hadriche 2023-03-07 13:50:02 -05:00
parent a5cc66e060
commit 0b17f68eba
1 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ module Invidious::Routes::API::V1::Authenticated
end
id = env.params.url["id"]
if !id.match(/[a-zA-Z0-9_-]{11}/)
if !id.match(/^[a-zA-Z0-9_-]{11}$/)
return error_json(400, "Invalid video id.")
end
@ -98,7 +98,7 @@ module Invidious::Routes::API::V1::Authenticated
end
id = env.params.url["id"]
if !id.match(/[a-zA-Z0-9_-]{11}/)
if !id.match(/^[a-zA-Z0-9_-]{11}$/)
return error_json(400, "Invalid video id.")
end