Re: [Mingw-w64-public] patching IAT and _strdup() and malloc() functions

2015-12-16 Thread Vincent Torri
On Tue, Dec 15, 2015 at 8:54 AM, LRN wrote: > On 15.12.2015 9:20, Vincent Torri wrote: >> Hello >> >> I am still working on Examine, my small valgrind-like memory leak >> detector (http://vtorri.github.io/examine/) and I have 2 questions. >> >> First, I recall that it works by doing DLL injection

Re: [Mingw-w64-public] patching IAT and _strdup() and malloc() functions

2015-12-16 Thread Vincent Torri
On Tue, Dec 15, 2015 at 2:00 PM, Vincent Torri wrote: > On Tue, Dec 15, 2015 at 12:05 PM, Jacek Caban wrote: >> Hi Vincent, >> >> On 12/15/15 7:20 AM, Vincent Torri wrote: >>> Hello >>> >>> I am still working on Examine, my small valgrind-like memory leak >>> detector (http://vtorri.github.io/exa

Re: [Mingw-w64-public] patching IAT and _strdup() and malloc() functions

2015-12-15 Thread Vincent Torri
On Tue, Dec 15, 2015 at 12:05 PM, Jacek Caban wrote: > Hi Vincent, > > On 12/15/15 7:20 AM, Vincent Torri wrote: >> Hello >> >> I am still working on Examine, my small valgrind-like memory leak >> detector (http://vtorri.github.io/examine/) and I have 2 questions. >> >> First, I recall that it wor

Re: [Mingw-w64-public] patching IAT and _strdup() and malloc() functions

2015-12-15 Thread LRN
On 15.12.2015 14:05, Jacek Caban wrote: > Hi Vincent, > > On 12/15/15 7:20 AM, Vincent Torri wrote: >> Hello >> >> I am still working on Examine, my small valgrind-like memory leak >> detector (http://vtorri.github.io/examine/) and I have 2 questions. >> >> First, I recall that it works by doing D

Re: [Mingw-w64-public] patching IAT and _strdup() and malloc() functions

2015-12-15 Thread Jacek Caban
Hi Vincent, On 12/15/15 7:20 AM, Vincent Torri wrote: > Hello > > I am still working on Examine, my small valgrind-like memory leak > detector (http://vtorri.github.io/examine/) and I have 2 questions. > > First, I recall that it works by doing DLL injection with > CreateRemoteThread, and API hook

Re: [Mingw-w64-public] patching IAT and _strdup() and malloc() functions

2015-12-14 Thread LRN
On 15.12.2015 9:20, Vincent Torri wrote: > Hello > > I am still working on Examine, my small valgrind-like memory leak > detector (http://vtorri.github.io/examine/) and I have 2 questions. > > First, I recall that it works by doing DLL injection with > CreateRemoteThread, and API hooking by patch

[Mingw-w64-public] patching IAT and _strdup() and malloc() functions

2015-12-14 Thread Vincent Torri
Hello I am still working on Examine, my small valgrind-like memory leak detector (http://vtorri.github.io/examine/) and I have 2 questions. First, I recall that it works by doing DLL injection with CreateRemoteThread, and API hooking by patching the IAT. So Examine is working well, now, but I ha