This time i show YAWAST (Antecedent Web Application Security Toolkit) on Debian 8.6. YAWAST performs basic checks for penetration testers and security auditors.
System preparation
# update and upgrade system $ apt-get update && apt-get upgrade # install needed packages $ apt-get install -y build-essential libssl-dev # download ruby archive $ wget https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.1.tar.gz # unzip archive $ tar -zxvf ruby-2.3.1.tar.gz # change directory $ cd ruby-2.3.1/ # run configuration $ ./configure # run compilation $ make # run intsallation $ make install # check version $ ruby --version
Install YAWAST
# install YAWAST via gem $ gem install yawast # show help $ yawast --help
Usage
# simple scan $ yawast scan [URL] # detect CMS $ yawast cms [URL] # show ssl information $ yawast ssl [URL]
There is more! Read the documentation on GitHub adamcaudill/yawast.