Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/wfuzz/helpers/obj_dyn.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"history.scheme",
"history.host",
"history.content",
"history.raw_content" "history.is_path",
"history.raw_content",
"history.is_path",
"history.pstrip",
"history.cookies",
"history.headers",
Expand All @@ -35,7 +36,8 @@
"r.scheme",
"r.host",
"r.content",
"r.raw_content" "r.is_path",
"r.raw_content",
"r.is_path",
"r.pstrip",
"r.cookies.",
"r.headers.",
Expand Down
2 changes: 1 addition & 1 deletion src/wfuzz/plugins/payloads/burpitem.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from wfuzz.fuzzrequest import FuzzRequest
from wfuzz.plugin_api.base import BasePayload
from wfuzz.helpers.obj_dyn import rgetattr
import xml.etree.cElementTree as ET
import defusedxml.etree.cElementTree as ET
from base64 import b64decode


Expand Down
2 changes: 1 addition & 1 deletion src/wfuzz/plugins/scripts/screenshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def process(self, fuzzresult):
+ ".jpg",
)

subprocess.call(
subprocess.check_call(
[
"cutycapt",
"--url=%s" % pipes.quote(fuzzresult.url),
Expand Down