解析者: Neljorn Nathaniel Aguas   

 別名:

Trojan:Win32/Seheq!rfn (MICROSOFT)

 プラットフォーム:

Windows

 危険度:
 ダメージ度:
 感染力:
 感染確認数:
 情報漏えい:

  • マルウェアタイプ:
    ハッキングツール

  • 破壊活動の有無:
    なし

  • 暗号化:
    なし

  • 感染報告の有無 :
    はい

  概要

感染経路 インターネットからのダウンロード, 他のマルウェアからの作成

プログラムは、他のマルウェアに作成されるか、悪意あるWebサイトからユーザが誤ってダウンロードすることによりコンピュータに侵入します。

プログラムは、ワーム活動の機能を備えていません。

プログラムは、バックドア活動の機能を備えていません。

  詳細

ファイルサイズ 248,832 bytes
タイプ EXE
メモリ常駐 なし
発見日 2024年5月22日
ペイロード URLまたはIPアドレスに接続

侵入方法

プログラムは、他のマルウェアに作成されるか、悪意あるWebサイトからユーザが誤ってダウンロードすることによりコンピュータに侵入します。

感染活動

プログラムは、ワーム活動の機能を備えていません。

バックドア活動

プログラムは、バックドア活動の機能を備えていません。

ルートキット機能

プログラムは、ルートキット機能を備えていません。

その他

プログラムは、以下を実行します。

  • It monitors the activity of a process to detect EDR implementation and subsequently bypasses the detection mechanisms.
  • It employs techniques utilized to bypass EDR detections both in user and kernel mode.
  • It performs the following actions to bypass EDR detections:
    • Kernel Notify Routines Callbacks Removalby exploiting vulnerable EDR drivers
    • Disable Object Callbacksby either setting the Enabled flag in the callback structure, unlinking the Callbacklist of threads and process, or disabling object callbacks altogether
    • Bypass Minifilters' Callbacksby unlinking the nodes from their lists, making them temporarily invisible from the filter manager loaded by the EDR using Windows Filter Manager
    • Disable ETW Microsoft-Windows-Threat-Intelligence Provider - by patching in kernel memory related to ETW TI
    • Bypass Userland Hookingby using unhooking, custom or EDR's own trampoline, duplicate DLL, or direct syscall methods
    • Vulnerable Drivers Exploitationby using vulnerable drivers to gain kernel read/write primitive
    • Detect EDR drivers and processesdetects if a driver or process belongs to an EDR product. If an EDR driver or process is unknown, it embeds the information to the tool
    • Bypass RunAsPPLby elevating the protection level to dump the LSASS process memory
    • Bypass Credential Guardby patching and enabling Wdigest to show cleartext credentials in LSASS memory
    • Offsets Retrievalby utilizing hardcoded offsets instead of pattern searches to reliably perform kernel monitoring bypass operations
  • It exploits vulnerabilities in the following known drivers:
  • It checks for the presence of the following files:
    • {Malware Path}\gdrv.sys
    • {Malware Path}\RTCore64.sys
    • {Malware Path}\DBUtil_2_3.sys
    • {Malware Path}\NtoskrnlOffsets.csv → contains offsets used to perform Offsets Retrieval

