首页
社区
课程
招聘
[讨论]自己逆向的NtOpenProcess欢迎讨论
发表于: 2011-2-11 20:22 9021

[讨论]自己逆向的NtOpenProcess欢迎讨论

2011-2-11 20:22
9021
自己逆向的结果,希望大家一起讨论啊
NTSTATUS __stdcall NtOpenProcess(PHANDLE ProcessHandle, ACCESS_MASK DesiredAccess, POBJECT_ATTRIBUTES ObjectAttributes, PCLIENT_ID ClientId)
{
  PHANDLE pHandle; //
  POBJECT_ATTRIBUTES pobjAttributes; //
  int vUserAddr; //
  PCLIENT_ID clientID; //
  NTSTATUS result; //
  NTSTATUS ntstatus; //
  NTSTATUS nstatusCid; //
  char previousMode; //
  HANDLE ProcessID; //
  HANDLE ThreadID; //
  int nPreviousMode; //
  CPPEH_RECORD ms_exc; //
  char IsobjNameNull; //
  int objAttribt; //
  char clientTrue; //
  int desireAccess; //
  PVOID auxData; //
  int vFlag; //
  int vValue; //
  int object; //
  int thread; //
  PVOID Object; //

  ProcessID = 0;
  ThreadID = 0;
  previousMode = *(_BYTE *)(*MK_FP(__FS__, 0x124u) + 0x140);    // fs:[124h]是当前线程的KTHREAD结构,KTHREAD 偏移0x140处为previousMode char
  LOBYTE(nPreviousMode) = *(_BYTE *)(*MK_FP(__FS__, 0x124u) + 0x140);
  if ( previousMode )
  {
    ms_exc.disabled = 0;
    pHandle = ProcessHandle;
    if ( (unsigned int)ProcessHandle >= MmUserProbeAddress )    // MmUserProbeAddress是用来检查用户模式传递过来的参数是否是有效的
      *(_DWORD *)MmUserProbeAddress = 0;
    *pHandle = *pHandle;
    pobjAttributes = ObjectAttributes;
    if ( (_BYTE)ObjectAttributes & 3 )
      ExRaiseDatatypeMisalignment();
    vUserAddr = MmUserProbeAddress;
    if ( (unsigned int)pobjAttributes >= MmUserProbeAddress )
    {
      *(_DWORD *)MmUserProbeAddress = 0;
      vUserAddr = MmUserProbeAddress;
    }
    IsobjNameNull = pobjAttributes->ObjectName != 0;
    objAttribt = pobjAttributes->Attributes;
    clientID = ClientId;
    if ( ClientId )
    {
      if ( (_BYTE)ClientId & 3 )
      {
        ExRaiseDatatypeMisalignment();
        vUserAddr = MmUserProbeAddress;
        clientID = ClientId;
      }
      if ( (unsigned int)clientID >= vUserAddr )
        *(_DWORD *)vUserAddr = 0;
      ProcessID = clientID->UniqueProcess;
      ThreadID = clientID->UniqueThread;
      clientTrue = 1;
    }
    else
    {
      clientTrue = 0;
    }
    ms_exc.disabled = -1;
  }
  else
  {
    pobjAttributes = ObjectAttributes;
    IsobjNameNull = ObjectAttributes->ObjectName != 0;
    objAttribt = ObjectAttributes->Attributes;
    if ( ClientId )
    {
      ProcessID = ClientId->UniqueProcess;
      ThreadID = ClientId->UniqueThread;
      clientTrue = 1;
    }
    else
    {
      clientTrue = 0;
    }
  }
  if ( !IsobjNameNull || !clientTrue )
  {
    result = SeCreateAccessState(
               (int)&desireAccess,
               (int)&auxData,
               DesiredAccess,
               (PGENERIC_MAPPING)((char *)PsProcessType + 104));
    if ( result < 0 )
      return result;
    if ( SeSinglePrivilegeCheck(stru_5A5D1C, nPreviousMode) )
    {
      if ( vFlag & 0x2000000 )                                  // 局部变量vFlag  vValue 没有在别的地方引用过,暂时还不清楚有何作用
        vValue |= 0x1F0FFFu;
      else
        vValue |= vFlag;
      vFlag = 0;
    }
    if ( IsobjNameNull )
    {
      ntstatus = ObOpenObjectByName(pobjAttributes, PsProcessType, nPreviousMode, &desireAccess, 0, 0, &object);
      SeDeleteAccessState(&desireAccess);
      if ( ntstatus < 0 )
        return ntstatus;
EndSuccess:
      *ProcessHandle = (HANDLE)object;
      return ntstatus;
    }
    if ( clientTrue )
    {
      thread = 0;
      if ( ThreadID )
        nstatusCid = PsLookupProcessThreadByCid(&ProcessID, &Object, &thread);
      else
        nstatusCid = PsLookupProcessByProcessId(ProcessID, &Object);
      ntstatus = nstatusCid;
      if ( nstatusCid < 0 )
      {
        SeDeleteAccessState(&desireAccess);
        return ntstatus;
      }
      ntstatus = ObOpenObjectByPointer(
                   Object,
                   objAttribt,
                   (int)&desireAccess,
                   0,
                   PsProcessType,
                   nPreviousMode,
                   (int)&object);
      SeDeleteAccessState(&desireAccess);
      if ( thread )
        ObfDereferenceObject();
      ObfDereferenceObject();
      if ( ntstatus < 0 )
        return ntstatus;
      goto EndSuccess;
    }
  }
  return 0xC0000030u;

[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)

收藏
免费 0
支持
分享
最新回复 (7)
雪    币: 2362
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
我記得以前某某發了,然後某某噴了
畢竟是已經有源碼的東西
2011-2-11 20:33
0
雪    币: 2194
活跃值: (1001)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
if ( thread )
        ObfDereferenceObject(thread);
ObfDereferenceObject(Object);
2011-2-12 00:54
0
雪    币: 218
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4
哦 没看见到别人的。。。
2011-2-12 01:35
0
雪    币: 284
活跃值: (16)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
参见wrk后自己对比去吧大哥
2011-2-12 09:12
0
雪    币: 46
活跃值: (1174)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
6
楼主精神可嘉,还是逆点wrk里没有的吧
2011-2-12 10:29
0
雪    币: 218
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
7
呵呵  算是练习吧
2011-2-12 13:42
0
雪    币: 218
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
8
NTSTATUS
NtOpenProcess (
    __out PHANDLE ProcessHandle,
    __in ACCESS_MASK DesiredAccess,
    __in POBJECT_ATTRIBUTES ObjectAttributes,
    __in_opt PCLIENT_ID ClientId
    )

/*++

Routine Description:

    This function opens a handle to a process object with the specified
    desired access.

    The object is located either by name, or by locating a thread whose
    Client ID matches the specified Client ID and then opening that thread's
    process.

Arguments:

    ProcessHandle - Supplies a pointer to a variable that will receive
        the process object handle.

    DesiredAccess - Supplies the desired types of access for the process
        object.

    ObjectAttributes - Supplies a pointer to an object attributes structure.
        If the ObjectName field is specified, then ClientId must not be
        specified.

    ClientId - Supplies a pointer to a ClientId that if supplied
        specifies the thread whose process is to be opened. If this
        argument is specified, then ObjectName field of the ObjectAttributes
        structure must not be specified.

Return Value:

    NTSTATUS - Status of call

--*/

{

    HANDLE Handle;
    KPROCESSOR_MODE PreviousMode;
    NTSTATUS Status;
    PEPROCESS Process;
    PETHREAD Thread;
    CLIENT_ID CapturedCid={0};
    BOOLEAN ObjectNamePresent;
    BOOLEAN ClientIdPresent;
    ACCESS_STATE AccessState;
    AUX_ACCESS_DATA AuxData;
    ULONG Attributes;

    PAGED_CODE();

    //
    // Make sure that only one of either ClientId or ObjectName is
    // present.
    //

    PreviousMode = KeGetPreviousMode();
    if (PreviousMode != KernelMode) {

        //
        // Since we need to look at the ObjectName field, probe
        // ObjectAttributes and capture object name present indicator.
        //

        try {

            ProbeForWriteHandle (ProcessHandle);

            ProbeForReadSmallStructure (ObjectAttributes,
                                        sizeof(OBJECT_ATTRIBUTES),
                                        sizeof(ULONG));
            ObjectNamePresent = (BOOLEAN)ARGUMENT_PRESENT (ObjectAttributes->ObjectName);
            Attributes = ObSanitizeHandleAttributes (ObjectAttributes->Attributes, UserMode);

            if (ARGUMENT_PRESENT (ClientId)) {
                ProbeForReadSmallStructure (ClientId, sizeof (CLIENT_ID), sizeof (ULONG));
                CapturedCid = *ClientId;
                ClientIdPresent = TRUE;
            } else {
                ClientIdPresent = FALSE;
            }
        } except (EXCEPTION_EXECUTE_HANDLER) {
            return GetExceptionCode();
        }
    } else {
        ObjectNamePresent = (BOOLEAN)ARGUMENT_PRESENT (ObjectAttributes->ObjectName);
        Attributes = ObSanitizeHandleAttributes (ObjectAttributes->Attributes, KernelMode);
        if (ARGUMENT_PRESENT (ClientId)) {
            CapturedCid = *ClientId;
            ClientIdPresent = TRUE;
        } else {
            ClientIdPresent = FALSE;
        }
    }

    if (ObjectNamePresent && ClientIdPresent) {
        return STATUS_INVALID_PARAMETER_MIX;
    }

    //
    // Create an AccessState here, because the caller may have
    // DebugPrivilege, which requires us to make special adjustments
    // to his desired access mask.  We do this by modifying the
    // internal fields in the AccessState to achieve the effect
    // we desire.
    //

    Status = SeCreateAccessState(
                 &AccessState,
                 &AuxData,
                 DesiredAccess,
                 &PsProcessType->TypeInfo.GenericMapping
                 );

    if ( !NT_SUCCESS(Status) ) {

        return Status;
    }

    //
    // Check here to see if the caller has SeDebugPrivilege.  If
    // he does, we will allow him any access he wants to the process.
    // We do this by clearing the DesiredAccess in the AccessState
    // and recording what we want him to have in the PreviouslyGrantedAccess
    // field.
    //
    // Note that this routine performs auditing as appropriate.
    //

    if (SeSinglePrivilegeCheck( SeDebugPrivilege, PreviousMode )) {

        if ( AccessState.RemainingDesiredAccess & MAXIMUM_ALLOWED ) {
            AccessState.PreviouslyGrantedAccess |= PROCESS_ALL_ACCESS;

        } else {

            AccessState.PreviouslyGrantedAccess |= ( AccessState.RemainingDesiredAccess );
        }

        AccessState.RemainingDesiredAccess = 0;

    }

    if (ObjectNamePresent) {

        //
        // Open handle to the process object with the specified desired access,
        // set process handle value, and return service completion status.
        //

        Status = ObOpenObjectByName(
                    ObjectAttributes,
                    PsProcessType,
                    PreviousMode,
                    &AccessState,
                    0,
                    NULL,
                    &Handle
                    );

        SeDeleteAccessState( &AccessState );

        if ( NT_SUCCESS(Status) ) {
            try {
                *ProcessHandle = Handle;
            } except (EXCEPTION_EXECUTE_HANDLER) {
                return GetExceptionCode ();
            }
        }

        return Status;
    }

    if ( ClientIdPresent ) {

        Thread = NULL;
        if (CapturedCid.UniqueThread) {
            Status = PsLookupProcessThreadByCid(
                        &CapturedCid,
                        &Process,
                        &Thread
                        );

            if (!NT_SUCCESS(Status)) {
                SeDeleteAccessState( &AccessState );
                return Status;
            }
        } else {
            Status = PsLookupProcessByProcessId(
                        CapturedCid.UniqueProcess,
                        &Process
                        );

            if ( !NT_SUCCESS(Status) ) {
                SeDeleteAccessState( &AccessState );
                return Status;
            }
        }

        //
        // OpenObjectByAddress
        //

        Status = ObOpenObjectByPointer(
                    Process,
                    Attributes,
                    &AccessState,
                    0,
                    PsProcessType,
                    PreviousMode,
                    &Handle
                    );

        SeDeleteAccessState( &AccessState );

        if (Thread) {
            ObDereferenceObject(Thread);
        }

        ObDereferenceObject(Process);

        if (NT_SUCCESS (Status)) {

            try {
                *ProcessHandle = Handle;
            } except (EXCEPTION_EXECUTE_HANDLER) {
                return GetExceptionCode ();
            }
        }

        return Status;

    }

    return STATUS_INVALID_PARAMETER_MIX;
}
2011-2-12 14:03
0
游客
登录 | 注册 方可回帖
返回
//