SSTImap icon indicating copy to clipboard operation
SSTImap copied to clipboard

Added Concurrency to speed up the process.

Open xalgord opened this issue 10 months ago • 0 comments

Added a concurrency feature because it was taking a lot of time when supplying a list of URLs. Now we can adjust the maximum concurrent requests in the (core/checks.py) as shown below:

with concurrent.futures.ThreadPoolExecutor(max_workers=10) as executor:

The default is set to 10.

Also made some improvements to plugin.py.

Below is the proof of its working. (tested on Portswigger lab by placing the URL between Vulnweb URLs in a txt file.)

image image

xalgord avatar Apr 04 '24 08:04 xalgord