Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dynamic Analysis of PHP Web Applications to identify work flow deviations

I am trying to learn on Web Application security. I worked with tools that do static Analysis like RIPS, Pixy. Also did profiling of web-applications using xdebug and kcachegrind.
Now I am trying to research more on Dynamic Analysis. I would like to identify work flow deviations from call graphs generated during profiling.
Is it possible to do such an analysis??
If so can you suggest me any references or tools that achieve this?

like image 930
user1168647 Avatar asked Feb 14 '12 10:02

user1168647


1 Answers

There are some projects/papers addressing this need:

  1. PHP Vulnerability Hunter
  2. PHP Analyzer
  3. Static and Dynamic Analysis for PHP Security (pdf)

The third item is an academic presentation from 2006, so it may be a little out of date while the first resource seems the most mature DA testing tool I've seen. You might also look into the Monte Carlo Method as a way of throwing arbitrary input at a system to test its robustness, particular if you deal with numerical or statistical data.

like image 116
Duane Gran Avatar answered Nov 04 '22 06:11

Duane Gran