sqlmap icon indicating copy to clipboard operation
sqlmap copied to clipboard

SqlMapAPI: Worker Support with Adapter Gunicorn

Open techonair opened this issue 1 year ago • 1 comments

[Description]: We can spin up sqlmapapi with gunicorn. However, we cannot specify number of workers it can have from the arguments.

Although I tried to customize the code, by passing additional configuration in the class GunicornServer. However, there is a problem.

image

[Problem]: The workers run in different subprocesses and they don't share the tasks that are being run in each of them. Hence, spinning up 4 workers, was useless for me. I successfully created a task, however when I tried to start a scan with that taskid, it said invalid taskid. image image

Let me know if there is any solution to this.

techonair avatar Sep 19 '24 09:09 techonair