|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2004-07-14 15:55 UTC] fdsoft at pganet dot com
Description: ------------ Trying to vote on a bug resulted in the following page: query INSERT INTO bugdb_votes (bug,ip,score,reproduced,tried,sameos,samever) VALUES(29149,,-2,1,1,0,0); failed: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '-2,1,1,0,0)' at line 1 I suspect the website code is trying to use $_SERVER["HTTP_X_FORWARDED_FOR"] which is set to the string "unknown" in my case, a common configuration option for the Squid web proxy. $_SERVER["REMOTE_ADDR"] would contain the correct IP address of my proxy. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Sun Jun 14 16:00:02 2026 UTC |
I'll commit the following patch later today if there are no problems with the suggested patch. It's based on a patch from phpweb. --jm cvs diff -u include/functions.inc vote.php Index: include/functions.inc =================================================================== RCS file: /repository/php-bugs-web/include/functions.inc,v retrieving revision 1.127 diff -u -r1.127 functions.inc --- include/functions.inc 13 Jul 2004 21:51:25 -0000 1.127 +++ include/functions.inc 4 Aug 2004 12:04:10 -0000 @@ -578,4 +578,35 @@ return array(" AND MATCH (bugdb.email,sdesc,ldesc) AGAINST ('" . addslashes($search) . "')", $ignored); } +/* Figure out which IP the user is coming from avoiding RFC 1918 space */ +function get_real_ip () { + $ip = false; + + /** + * User is behind a proxy and check that we discard RFC1918 IP + * addresses if they are behind a proxy then only figure out which + * IP belongs to the user. Might not need any more hacking if + * there is a squid reverse proxy infront of apache. + */ + if (!empty($HTTP_X_FORWARDED_FOR)) { + $ips = explode (", ", $HTTP_X_FORWARDED_FOR); + if ($ip) { array_unshift($ips, $ip); $ip = false; } + for ($i = 0; $i < count($ips); $i++) { + /** + * Skip RFC 1918 IP's 10.0.0.0/8, 172.16.0.0/12 and + * 192.168.0.0/16 -- jim kill me later with my regexp pattern + * below. + */ + if (!eregi ("^(10|172\.16|192\.168)\.", $ips[$i])) { + $ip = $ips[$i]; + break; + } + } + } + + /** + * Return with the found IP or the remote address + */ + return ($ip ? $ip : $REMOTE_ADDR); +} ?> Index: vote.php =================================================================== RCS file: /repository/php-bugs-web/vote.php,v retrieving revision 1.9 diff -u -r1.9 vote.php --- vote.php 23 Jan 2004 03:05:28 -0000 1.9 +++ vote.php 4 Aug 2004 12:04:10 -0000 @@ -21,7 +21,7 @@ or die("Unable to connect to SQL server."); @mysql_select_db("php3"); -$ip = ip2long($HTTP_X_FORWARDED_FOR ? $HTTP_X_FORWARDED_FOR : $REMOTE_ADDR); +$ip = ip2long(get_real_ip()); // TODO: check if ip address has been banned. hopefully this will // never need to be implemented.> if (ip2long($ips[$i]) != -1) { Remember, as of PHP 5.0.0 ip2long() returns FALSE instead of -1.