MCPcopy Create free account

hub / github.com/Kudaes/Dumpy / functions

Functions40 in github.com/Kudaes/Dumpy

↓ 26 callersFunctionclose_handle
Closes a HANDLE object. It will return either a boolean value or an Err with a descriptive error message. If the function fails the bool value return
dumpy/dinvoke/src/lib.rs:385
↓ 26 callersFunctionget_module_base_address
Retrieves the base address of a module loaded in the current process. In case that the module can't be found in the current process, it will return 0
dumpy/dinvoke/src/lib.rs:30
↓ 4 callersFunctionget_function_address
Retrieves the address of an exported function from the specified module. This functions is analogous to GetProcAddress from Win32. The exported funct
dumpy/dinvoke/src/lib.rs:65
↓ 3 callersFunctionget_pid_from_image_path
(path: &str)
dumpy/dumper/src/lib.rs:639
↓ 3 callersFunctionload_library_a
Loads and retrieves a module's base address by dynamically calling LoadLibraryA. It will return either the module's base address or an Err with a des
dumpy/dinvoke/src/lib.rs:282
↓ 2 callersFunctionnt_duplicate_object
Dynamically calls NtDuplicateObject. It will return the NTSTATUS value returned by the call.
dumpy/dinvoke/src/lib.rs:793
↓ 2 callersFunctionnt_query_object
Dynamically calls NtQueryObject. It will return the NTSTATUS value returned by the call.
dumpy/dinvoke/src/lib.rs:812
↓ 1 callersFunctioncreate_file_mapping
Dynamically calls CreateFileMappingW.
dumpy/dinvoke/src/lib.rs:513
↓ 1 callersFunctioncreate_file_transacted
Dynamically calls CreateFileTransactedA.
dumpy/dinvoke/src/lib.rs:459
↓ 1 callersFunctioncreate_transaction
Dynamically calls CreateTransaction.
dumpy/dinvoke/src/lib.rs:441
↓ 1 callersFunctiondecrypt
(file_path: &str, key: &str, output_file: &str)
dumpy/dumper/src/lib.rs:699
↓ 1 callersFunctiondump
[no_mangle] pub extern "Rust" fn dump(key: &str) {
dumpy/dumper/src/lib.rs:24
↓ 1 callersFunctionforce_leakage
()
dumpy/dumper/src/lib.rs:502
↓ 1 callersFunctionget_file_size
Dynamically calls GetFileSize.
dumpy/dinvoke/src/lib.rs:495
↓ 1 callersFunctionget_last_error
()
dumpy/dinvoke/src/lib.rs:583
↓ 1 callersFunctionldr_get_procedure_address
(module_handle: isize, function_name: &str, ordinal: u32)
dumpy/dinvoke/src/lib.rs:219
↓ 1 callersFunctionmain
()
dumpy/src/main.rs:9
↓ 1 callersFunctionmap_view_of_file
Dynamically calls MapViewOfFile.
dumpy/dinvoke/src/lib.rs:531
↓ 1 callersFunctionmini_dump_write_dump
Dynamically calls MiniDumpWriteDump.
dumpy/dinvoke/src/lib.rs:477
↓ 1 callersFunctionnt_open_process
Dynamically calls NtOpenProcess. It will return the NTSTATUS value returned by the call.
dumpy/dinvoke/src/lib.rs:774
↓ 1 callersFunctionnt_query_information_file
Dynamically calls NtQueryInformationFile. It will return the NTSTATUS value returned by the call.
dumpy/dinvoke/src/lib.rs:754
↓ 1 callersFunctionnt_query_information_thread
Dynamically calls NtQueryInformationThread. It will return the NTSTATUS value returned by the call.
dumpy/dinvoke/src/lib.rs:735
↓ 1 callersFunctionnt_query_system_information
Dynamically calls NtQuerySystemInformation. It will return the NTSTATUS value returned by the call.
dumpy/dinvoke/src/lib.rs:716
↓ 1 callersFunctionprint_usage
(program: &str, opts: Options)
dumpy/src/main.rs:14
↓ 1 callersFunctionquery_full_process_image_name
Dynamically calls QueryFullProcessImageNameW.
dumpy/dinvoke/src/lib.rs:423
↓ 1 callersFunctionrollback_transaction
Dynamically calls RollbackTransaction.
dumpy/dinvoke/src/lib.rs:567
↓ 1 callersFunctionrtl_adjust_privilege
Dynamically calls RtlAdjustPrivilege. It will return the NTSTATUS value returned by the call.
dumpy/dinvoke/src/lib.rs:697
↓ 1 callersFunctionstart
()
dumpy/src/main.rs:19
↓ 1 callersFunctionunmap_view_of_file
Dynamically calls UnmapViewOfFile.
dumpy/dinvoke/src/lib.rs:549
Functioncall_module_entry_point
Calls the module's entry point with the option DLL_ATTACH_PROCESS. # Examples ```ignore let pe = manualmap::read_and_map_module("c:\\some\\random\\f
dumpy/dinvoke/src/lib.rs:136
Methoddefault
()
dumpy/data/src/lib.rs:79
Functionget_function_address_by_ordinal
Retrieves the address of an exported function from the specified module by its ordinal. In case that the function's address can't be retrieved, it wi
dumpy/dinvoke/src/lib.rs:182
Functionmain
()
dumpy/build.rs:1
Functionmain
()
dumpy/bindings/build.rs:1
Functionnt_allocate_virtual_memory
Dynamically calls NtAllocateVirtualMemory. It will return the NTSTATUS value returned by the call.
dumpy/dinvoke/src/lib.rs:640
Functionnt_protect_virtual_memory
Dynamically calls NtProtectVirtualMemory. It will return the NTSTATUS value returned by the call.
dumpy/dinvoke/src/lib.rs:659
Functionnt_query_information_process
Dynamically calls NtQueryInformationProcess. It will return the NTSTATUS value returned by the call.
dumpy/dinvoke/src/lib.rs:678
Functionnt_write_virtual_memory
Dynamically calls NtWriteVirtualMemory. It will return the NTSTATUS value returned by the call.
dumpy/dinvoke/src/lib.rs:620
Functionopen_process
Opens a HANDLE to a process. It will return either a HANDLE object or an Err with a descriptive error message. If the function fails the HANDLE will
dumpy/dinvoke/src/lib.rs:332
Functionset_handle_information
Dynamically calls SetHandleInformation.
dumpy/dinvoke/src/lib.rs:601