sqlmap
sqlmap copied to clipboard
SqlMapAPI: Worker Support with Adapter Gunicorn
[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.
[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.
Let me know if there is any solution to this.