Un hacker ha lasciato cadere un file nella mia directory tmp che sta causando problemi. Niente di male tranne la creazione di GB di voci error_log perché il loro script non riesce. Tuttavia, il file che stanno utilizzando per eseguire non ha autorizzazioni e anche come ROOT non posso eliminare o rinominare questo file.
---------- 1 wwwusr wwwusr 1561 Jan 19 02:31 zzzzx.php
root@servername [/home/wwwusr/public_html/tmp]# rm zzzzx.php
rm: remove write-protected regular file './zzzzx.php'? y
rm: cannot remove './zzzzx.php': Operation not permitted
Ho anche provato a rimuovere tramite inode
root@servername [/home/wwwusr/public_html/tmp]# ls -il
...
1969900 ---------- 1 wwwusr wwwusr 1561 Jan 19 02:31 zzzzx.php
root@servername [/home/wwwusr/public_html/tmp]# find . -inum 1969900 -exec rm -i {} \;
rm: remove write-protected regular file './zzzzx.php'? y
rm: cannot remove './zzzzx.php': Operation not permitted
Come cancello questo file?