Fastest way to find if your WordPress has known vulnerabilities

There is a nice little tool known as WPScan (click read more to find how to install it).WPScan is already installed in security related Linux distributions like Kali. If you don’t want to install or virtualize them please follow instructions below:

  1. Install docker
    sudo curl -sSL https://get.docker.com/ | sh
  2. Add your account to the docker group
    sudo usermod -aG docker catlover666
  3. Run wpscan app in docker (during first time it will be downloaded so it takes some time)
    sudo docker run -it --rm wpscanteam/wpscan -u http://cutecats.com

And voilà! You can find all available options on project website.