Jump to content

PHP Image Checking??


olsrey

Recommended Posts

Hey everyone,
Ive got a very big problem with images in html, this is mainly because of the jpg exploit.

I need to know if there is a way of checking to see if an image really is an image or not.

My site has just got hacked due to this as the user was stealing session id's etc and it was down to the use of code inside an image.

So if anyone can help me with this id be very grateful and so will my friend as he got hacked once down to the same thing a while back but he never found out how to stop it.

Oliver
Link to comment
https://forums.phpfreaks.com/topic/23381-php-image-checking/
Share on other sites

right this is how i convert a bbcode image into html

[code]$bericht = preg_replace("!\\[img\\](.*)\\[/img\\]!Usi","<img src=\"\\1\" border=0>",$bericht);[/code]

and this is inside a function which i call when ever i need it soo for example for user profiles i do this

[code]$content = htmlentities(nl2br($profile['message']));
$content = maakOp($content);[/code]

maakOp is the bbcode function.

i need someway of the function checking the image before actually displaying it and if its a "hacker" image id like it to display an image on my server.

if you need anymore info please so ask
Link to comment
https://forums.phpfreaks.com/topic/23381-php-image-checking/#findComment-106030
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.