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

Class PEB_LDR_DATA

shellcode/src/binds.rs:24–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22pub type LPCSTR = *const i8;
23#[repr(C)]
24pub struct PEB_LDR_DATA {
25 pub Length: ULONG,
26 pub Initialized: BOOLEAN,
27 pub SsHandle: HANDLE,
28 pub InLoadOrderModuleList: LIST_ENTRY,
29 // ...
30}
31
32pub type PLDR_DATA_TABLE_ENTRY = *const LDR_DATA_TABLE_ENTRY;
33#[repr(C)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected