# Check which wfuzz encoders are available
wfuzz -e encoders
# To use an encoder, add a comma to the payload and specify the encoder name
wfuzz -z file,path/to/payload.txt,base64 http://hackig-example.com/api/v2/FUZZ
# Using multiple encoders. Each payload will be processed in separated requests.
wfuzz -z list,a,base64-md5-none
# this results in three payloads: one encoded in base64, another in md5 and last with none.
# Each payload will be processed by multiple encoders.
wfuzz -z file,payload1-payload2,base64@md5@random_upper -u http://hackig-example.com/api/v2/FUZZ