MCPcopy Create free account
hub / github.com/b1tg/rust-windows-shellcode / PEB

Class PEB

shellcode/src/binds.rs:12–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10pub type LPSTR = *mut i8;
11#[repr(C)]
12pub struct PEB {
13 pub InheritedAddressSpace: BOOLEAN,
14 pub ReadImageFileExecOptions: BOOLEAN,
15 pub BeingDebugged: BOOLEAN,
16 pub BitField: BOOLEAN,
17 pub Mutant: HANDLE,
18 pub ImageBaseAddress: PVOID,
19 pub Ldr: *mut PEB_LDR_DATA,
20 pub ProcessParameters: *mut RTL_USER_PROCESS_PARAMETERS,
21}
22pub type LPCSTR = *const i8;
23#[repr(C)]
24pub struct PEB_LDR_DATA {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected