+29
−0
Loading
`pipes` was deprecated in Python 3.11 (PEP 594) and removed in 3.13; src/wfuzz/plugins/scripts/screenshot.py imports it and fails to load on 3.13 with `No module named 'pipes'`. The module loader catches the ImportError and silently drops the plugin, so `wfuzz -e scripts` no longer lists `screenshot`. Replace `pipes.quote` with `shlex.quote` (the documented stdlib replacement; identical semantics for the single argument used here). Reported upstream at xmendez/wfuzz#380.