Este plugin no se ha probado con las últimas 3 versiones mayores de WordPress. Puede que ya no tenga soporte ni lo mantenga nadie, o puede que tenga problemas de compatibilidad cuando se usa con las versiones más recientes de WordPress.

Upload Scanner

Descripción

Scan uploaded files with ClamAV or run system commands against uploaded files.  This allows you to integrate third party malware scanners.

This plugin requires either ClamAV or another third-party scanner to be installed.  This plugin will pass uploaded files to the scanner and take appropriate actions based ont he results, but it is not, itself, a malware scanner.

If you have a dedicated server, you can install php-clamav for performance and convenience.

Banner image from Eric Martinenz

Capturas

  • Options screen.
  • Log viewer.
  • Sample e-mail report.

Instalación

Automatic installation

  1. Log into your WordPress admin
  2. Click Plugins
  3. Click Add New
  4. Search for Upload Scaner
  5. Click Install Now under «Upload Scanner»
  6. Activate the plugin

Manual installation:

  1. Download the plugin
  2. Extract the contents of the zip file
  3. Upload the contents of the zip file to the wp-content/plugins/ folder of your WordPress installation
  4. Then activate the Plugin from Plugins page.

FAQ

It says ClamAV isn’t installed?

You’ll need to install ClamAV and php-clamav. You don’t actually need ClamAV to use this plugin, though.  You can use the system command to run another scanner that can accept input on the command line.

For example, you could scan with avira like this:

 avscan $UPLOAD_SCANNER_ORIG_TEMPNAME
It says exec is disabled

Your server admin has probably disabled the «exec» function.  You’ll want to talk to your server admin before moving forward with this plugin.  They may be able to help, or they may have other security measures in place that mean you don’t need this plugin.

Why doesn’t this plugin offer a «delete file» option?

PHP automatically deletes the files for you if they’re not handled.

«The file will be deleted from the temporary directory at the end of the request if it has not been moved away or renamed.»

http://www.php.net/manual/en/features.file-upload.post-method.php

Are there any security issues running shell commands?

The only user input that is passed to the shell command is the original file name chosen by the user, and this is passed through escapeshellarg() to sanitize it.  Otherwise, the only command that’s run is chosen by you.  It’s left to your server admin (or you) to determine that it’s safe for you to issue commands. This plugin should prevent attacker input from making it into the command. Let me know if you see any problems.

Is this compatible with Multisite?

I haven’t tested this with Multisite yet.  If you have input, let me know.

Reseñas

14 de septiembre de 2016
It may not have been updated in 4 years, but it's such a simple plugin that there's really no reason to... and it still works great with your server's ClamAV install.
Leer la 1 reseña

Colaboradores y desarrolladores

«Upload Scanner» es un software de código abierto. Las siguientes personas han colaborado con este plugin.

Colaboradores

Traduce «Upload Scanner» a tu idioma.

¿Interesado en el desarrollo?

Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.

Registro de cambios

1.2

  • Internationalized strings
  • Marked compatibility with WordPress 3.4

1.1

  • Added logging

1.0

  • Released