I am working on a project. This project have a user interface that we wrote in PHP. In the management part, there is a form input where the user needs to enter a regular expression. As I know, I can not check if is a regex or not, because every string is a regex. What I want to do is check whether this input is proper or not? Which way I can do it?

link|improve this question

2  
What do you mean by "harmful"? Do you want to check whether or not the string is a valid regex, or whether or not it's a malicious regex? – Juhana Feb 4 at 8:00
1  
@Juhana second one – ibrahim Feb 4 at 8:04
Well, I'd like to see a sample of a harmful regex. – Juhana Feb 4 at 8:12
1  
@juhana: ^(a*a*)*$ is a classic. Try it on aaaaaaaaaaaaaab and watch your CPU burn. – Tim Pietzcker Feb 4 at 8:38
show 1 more comment
feedback

2 Answers

up vote 2 down vote accepted

It's very hard to do this by analysing the regex (short of actually parsing the regex itself.

I suggest you rather use conservative settings for pcre.backtrack-limit and pcre.recursion_limit.

link|improve this answer
feedback

It really depends on what you expect the program to do. If you are writing a regex tester, you simply need to have another field where they can input a string to check it against. Then use String.test(/regex/) or String.match(/regex/) to see if it is good for that string.

link|improve this answer
It is not a regex tester, I am taking a regex from user and send it to a program that is written with python. – ibrahim Feb 4 at 8:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.