libintrovirt v0.57.4
IntroVirt introspection library
Loading...
Searching...
No Matches
KDDEBUGGER_DATA64.hh
Go to the documentation of this file.
1/*
2 * Copyright 2021 Assured Information Security, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#pragma once
17
18#include <introvirt/fwd.hh>
19
20#include <cstdint>
21#include <string>
22
23namespace introvirt {
24namespace windows {
25namespace nt {
26
28 public:
32 virtual uint64_t KernelBase() const = 0;
33
37 virtual uint32_t ServicePackNumber() const = 0;
38
42 virtual uint64_t PsLoadedModuleList() const = 0;
43
47 virtual uint64_t PsActiveProcessHead() const = 0;
48
52 virtual const std::string& NtBuildLab() const = 0;
53
57 virtual uint64_t KiProcessorBlock() const = 0;
58
62 virtual uint64_t ObpTypeObjectType() const = 0;
63
67 virtual uint64_t ObpRootDirectoryObject() const = 0;
68
72 virtual uint16_t SizeEThread() const = 0;
73
77 virtual uint64_t PspCidTable() const = 0;
78
82 virtual bool PaeEnabled() const = 0;
83
84 virtual ~KDDEBUGGER_DATA64() = default;
85};
86
87} /* namespace nt */
88} /* namespace windows */
89} /* namespace introvirt */
Definition KDDEBUGGER_DATA64.hh:27
virtual uint64_t PsLoadedModuleList() const =0
virtual uint32_t ServicePackNumber() const =0
virtual uint16_t SizeEThread() const =0
virtual uint64_t ObpRootDirectoryObject() const =0
virtual uint64_t KernelBase() const =0
virtual const std::string & NtBuildLab() const =0
virtual uint64_t PsActiveProcessHead() const =0
virtual uint64_t PspCidTable() const =0
virtual uint64_t KiProcessorBlock() const =0
virtual uint64_t ObpTypeObjectType() const =0
Core IntroVirt classes.
Definition Cr0.hh:20