Here you will find some hints and tips on how to stop hackers from compromising your store.
In order to prevent people from trying to hack your admin panel you should rename your admin folder and update your configure.php file.
define('DIR_WS_ADMIN', '/admin/');
define('DIR_FS_ADMIN', '/home/mystore.com/www/public/admin/');
The most common cause of hacks is code inserted into unprotected files and folders.
However, if you are using suPHP on your server (ask your host if you are not sure or run this suPHP check) then …
These commands can be run from the linux command line or from an executable file via cronjob.
Here is the command run to set all directories:
find . -type d -exec chmod 755 {} ;
Here is the command run to set all php files:
find . -type f -name “*.php” | xargs chmod 644
This infobox allows unscrupulous users to use your server to send emails out to people.
In order to do this you will need to install SiteMonitor.
Make sure that you installed all of the security updates for osCMax. You can get updates about osCMax from Michael_S's blog
There are a number of decent freeware or open source anti-virus and anti-malware packages available for download.
The following files must be removed from your site's administrative panel folder:
/admin/file_manager.php
/admin/define_language.php
Removing these files will close a security vulnerability.
Okay the worst has happened … Here is what you need to do: (Source: Michael_S, osCmax forums)