Re: [PHP] Source Code Analysis

2009-06-07 Thread Dee Ayy
On Wed, Oct 22, 2008 at 4:30 PM, Dee Ayy wrote: > Thanks regarding the error_reporting.  I may have to go this route for > this specific issue. > ... > ...  And not only for this specific issue. I have another need for a SCA tool. Is there an existing tool similar to a broken link checker, but ins

Re: [PHP] Source Code Analysis

2008-10-22 Thread Dee Ayy
Thanks regarding the error_reporting. I may have to go this route for this specific issue. I was hoping a source code analyzer would report the same type problem, perhaps much faster than Robert's method, and without having a human attempt to test all functionality of the various PHP apps on old

Re: [PHP] Source Code Analysis

2008-10-22 Thread Ashley Sheridan
On Wed, 2008-10-22 at 11:16 -0700, Jim Lucas wrote: > Dee Ayy wrote: > > Is there a tool that can analyze PHP source code and detect if the > > code is relying on register_globals still being on? Perhaps detecting > > if a variable has not been initialized within the code? > > > > These are my sp

Re: [PHP] Source Code Analysis

2008-10-22 Thread Greg Bowser
>Perhaps detecting >if a variable has not been initialized within the code This is an E_NOTICE level error. [EMAIL PROTECTED] ~ $ php test.php Notice: Undefined variable: foo in /home/mario/test.php on line 3

Re: [PHP] Source Code Analysis

2008-10-22 Thread Jim Lucas
Dee Ayy wrote: > Is there a tool that can analyze PHP source code and detect if the > code is relying on register_globals still being on? Perhaps detecting > if a variable has not been initialized within the code? > > These are my specific needs, but I'm also interested in general SCA > tools and

Re: [PHP] Source Code Analysis

2008-10-22 Thread Nathan Rixham
Robert Cummings wrote: On Wed, 2008-10-22 at 12:24 -0500, Dee Ayy wrote: Is there a tool that can analyze PHP source code and detect if the code is relying on register_globals still being on? Perhaps detecting if a variable has not been initialized within the code? These are my specific needs,

Re: [PHP] Source Code Analysis

2008-10-22 Thread Robert Cummings
On Wed, 2008-10-22 at 12:24 -0500, Dee Ayy wrote: > Is there a tool that can analyze PHP source code and detect if the > code is relying on register_globals still being on? Perhaps detecting > if a variable has not been initialized within the code? > > These are my specific needs, but I'm also in