sql注入自动化.py:None (sql注入自动化.py) sql注入自动化.py:31: in <module> inject_urls = get_urls() sql注入自动化.py:21: in get_urls with open(fuzz_file, "r") as f: E TypeError: expected str, bytes or os.PathLike object, not NoneType
时间: 2024-02-29 19:55:13 浏览: 111
sql 注入 sql injection
这个错误的意思是在 `sql注入自动化.py` 文件的第 31 行,调用了 `get_urls()` 函数,但是函数内部的 `fuzz_file` 参数是 `None`,导致在第 21 行无法打开这个文件。你需要检查一下 `get_urls()` 函数的实现,看看为什么 `fuzz_file` 参数会是 `None`,或者在调用 `get_urls()` 函数时确认参数传递正确。
阅读全文