web-dev-qa-db-ja.com

感染したファイルとエラーに対して次に何をすべきですか?

Clamavを使用してコンピューターのウイルスをスキャンしました:Sudo clamscan -r --bell -i /。次の結果を受け取りました。

LibClamAV Warning: cli_scanxz: decompress file size exceeds limits - only scanning 27262976 bytes

LibClamAV Warning: cli_scanxz: decompress file size exceeds limits - only scanning 27262976 bytes

LibClamAV Warning: cli_scanxz: decompress file size exceeds limits - only scanning 27262976 bytes

/home/beck/Documents/from flash/unsorted/autorun.inf: INF.Autorun.Gen FOUND

LibClamAV Warning: fmap_readpage: pread fail: asked for 4077 bytes @ offset 19, got 0

WARNING: Can't open file /sys/module/ipt_REJECT/uevent: Permission denied

LibClamAV Warning: fmap_readpage: pread fail: asked for 4077 bytes @ offset 19, got 0

LibClamAV Warning: fmap_readpage: pread fail: asked for 4093 bytes @ offset 3, got 0

LibClamAV Warning: fmap_readpage: pread fail: asked for 4094 bytes @ offset 2, got 0

WARNING: Can't open file /sys/module/nf_conntrack_tftp/uevent: Permission denied

LibClamAV Warning: fmap_readpage: pread fail: asked for 4094 bytes @ offset 2, got 0

-----------スキャンの概要-----------
既知のウイルス:3775271エンジンバージョン:0.98.6スキャンしたディレクトリ:98517スキャンしたファイル:1144928感染したファイル:2合計エラー:19018スキャンしたデータ:51350.64 MB読み取ったデータ:69028.91 MB(比率0.74:1)時間:10960.993秒(182 m 40 s)

「autorun」ウイルスの削除に成功しました。しかし、他のウイルスは見つかりません。だから、感染したファイルとエラーをどうすればよいですか?

4
Beck

のために

decompress file size exceeds limits

Clamscanに次のオプションを使用してみてください。特定のサイズを超える場合、(多くの)ウイルススキャナはファイルをスキャンしません。

--max-filesize =(サイズ/ MB/GB)

XMまたはxmの形式で値をメガバイト単位で渡すことができます(xは数値)。

例:--max-filesize = 50M

デフォルトのサイズは25MBです。

ソース: http://lurker.clamav.net/message/20140926.143835.3e73415e.nl.html

(manページ)詳細@: http://linux.die.net/man/1/clamscan

場合によっては、--max-scansizeも必要になることがあります。

--max-filesize=#n
    Extract and scan at most #n kilobytes from each archive. You may pass the value in megabytes in format xM or xm, where x is a number. This option protects your system against DoS attacks (default: 25 MB, max: <4 GB) 
--max-scansize=#n
    Extract and scan at most #n kilobytes from each scanned file. You may pass the value in megabytes in format xM or xm, where x is a number. This option protects your system against DoS attacks (default: 100 MB, max: <4 GB) 
4
Sinn3d