病毒库main.cvd解压

发布于 2024-10-17 07:09:11 字数 306 浏览 2 评论 0原文

在我之前的问题(十六进制病毒签名数据库)中,我问在哪里可以获得十六进制病毒特征库,答案是:ClamAV。所以我下载了“main.cvd”数据库,并被告知这是一个压缩的 tar 文件。我有两个问题要问:

  1. 签名是否为十六进制格式(当然是未压缩时)?
  2. 如何解压缩“main.cvd”文件以查看其内容,是否只需将其重命名为 main.tar 然后解压缩?

In my previous question (Hexadecimal virus signatures database), I asked where I can get a hex virus signature database, and the answer was: ClamAV. So I downloaded the "main.cvd" database and was told that it was a compressed tar file. I have two questions to ask:

  1. are the signatures in hex format (of course when uncompressed)?
  2. how do I uncompress the "main.cvd" file to view its contents, do i just rename it to main.tar and then uncompress it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

葬シ愛 2024-10-24 07:09:11

我可以通过使用文本编辑器并删除前 512 个字节来做到这一点。然后将文件扩展名重命名为.tar.gz并使用winrar打开它

I was able to do It by using a text editor and removing the first 512 bytes. Then renamed the file extension to .tar.gz and opened it using winrar

葬花如无物 2024-10-24 07:09:11

跑步:

dd if=main.cvd of=clamav_main.tar.gz skip=1 bs=512
tar zxvf clamav_main.tar.gz
chmod 700 *

Run:

dd if=main.cvd of=clamav_main.tar.gz skip=1 bs=512
tar zxvf clamav_main.tar.gz
chmod 700 *
猥︴琐丶欲为 2024-10-24 07:09:11

我发现这一行命令可以很好地工作:

xxd -ps -s 512 <CVD-FILE> | xxd -r -ps | tar -zx

I have found this one-line set of commands to work nicely:

xxd -ps -s 512 <CVD-FILE> | xxd -r -ps | tar -zx
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文