Giter Site home page Giter Site logo

Comments (8)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 13, 2024
I have tracked it down to 
http://us3.php.net/manual/en/regexp.reference.subpatterns.php: "The maximum 
number of captured substrings is 99, and the maximum number of all subpatterns, 
both capturing and non-capturing, is 200."  So the following string is the 
smallest that will trigger a crash/timeout:

$test    = str_repeat('0',202);
$sql  = "'$test'";

And it's caused specifically by the tokenizer, as the following stand-alone 
code demonstrates (it will hang if you run it):

$test    = str_repeat('0',201);
$sql  = "'$test'";
$sql = str_replace(array('\\\'','\\"',"\r\n","\n","()"),array("''",'""'," "," 
"," "), $sql);
$regex=<<<EOREGEX
/(`(?:[^`]|``)`|[@A-Za-z0-9_.`-]+(?:\(\s*\)){0,1})
|(\+|-|\*|\/|!=|>=|<=|<>|>|<|&&|\|\||=|\^)
|(\(.*?\))   # Match FUNCTION(...) OR BAREWORDS
|('(?:[^']|'')*'+)
|("(?:[^"]|"")*"+)
|([^ ,]+)
/ix
EOREGEX
;
$tokens = preg_split($regex, $sql,-1, PREG_SPLIT_NO_EMPTY | 
PREG_SPLIT_DELIM_CAPTURE);

Original comment by [email protected] on 20 Oct 2011 at 3:35

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 13, 2024
Whoops that should read:

$test    = str_repeat('0',202);

In the second stand-alone example.

Original comment by [email protected] on 20 Oct 2011 at 3:35

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 13, 2024
Here's a simple fix.  In the $regex in the parser (~line 168) in split_sql, 
change the ' and " parts to have a + after the character classes:

|('(?:[^']+|'')*'+)
|("(?:[^"]+|"")*"+)
          ^ note the added '+' on both lines

This will cause everything inside the string and between '' and "" delimiters 
to be immediately combined into a single match instead of each separate matches 
thereby quickly reaching the 200 limit.  Of course this will still break if you 
have more than 200 context switches between data, '', data, '', etc. but 
hopefully that should happen very, very, very rarely :-)

Hope this helps!

Original comment by [email protected] on 20 Oct 2011 at 3:41

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 13, 2024
I can confirm that this exists and comment #3 
(http://code.google.com/p/php-sql-parser/issues/detail?id=11#c3) does indeed 
fix the issue.

Original comment by [email protected] on 13 Jan 2012 at 2:28

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 13, 2024
solution (comment #3) added to current version on 
http://www.phosco.info/php-sql-parser_current.zip

Original comment by [email protected] on 2 Feb 2012 at 8:25

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 13, 2024
@[email protected]

Not added to current version- Current version has 

|('(?:[^']|'')*'+)
|("(?:[^"]|"a")*"+)

Whereas solution has 

|('(?:[^']+|'')*'+)
|("(?:[^"]+|"")*"+)

Original comment by [email protected] on 5 Mar 2012 at 10:29

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 13, 2024
I have added a test with the code provided by jonny and it works. I have 
changed the regular expression, so perhaps it works without your changes. Can 
you provide a test code, which doesn't work?

Try the repository on https://www.phosco.info/publicsvn/php-sql-parser
I have no commit rights on the original codebase, so I have to provide the 
changes on my own SVN.

Original comment by [email protected] on 5 Mar 2012 at 12:08

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 13, 2024
Accepted fixed codebase.

Original comment by [email protected] on 12 Mar 2012 at 9:54

  • Changed state: Fixed

from php-sql-parser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.