7
Quote:
Any module that is using the function eval() of php will go to have security problems?
No... eval() like some other PHP functions is just
potentially dangerous.
If you are sure the code you give to eval() is safe, there should be no problem.
However if you try to
eval() external data, then people may be able to send malicious code to it
So: it is not always dangerous, but it
can become a
big hole if you do not take care of what you are doing.
skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)