I have this command chain:
find . -print | grep php | xargs grep 'eval' -sl | xargs wc -l | grep ' [1-2][0-9] '
This provide me this output:
14 ./includes/js/calendar/lang/vgju.php
18 ./includes/phpInputFilter/default.php
14 ./includes/Archive/eula.php
18 ./media/system/js/json.php
This files are infected php files and I would like to remove it with my chain. How can I do it?