マルウェアは、以下のパラメータを受け取ります。

  • -h | --helpShow this help message and exit.
  • -v | --verboseEnable a more verbose output.

    Actions mode:

  • auditDisplay the user-land hooks and / or Kernel callbacks without taking actions.
  • dumpDump the process specified by --process-name (LSASS process by default), as 'process_name' in the current directory or at the specified file using -o | --output .
  • cmdOpen a cmd.exe prompt.
  • credguardPatch the LSASS process' memory to enable Wdigest cleartext passwords caching even if Credential Guard is enabled on the host. No kernel-land actions required.
  • firewallAdd Windows firewall rules to block network access for the EDR processes / services.
  • load_unsigned_driverLoad the specified unsigned driver, bypassing Driver Signature Enforcement (DSE). (Experimental)
  • --usermodePerform user-land operations (DLL unhooking).
  • --kernelmodePerform kernel-land operations (Kernel callbacks removal and ETW TI disabling).

    Hooking-related options:

  • --add-dll {dll name or path}Loads arbitrary libraries into the process' address space, before starting anything. This can be useful to audit userland hooking for DLL that are not loaded by default by this program. Use this option multiple times to load multiple DLLs all at once.
  • --direct-syscallsUse direct syscalls to dump the selected process memory without unhooking userland hooks.
  • --unhook-method {N}Choose the userland un-hooking technique, from the following:
  • 0Do not perform any unhooking (used for direct syscalls operations).
  • 1 (Default) → Uses the (probably monitored) NtProtectVirtualMemory function in ntdll to remove all present userland hooks.
  • 2Constructs a 'unhooked' (i.e. unmonitored) version of NtProtectVirtualMemory, by allocating an executable trampoline jumping over the hook, and remove all present userland hooks.
  • 3Searches for an existing trampoline allocated by the EDR itself, to get an 'unhooked' (i.e. unmonitored) version of NtProtectVirtualMemory, and remove all present userland hooks.
  • 4Loads an additional version of ntdll library into memory, and use the version of NtProtectVirtualMemory present in this library to remove all present userland hooks.
  • 5Allocates a shellcode that uses a direct syscall to call NtProtectVirtualMemory, and uses it to remove all detected hooks.

    BYOVD options:

  • --dont-unload-driverKeep the vulnerable driver installed on the host. Default to automatically uninstall the driver.
  • --no-restoreDo not restore the EDR drivers' Kernel Callbacks that were removed. Default to restore the callbacks.
  • --vuln-driver {gdrv.sys}Path to the vulnerable driver file. Default to 'gdrv.sys' in the current directory.
  • --vuln-service {SERVICE_NAME}Name of the vulnerable service to intall / start.

    Driver sideloading options:

  • --unsigned-driver {evil.sys}Path to the unsigned driver file. Default to 'evil.sys' in the current directory.
  • --unsigned-service {SERVICE_NAME}Name of the unsigned driver's service to intall / start.
  • --no-kdpSwitch to g_CiOptions patching method for disabling DSE (default is callback swapping).

    Offset-related options:

    --nt-offsets {NtoskrnlOffsets.csv}Path to the CSV file containing the required ntoskrnl.exe's offsets. Default to 'NtoskrnlOffsets.csv' in the current directory.
  • --fltmgr-offsets {FltmgrOffsets.csv}Path to the CSV file containing the required fltmgr.sys's offsets. Default to 'FltmgrOffsets.csv' in the current directory.
  • --wdigest-offsets {WdigestOffsets.csv}Path to the CSV file containing the required wdigest.dll's offsets (only for the 'credguard' mode). Default to 'WdigestOffsets.csv' in the current directory.
  • --ci-offsets {CiOffsets.csv}Path to the CSV file containing the required ci.dll's offsets (only for the 'load_unsigned_driver' mode). Default to 'WdigestOffsets.csv' in the current directory.
  • -i | --internetEnables automatic symbols download from Microsoft Symbol Server. If a corresponding Offsets.csv file exists, appends the downloaded offsets to the file for later use. OpSec warning: downloads and drops on disk a PDB file for the corresponding image.

    Dump options:

  • -o | --dump-output {DUMP_FILE}Output path to the dump file that will be generated by the 'dump' mode. Default to 'process_name' in the current directory.
  • --process-name {NAME}File name of the process to dump (defaults to 'lsass.exe')

  対応方法

対応検索エンジン: 9.800
SSAPI パターンバージョン: 2.725.00
SSAPI パターンリリース日: 2024年5月9日

手順 1

Windows 7、Windows 8、Windows 8.1、および Windows 10 のユーザは、コンピュータからマルウェアもしくはアドウェア等を完全に削除するために、ウイルス検索の実行前には必ず「システムの復元」を無効にしてください。

手順 2

このマルウェアもしくはアドウェア等の実行により、手順中に記載されたすべてのファイル、フォルダおよびレジストリキーや値がコンピュータにインストールされるとは限りません。インストールが不完全である場合の他、オペレーティングシステム(OS)の条件によりインストールがされない場合が考えられます。手順中に記載されたファイル/フォルダ/レジストリ情報が確認されない場合、該当の手順の操作は不要ですので、次の手順に進んでください。

手順 3

以下のファイルを検索し削除します。

[ 詳細 ]
コンポーネントファイルが隠しファイル属性の場合があります。[詳細設定オプション]をクリックし、[隠しファイルとフォルダの検索]のチェックボックスをオンにし、検索結果に隠しファイルとフォルダが含まれるようにしてください。  
  • {Malware Path}\gdrv.sys
  • {Malware Path}\RTCore64.sys
  • {Malware Path}\DBUtil_2_3.sys
  • {Malware Path}\NtoskrnlOffsets.csv

手順 4

最新のバージョン(エンジン、パターンファイル)を導入したウイルス対策製品を用い、ウイルス検索を実行してください。「HackTool.Win64.EDRSandBlast.THEOBBD」と検出したファイルはすべて削除してください。 検出されたファイルが、弊社ウイルス対策製品により既に駆除、隔離またはファイル削除の処理が実行された場合、ウイルスの処理は完了しており、他の削除手順は特にありません。


ご利用はいかがでしたか? アンケートにご協力ください