ESET LiveGuard Advanced機能のテスト
ESET LiveGuard Advancedの機能と能力をテストするには、次の手順に従います。
があるユーザー ESET PROTECT
ESET Cloud Office Securityユーザー
FAQ
これは実際のマルウェアですか。
いいえ。このEdtdTestFile.exeはEicar(標準のマルウェアテストファイル )のドロッパーです。このイベントは、ESET LiveGuard Advancedのサンドボックスで分析中に検出されます。
どのようにして確認できますか。
テストファイルのソースコード:
•Windows実行ファイル
#include <fstream> #include "tchar.h" #include "windows.h"
int main() { std::ofstream dropped; dropped.open(_T("eicar.com")); dropped << "X5O!P%@AP[4\\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*"; dropped.close(); ::MessageBox(nullptr, _T("EDTD test file has been executed.\n2020.4.15 10:34"), _T("EDTD test file"), MB_OK); return 0; } |
•Linuxバイナリ
#include <fstream> #include <iostream> #include <stdio.h>
int main() { std::ofstream dropped; dropped.open("eicar.com"); dropped << "X5O!P%@AP[4\\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*"; dropped.close(); std::cout << "EDTD test file has been executed." << std::endl; getchar(); return 0; } |