[PHP] Re: how can this be? GET instead of POST - db error

2002-07-21 Thread Chris Earle

The person could have been trying to break into the DB.

Andy [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Hi everybody,

 I am just trying to find out how some db errors happened during a user was
 browsing my web app.

 This is out of the Apache log:

 GET /subapp_profiles/act_upload_image.php HTTP/1.1 200 160
 POST /subapp_profiles/act_upload_image.php HTTP/1.1 302 5

 I do not have a clue where this GET request could come from. This has
caused
 a empty sql statement and therefore a db error. How can could this be
 achieved? By clicking back in the browser window? I dont think so since
the
 same user was on another site before.

 Has anybody a idea on that?

 Andy





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: how can this be? GET instead of POST - db error

2002-07-13 Thread Dyon Beaart

I dont know what causus it, but I have a kind of a solution for your
problem...

you probably have something like $_GET[myvar] in your query, try to do
something like this :
$_VARS=_$REQUEST_METHOD;
$_VARS=$$_VARS;

And then instead of using the _GET, you use the _VARS...


Andy [EMAIL PROTECTED] schreef in bericht
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Hi everybody,

 I am just trying to find out how some db errors happened during a user was
 browsing my web app.

 This is out of the Apache log:

 GET /subapp_profiles/act_upload_image.php HTTP/1.1 200 160
 POST /subapp_profiles/act_upload_image.php HTTP/1.1 302 5

 I do not have a clue where this GET request could come from. This has
caused
 a empty sql statement and therefore a db error. How can could this be
 achieved? By clicking back in the browser window? I dont think so since
the
 same user was on another site before.

 Has anybody a idea on that?

 Andy





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: how can this be? GET instead of POST - db error

2002-07-13 Thread Richard Lynch

Hi everybody,

I am just trying to find out how some db errors happened during a user was
browsing my web app.

This is out of the Apache log:

GET /subapp_profiles/act_upload_image.php HTTP/1.1 200 160
POST /subapp_profiles/act_upload_image.php HTTP/1.1 302 5

I do not have a clue where this GET request could come from. This has caused
a empty sql statement and therefore a db error. How can could this be
achieved? By clicking back in the browser window? I dont think so since the
same user was on another site before.

Has anybody a idea on that?

They could have just hit Reload on that page.

-- 
Like Music?  http://l-i-e.com/artists.htm


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php