Jump to content

how to i secure my imploded data?


Monkuar

Recommended Posts

$ids = implode(",", $_POST['m']);
$db->query('DELETE FROM friends WHERE friend_id IN ('.$db->escape($ids).') AND user_id = '.$pun_user['id'].'') or error('Unable to remove users from online list', __FILE__, __LINE__, $db->error());
redirect("s.php?section=Friends","Thanks, Friends removed ");

 

Is there any other way to secure it better?

 

I feel like im missing something, i just don't want to get hacked

 

also added

 

$ids = implode(",", $_POST['m']);

if ($ids < 1)

message("Incorrect Data");

Link to comment
Share on other sites

if $_POST['m'] contains an array of integers, the only sanitation you need to do is to intval the values to ensure they are integers. If you do that, there is no need to escape them.

 

Would this work?

$ids = implode(",", array_map('intval', $_POST['m']));

 

Link to comment
Share on other sites

if $_POST['m'] contains an array of integers, the only sanitation you need to do is to intval the values to ensure they are integers. If you do that, there is no need to escape them.

 

Would this work?

$ids = implode(",", array_map('intval', $_POST['m']));

 

 

Yes. I literally just posted that exact code but you already did. :P

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.