ESET-ova mrežna pomoć

Traži Hrvatski
Odaberite temu

Testiranje funkcionalnosti programa ESET LiveGuard Advanced

Da biste testirali funkcionalnost programa ESET LiveGuard Advanced i njegovu sposobnost za rad, pratite korake u nastavku:

arrow_down_business Korisnici s ESET PROTECT On-Prem

arrow_down_business korisnici ESET Cloud Office Security

Najčešća pitanja

Je li ovo stvarni zlonamjerni softver?

Ne, ova testna datoteka EdtdTestFile.exe je samo dropper datoteka programa Eicar (standardna testna datoteka za zlonamjerni softver). Taj se događaj otkriva tijekom analize u testnom okruženju u programu ESET LiveGuard Advanced.

Kako mogu biti siguran/a da je to tako?

Ovo su izvorni kodovi testnih datoteka:

Windows izvršna datoteka

#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 binarno

#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;

}