|  Download sidebar_position: 3InstallReleaseYou can use one of this method to install the scanner downloading it from github or directly from console. Download from browserGo on GitHub page and press on Releases tab
or download from here Download from console
Run this command from console (scanner will be download on your current directory):
 wget https://raw.githubusercontent.com/marcocesarato/PHP-Antimalware-Scanner/master/dist/scanner --no-check-certificate
Run the scanner:
 php scanner ./dir-to-scan -l ...
<span class="optional">Optional</span> Install as bin command (Unix Bash)
 Run this command:
  wget https://raw.githubusercontent.com/marcocesarato/PHP-Antimalware-Scanner/master/dist/scanner --no-check-certificate -O /usr/bin/awscan.phar && \
 printf "#!/bin/bash\nphp /usr/bin/awscan.phar \$@" > /usr/bin/awscan && \
 chmod u+x,g+x /usr/bin/awscan.phar && \
 chmod u+x,g+x /usr/bin/awscan && \
 export PATH=$PATH":/usr/bin"
 Now you can run the scanner simply with this command:
 awscan ./dir-to-scan -l # ...
 SourceDownloadClick on GitHub page "Clone or download"
or download from here Composer
Install composer (if not installed)
Install the library using composer:
 composer require marcocesarato/amwscan
Go on `vendor/marcocesarato/amwscan/` to have the source
 Git
Install git
Copy the command and link from below in your terminal:
 git clone https://github.com/marcocesarato/PHP-Antimalware-Scanner
Change directories to the new `~/PHP-Antimalware-Scanner` directory:
 cd ~/PHP-Antimalware-Scanner/
To ensure that your master branch is up-to-date, use the pull command:
 git pull https://github.com/marcocesarato/PHP-Antimalware-Scanner
 Docker
Download the source
Build command
 docker build --tag amwscan-docker .
Run command
 docker run -it --rm amwscan-docker bash
 |