sensepost / gowitness

🔍 gowitness - a golang, web screenshot utility using Chrome Headless
GNU General Public License v3.0
2.82k stars 323 forks source link

In standalone mode, can multiple instances of screenshotting be done in parallel? #214

Closed ismyhc closed 5 months ago

ismyhc commented 5 months ago

Id like to use gowitness as a standalone library.

Can I take screenshots of multiple url's in parallel? Or would I need to do it sequentially?

leonjza commented 5 months ago

For v3 I plan on restructuring the project layout to be more friendly to use as a library. That said you can take screenshots in parallel using goroutines. An example of how its done in gowitness today is here.

ismyhc commented 5 months ago

For v3 I plan on restructuring the project layout to be more friendly to use as a library. That said you can take screenshots in parallel using goroutines. An example of how its done in gowitness today is here.

Awesome. Will take a look. 🙏