Htcap is a web application scanner able to crawl single page application (SPA) in a recursive manner by intercepting xhr calls and DOM changes.
Htcap is not just another vulnerability scanner since it's focused mainly on the crawling process and uses external tools to discover vulnerabilities. It's designed to be a tool for both manual and automated penetration test of modern web applications.
More infos at htcap.org.
- Use Chrome + Puppeteer instead of PhantomJS as crawl engine
- Add option to restart/complete a crawl
- Rewrite the injected code of the javascript crawler to take into account the javascript event loop (ie. javascript is async, stop using
setTimeout
calls) and make use of the DOM mutation event handler - Drop the flimsy supported feature "custom user script" in the crawler
- Add unittest for the crawler part
- Mainly this fixes issues (and other): #9, #11, #16, #19, #22, #23, #28 and #31
- Python 2.7
- NodeJS v8.9.4 (for the crawler)
- Sqlmap (for sqlmap scanner module)
- Arachni (for arachni scanner module)
git clone git@github.com:delvelabs/htcap.git htcap
cd htcap
pip install -r requirements.txt
cd core/crawl/probe/
npm install
Try python htcap.py -h
for help
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or(at your option) any later version.