How to deal with hacked website

13.03.2020
Complexity
5 min.
589

If a website isn't working or down, it may happen due to malicious scripts activity.

In order to solve the problem with malicious inserts and scripts, follow an instruction (from simple to more complex):

  1. Check website online https://sitecheck.sucuri.net/. This check may point out a problem.
  2. If an additional software (plugins / themes) was recently installed on a website, make sure that the source of this software is reliable.
  3. Make sure that all plugins and themes that are currently used on the site are not compromised and don't contain any critical vulnerabilities.
    • Make a list of all your plugins.
    • Go to Google search -> Tools -> search by last 3 months.
    • Search string "plugin_name critical vulnerability" It will help you define if there were critical vulnerabilities that may lead for many websites hacked.
      This quick check may lead you to a vulnerability in the plugin.
  4. Log into database phpmyadmin or to the website control panel. Check the number of users, especially with administrator privileges. If there are suspicious users, delete them.
  5. Remove all files from the website root catalog and drop database. Restore the website from a backup. Change passwords: to hosting private area, to the website's control panel, to the database (you will need to reconfigure the database connection in code).
  6. Install security plugin. For wordpress install iThemes Security plugin and configure it.
  7. Parse website access log for POST queries.
  8. Contact hosting company and ask for a help in cleaning up viruses and closing the vulnerabilities. This will most likely be a paid service.
  9. Check website for viruses and clean it.
    Use ai-bolit utility from revisium.
    Download ai-bolit and run the test. Example:
    php /root/aibolit/ai-bolit.php \
    --size=900K \
    --mode=2 \
    --path=/var/www/directory_before_website/your_website/ \
    --report=/var/www/directory_before_website/your_website/vir.html \
    Malicious scripts can also be located outside of the website's root catalog,so checking the directory above is a good idea. Change the --path key: --path = /var/www/directory_before_website/ You can open the report by the link: https://your_site.ru/vir.html Using the report, go through and clean the site of malicious inserts.
  10. Clean the database from malicious inserts.
  11. Manually check website for malicious code and vulnerabilities.
  12. After cleaning the site of viruses, configure antishell script.
    Antishell script checks website for any changes in code and sends email with the report if any changes have been done. Using antishell it is possible to know the time of an injection and what scripts were hacked. Having the conrete time, its possible to parse through access log and find the IP and queries to website.
    • Make a backup of a cleaned up website.
    • Download antishell.
    • Unzip the archive to the root of the site so that there is the following structure: /your_site/antishell/antishell.php
    • Configure antishell.php (configuration is intuitively clear).
    • Configure cron scheduler to run script every 5 minutes:
      php /var/www/directory_before_website/your_website/antishell/antishell.php
    • As soon as file on website is changed and cron executes antishell script, an email should be sent to the email.
Was this information helpful?
Yes   No
3 
By continuing to use this website you will be agreeing to the website Acceptable Use Policy and the Use of Cookies while using the website and our services. Please also read our Privacy Policy under which, to the extent stated, you consent to the processing of your personal data.