wfuzz command not found

In this troubleshooting guide we learn how to fix wfuzz command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

wfuzz: command not found

or when using sudo you get the following error message

sudo: wfuzz: command not found

Solutions to wfuzz: command not found

How To Fix wfuzz: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu wfuzz is provided by wfuzz package.

wfuzz is:

Wfuzz is a tool designed for bruteforcing Web Applications, it can be used for finding resources not linked directories, servlets, scripts, etc, bruteforce GET and POST parameters for checking different kind of injections (SQL, XSS, LDAP,etc), bruteforce Forms parameters (User/Password), Fuzzing, etc.

To fix this problem, we can install more using the command below.

sudo apt-get -y install wfuzz

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install wfuzz.

sudo apt -y install wfuzz

Or if you have aptitude installed you can use the following command.

sudo aptitude install wfuzz

Summary

In this tutorial we learn how to fix wfuzz command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.