rverton / webanalyze

Port of Wappalyzer (uncovers technologies used on websites) to automate mass scanning.
MIT License
908 stars 134 forks source link

Piping the tool output to other tools #74

Closed TheeEclipse closed 9 months ago

TheeEclipse commented 9 months ago

The code at: case "stdout":

made it unable tp pipe the tool results to other go tools like anew or notify by project discovery because of the new line parameters. I changed that and can now pipe the results by outputing as csv but as new lines for each host. Example pipe: /root/go/bin/webanalyze -crawl 4 -silent -redirect -hosts /root/urls.txt | /root/go/bin/anew /root/TechDetect.txt

rverton commented 9 months ago

Hi, first of all, there is a lot of other stuff in this PR like changes to the go.mod with your repository. Second, I don't want to change the stdout method for now. If you need to pipe, please use the CSV or JSON output mode.

Thanks

TheeEclipse commented 9 months ago

Okay, I understand the stdout