fcavallarin / htcap

htcap is a web application scanner able to crawl single page application (SPA) recursively by intercepting ajax calls and DOM changes.
GNU General Public License v2.0
610 stars 114 forks source link

After event(button click) triggered,page source updated,but program not analysis new page source #6

Closed go-spider closed 8 years ago

go-spider commented 8 years ago

As issue title,we cannot get the link of click_link.php?id=2 in below website. http://demo.aisec.cn/demo/aisec/

segment-srl commented 8 years ago

Hi, Htcap analyzes the DOM modifications only if they come from an ajax request, so in your case the behaviour is correct. Btw a bug exists because htcap fails to detect DOM changes if only one node is added. This bug is now fixed and I'm planning to add the ability to analyze any DOM change (regardless of ajax request) as an option.

go-spider commented 8 years ago

@segment-srl Look forward to new version which can analysis any DOM change.