CodeIgniter Forums
how to remove malware in code igniter - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6)
+--- Forum: Issues (https://forum.codeigniter.com/forumdisplay.php?fid=19)
+--- Thread: how to remove malware in code igniter (/showthread.php?tid=68699)



how to remove malware in code igniter - biju - 08-14-2017

how to remove malware in code igniter


RE: how to remove malware in code igniter - Paradinight - 08-14-2017

(08-14-2017, 09:57 AM)biju Wrote: how to remove malware in code igniter

Huh Huh Huh

More infos? code igniter is not a virus scanner.


RE: how to remove malware in code igniter - Diederik - 08-14-2017

Restore files from backup is the easiest, presuming you made them.

Manualy removing mallware is a true pain, you can very easily miss something. Most automated infection inject some malicious code into php files in the hope they get included in the website. You should scan all php files for functions like eval and base64_decode.
A good place to start is to make a copy of all the website files and sort them by changed date. Most recently changed files probobly are infected, you should have a look and try find similar code in other files as the changed date of a file can be spoofed.

Good luck!