首页
社区
课程
招聘
[求助] HideToolz3.0 x64驱动是用什么混淆的?
发表于: 2019-12-19 11:07 6572

[求助] HideToolz3.0 x64驱动是用什么混淆的?

2019-12-19 11:07
6572
__int64 __fastcall DriverEntry(_QWORD *DriverObject1, __int64 a2)
{
  unsigned __int16 *RegistryPath; // rdi
  struct _DRIVER_OBJECT *DriverObject; // rbx
  __int64 result; // rax

  RegistryPath = (unsigned __int16 *)a2;
  DriverObject1[13] = sub_1400013DC;
  DriverObject = (struct _DRIVER_OBJECT *)DriverObject1;
  if ( (_BYTE)KdDebuggerEnabled )
    KdDisableDebugger();
  result = GetWindowsVersion();
  if ( (signed int)result >= 0 )
  {
    result = sub_140003610(L"\\??\\HideToolz");
    if ( (signed int)result < 0 )
    {
      P = NewRegistryPath(RegistryPath);
      if ( P && (qword_14002C128 = (__int64)DriverObject, initDevice(DriverObject) >= 0) )
      {
        if ( DriverObject->DeviceObject )
        {
          DriverObject->MajorFunction[0] = (PDRIVER_DISPATCH)DispatchCommon;// IRP_MJ_CREATE
          DriverObject->MajorFunction[14] = (PDRIVER_DISPATCH)DispatchIoControl;// IRP_MJ_DEVICE_CONTROL
          DriverObject->MajorFunction[2] = (PDRIVER_DISPATCH)DispatchCommon;// IRP_MJ_CLOSE
        }
        sub_1400093B4();
        RxInitializeTopLevelIrpPackage();

        // ldr = (PLDR_DATA_TABLE_ENTRY64)pDriverObj->DriverSection;
        // ldr->Flags |= 0x20; 
        // (经过我验证 "在链接器=>命令行添加 /INTEGRITYCHEC" 能达到相同的效果)
        *((_DWORD *)DriverObject->DriverSection + 26) |= 0x20u;
        IoRegisterDriverReinitialization(DriverObject, sub_1400013D0, 0i64);
        result = 0i64;
      }
      else
      {
        result = 3221225473i64;
      }
    }
  }
  return result;
}

signed __int64 __fastcall DispatchIoControl(__int64 a1, _IRP *pIrp)
{
  _IO_STACK_LOCATION *v2; // rax
  _IRP *v3; // rdi
  __int64 v4; // rbx
  __int64 v5; // rbp
  KPROCESSOR_MODE v6; // al

  v2 = pIrp->Tail.Overlay.CurrentStackLocation;
  v3 = pIrp;
  v4 = v2->Parameters.Read.ByteOffset.LowPart;
  v5 = v2->Parameters.Create.Options;
  v6 = ExGetPreviousMode();
  if ( v6 )
  {
    if ( v6 )
      JUMPOUT(&loc_1400039DC); // 这个部分看了下反汇编, 一大堆各种jump,qing是用什工具混淆的?
    JUMPOUT(&loc_1400039DC);
  }
  v3->IoStatus.Information = 0i64;
  v3->IoStatus.Status = 0xC0000001;
  IofCompleteRequest(v3, 0);
  return 0xC0000001i64;
}


DispatchIoControl 函数看了下反汇编 ,各种JMP,请问是用什么工具混淆的?

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

上传的附件:
收藏
免费 1
支持
分享
最新回复 (3)
雪    币: 407
活跃值: (1816)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
2019-12-19 15:53
0
雪    币: 458
活跃值: (421)
能力值: ( LV9,RANK:610 )
在线值:
发帖
回帖
粉丝
3
Thead
多谢~
2019-12-19 23:49
0
雪    币: 308
能力值: ( LV1,RANK:0 )
在线值:
发帖
回帖
粉丝
4
WIN10 64蓝屏
2021-10-22 13:58
0
游客
登录 | 注册 方可回帖
返回
//