diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2020-05-27 14:20:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-27 14:20:32 +0200 |
| commit | 15d2bf522e2bb3aa8e2ac491c631aa4bf594c290 (patch) | |
| tree | ce75fae3af9a9ffd248a3dafe55500bcea1adbda | |
| parent | 2904c0e6139018b9310f37ceb3f74df8dcf0c9a4 (diff) | |
| parent | 6c4ff469feeb9e0a9eb7a4765eda62fd103317b3 (diff) | |
| download | miasm-15d2bf522e2bb3aa8e2ac491c631aa4bf594c290.tar.gz miasm-15d2bf522e2bb3aa8e2ac491c631aa4bf594c290.zip | |
Merge pull request #1240 from serpilliere/ldrload_log
Add log to ldrloaddll
Diffstat (limited to '')
| -rw-r--r-- | miasm/os_dep/win_api_x86_32.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm/os_dep/win_api_x86_32.py b/miasm/os_dep/win_api_x86_32.py index c7c67a78..146ce192 100644 --- a/miasm/os_dep/win_api_x86_32.py +++ b/miasm/os_dep/win_api_x86_32.py @@ -1913,6 +1913,7 @@ def ntdll_LdrLoadDll(jitter): libname = s.lower() ad = winobjs.runtime_dll.lib_get_add_base(libname) + log.info("Loading %r ret 0x%x", s, ad) jitter.vm.set_u32(args.modhandle, ad) jitter.func_ret_stdcall(ret_ad, 0) |