On Fri, 2005-03-11 at 16:37, Daniel Convissor wrote:
> Interesting.  I'm wondering about the security implications of this.  
> This makes it very easy to use PHP as a means to propogate all sorts of 
> nasty things.  Well, people could even do that today in one script by 
> setting a variable to a base64 encoded string then decoding it.  None the 
> less, putting binary data in PHP scripts gives me pause.

There is no issue here. You can throw binary data at the end of a PHP
script as it is now:

<?php 

   /* stuff */
   exit;
?>
<binary data here>


 -- the halt token only makes it so PHP doesn't waste time processing
something that doesn't need to be processed. 

John

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to