PDA

View Full Version : what the hell with windows installer


ya_humm
04-07-2005, 09:34 PM
Hi,msi passionate and guru.
I didn't always reverse programme based on .inx or .msi.Nowaydays it seemed that windows installer had made some change.The setup.msi would create msi*.dll which contains the serial information,and immediately delete them after check it.And You can log the msi*.dll in filemon,but you can't get it and then disassemble with ida.
So how did you deal with this pb?

disavowed
04-08-2005, 01:27 AM
why not set a breakpoint on DeleteFile(...) and catch the file before it's deleted?

Solomon
04-08-2005, 09:50 AM
use Total Commander with msi plugin to extract the DLL.

JimmyClif
04-08-2005, 11:32 AM
Old trick used to be to break when the dll is created and HBOOT

Kayaker
04-08-2005, 12:11 PM
Quote:
[Originally Posted by JimmyClif]Old trick used to be to break when the dll is created and HBOOT

Damn sneaky crackers!

ya_humm
04-08-2005, 08:37 PM
Quote:
[Originally Posted by JimmyClif]Old trick used to be to break when the dll is created and HBOOT


Can you explain it detailedly?Thanks in advance.