You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$entitytype = qa_post_text('entitytype'); // Q, U, T, C
$entityid = qa_post_text('entityid'); // bigint, e.g. 123456
$setfavorite = (int)qa_post_text('favorite'); // 0 or 1, so cast to int
// validate data
$entitytypes = ['Q', 'U', 'T', 'C'];
if(!in_array($entitytype, $entitytypes))
{
echo "QA_AJAX_RESPONSE\n0\n" . "Wrong entity type";
}
$entityid = preg_replace('/[^0-9]/', '', $entityid);
// or checking with ctype_digit($blobid)
In
\qa-include\ajax\favorite.php
the incoming values are not validated.It should be probably be validated like this:
Similar to #919
The text was updated successfully, but these errors were encountered: