Reputation: 43
i need to find inline javascript with php regex. I can find external script, but not inline, can anybody help me?
Here is my pattern for external:
"/<script(.*?)src(.*?)>(.*?)<\/script\s*>/smi"
Any ideas?
Upvotes: 3
Views: 2968
Reputation: 31467
"/<script((?:(?!src=).)*?)>(.*?)<\/script>/smix"
(My first look-ahead regex ;))
Please note that you should not parse HTML with regexes, see:
https://stackoverflow.com/a/1732454/221213
Upvotes: 4
Reputation: 50832
You need to find all those cases where inline script can be used (i.e. all listener functions onClick, onBlur, onMouseDown, onMouseUp, on...)).
Upvotes: 2