Você pode simplesmente usar grep
para o mesmo
grep -RP "http:\/\/ahtiagge.ru\/count27\.php" /var/www/vhosts/
ou apenas registre os arquivos * .php apenas com a ajuda de find
find /var/www/vhosts/ -name "*.php" -print | xargs grep -P "http:\/\/ahtiagge.ru\/count27\.php"