Skip to content

Commit

Permalink
path as is test
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed Mar 25, 2018
1 parent aa490fe commit 2dc40bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wfuzz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
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 hasattr(pycurl, "PATH_AS_IS"):
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"

except ImportError, e:
Expand Down

0 comments on commit 2dc40bd

Please sign in to comment.