python使用flask进行SQL中转注入报错
浏览器访问:http://192.168.43.180:18888/?payload=test
报错500
终端报错
[Previous line repeated 474 more times]
RecursionError: maximum recursion depth exceeded
解决办法:
from gevent import monkey
monkey.patch_all(ssl=False)
浏览器访问:http://192.168.43.180:18888/?payload=test
报错500
终端报错
[Previous line repeated 474 more times]
RecursionError: maximum recursion depth exceeded
解决办法:
from gevent import monkey
monkey.patch_all(ssl=False)