Is it possible for a PHP script to be inside a GIF file? I found one when I opened a .gif file in notepad++.
feedback
|
|
Actually, there are a couple of things that are possible (and commonly used for things like hit counters.) Consider this:
myPicture.php might look like this:
So, the output of your PHP script is not ASCII text (or HTML), it is the binary of a .png file. Thus the header() is set to indicate this, and the imagepng() functions shown actually output the raw PNG image data. (example lifted from here). Another option, which others have mentioned involves a "normal" image tag:
Notice this ends in ".png". In this case, the web server would have to be configured so that it parsed not only .php files as executable PHP code, but also .png files. Your code would look the same, but it would be wrapped in "myPicture.png" rather than ".php". | |||
|
feedback
|
|
It was probably a server-side PHP script with the .gif extention that served a dynamic gif image to clients. The server is just configured to execute .gif files as PHP scripts (or, more likely, just that specific .gif file). This is fairly common. You'll find it in websites that have dynamic images. | |||
|
feedback
|
|
technically yes. one example of this use might be a server wanting to hide the true source of an image and maybe do some throttling (like those image shack -- this image has been viewed too many times today messages) The situation would require apache to make php handle the gif file extension. the php inside the file would then do whatever checks were desired, and then send the headers for image/gif mime type, file size, etc, and then output the file with file_get_contents (or similar method) | |||
|
feedback
|
|
As a SysAdmin when I find PHP scripts with image extension (.gif, .jpg, .png) it usually means that somebody broke into a PHP Application and is hiding malicious code inside that file. Their code can be executed by calling the PHP CLI or just by including the file from any other PHP script. Remember that include and require don't really care about the file's name. The latter is the most common case I've seen. You would need to check the code itself and see what it does. Don't run it, read it first. | |||
|
feedback
|
|
I've seen this done (although usually with the .jpg extension) for serving images from a database... Assuming your using apache, you just have to tell apache to process that specific file as if it were php. | |||
|
feedback
|
|
Posting the PHP code would be helpful in determining the intent of the script. While, as most of the commenters pointed out, there might be a bening explanation to it I still would not rule out less innocent shenanigans going on. The benign case: the script is indeed meant to output a GIF image and you got the code instead because of a server misconfiguration. This could happen if:
I would look at the type of functions used in the code. This being supposedly a GIF file I would expect the script to end with an The evil case: somebody upoloaded a bunch of hacker stuff masqueraded as a GIF, expecting later to launch it using any method that can give him access to the command line: an unprotected | |||
|
feedback
|
|
Finding php in a gif file could indicate someone is trying to attack you're server. This is an interesting read about secure file upload and php. | |||
|
feedback
|
|
Most image formats have segments where the author can store some comments or other information that are not the actual image data. If you store some PHP code in such a comment segment, upload it to a server as | |||
|
feedback
|
|
You can convert to "bmp" format and back - to clean up scripts inside meta data of your uploaded images. Bmp does not have metadata but do have alpha transparency and 100% quality. In PHP you can use imagick class:
Most image hosting websites allow scripts inclusion in images: eg: flickr, livejournal, or convert image to some bad format like jpeg - eg: google, etc. This script fixes this issue. Your comments are welcome! :) Cheers, Matt. | ||||
|
feedback
|
|
The file extension doesn't need to be the same as the file contents, so yes it's possible to save a text file or PHP file with the .gif extension. It won't (usually?) show as an image in a browser or other application, and nor is it likely to run as a PHP file on a web server unless the server has specifically been configured this way. The benefits of doing this aren't clear to me unless it's used as a sneaky way to try and execute PHP code via an image upload form, where the server has been configured to execute .gif files as scripts (i.e. any extension goes). | |||||||||||||
feedback
|
|
You could always use mod rewrite to change the file extension if thats what your getting at? | |||
|
feedback
|