We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/lib/controller/bruter.py文件中的worker函数存在这一句代码:payloads.current_payload = tasks.all_task.get() ,但是payloads是全局变量,这会导致多个协程在调用work函数发送request请求时的url变量被覆盖,导致很多字典中的路径并没有被检查。 修改方式: 改为局部变量就好 原先的 payloads.current_payload = tasks.all_task.get() 修改后 current_payload=tasks.all_task.get()
同时修改request请求中的url 原先的 response = requests.request(conf.request_method, payloads.current_payload, headers=headers, timeout=conf.request_timeout, verify=False, allow_redirects=conf.redirection_302, proxies=conf.proxy_server) 修改后 response = requests.request(conf.request_method, current_payload, headers=headers, timeout=conf.request_timeout, verify=False, allow_redirects=conf.redirection_302, proxies=conf.proxy_server)
The text was updated successfully, but these errors were encountered:
这个问题在设置conf.request_delay时会大幅度出现,没设置这个参数影响不大
Sorry, something went wrong.
No branches or pull requests
/lib/controller/bruter.py文件中的worker函数存在这一句代码:payloads.current_payload = tasks.all_task.get() ,但是payloads是全局变量,这会导致多个协程在调用work函数发送request请求时的url变量被覆盖,导致很多字典中的路径并没有被检查。
修改方式:
改为局部变量就好
原先的 payloads.current_payload = tasks.all_task.get()
修改后 current_payload=tasks.all_task.get()
同时修改request请求中的url
原先的 response = requests.request(conf.request_method, payloads.current_payload, headers=headers, timeout=conf.request_timeout, verify=False, allow_redirects=conf.redirection_302, proxies=conf.proxy_server)
修改后 response = requests.request(conf.request_method, current_payload, headers=headers, timeout=conf.request_timeout, verify=False, allow_redirects=conf.redirection_302, proxies=conf.proxy_server)
The text was updated successfully, but these errors were encountered: