Skip to content

Commit

Permalink
CONNECT_TO warning
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed Mar 9, 2019
1 parent 37ac302 commit aa940a0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/wfuzz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
if "openssl".lower() not in pycurl.version.lower():
print("\nWarning: Pycurl is not compiled against Openssl. Wfuzz might not work correctly when fuzzing SSL sites. Check Wfuzz's documentation for more information.\n")

if not hasattr(pycurl, "CONNECT_TO"):
print("\nWarning: Pycurl and/or libcurl version is old. CONNECT_TO option is missing. Wfuzz --ip option will not be available.\n")

if not hasattr(pycurl, "PATH_AS_IS"):
print("\nWarning: Pycurl and/or libcurl version is old. PATH_AS_IS option is missing. Wfuzz might not correctly fuzz URLS with '..'.\n")

Expand Down

0 comments on commit aa940a0

Please sign in to comment.