proabiral / inception

A highly configurable Framework for easy automated web scanning
357 stars 66 forks source link

Feature Request: Headless(?) mode #37

Closed geeknik closed 4 years ago

geeknik commented 4 years ago

Hi, thanks for writing such a great tool. I was curious if it would be possible to have the ability to run inception in such a way as to only output the endpoint to a file without any other information?

I run inception like this now: inception -noProgressBar -silent -d $domains -provider $provider &> file.log

Maybe the "headless" mode could work like : inception -headless -d $domains -provider $provider -f file.log

Where file.log just contains one endpoint per line, no headers, no request body, no responsebody, no status code, etc:

http://host1/xss">
http://host2/xss5>'
http://host3/sqli>`

This would in turn allow for the ability to use the "headless" output for other pen-testing tools such as EyeWitness which expects a file with one url per line. Thank you.

geeknik commented 4 years ago

Unnecessary addition to this lean, mean, fighting machine. I can run a post-processor like so:

awk '/Endpoint/{print $NF}' logfile.txt > urls-only.txt