Hi,
I'm on a shared server and it's configured to generate a 403 Error if content 
is attempted to be added from any external site. I guess that would be the norm.

In my custom 403 error page, I give various messages depending on what they are 
trying to do.

I'm *thinking* of redirecting anyone to the external content that they are 
trying to inject:

if (preg_match("/http:\/\/.+/i", $uri, $goto))
{
  header('Location: ' . $goto[0]);
}

Are there any problems if I do this?
Or would a blank page (silence is golden) be better?

These attempts will most certainly be automated, so most will never see the 
error.
My thinking is to slow or snag the automated systems.
Thanks, Bob E.



------------------------------------

Please remember to write your response BELOW the previous text. 

Community email addresses:
  Post message: php-list@yahoogroups.com
  Subscribe:    [EMAIL PROTECTED]
  Unsubscribe:  [EMAIL PROTECTED]
  List owner:   [EMAIL PROTECTED]

Shortcut URL to this page:
  http://groups.yahoo.com/group/php-listYahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/php-list/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/php-list/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/

Reply via email to