I have a 32bit DLL I am trying to debug. I set up my process options to use:
- Application: "C:\Windows\SysWoW64\rundll32.exe"
- Input file: the DLL I'm debugging
- Parameters: "C:...\mydll.dll", #1 #2 #3.
I don't think these parameters are working correctly though. The DLL is supposed to set up a socket for a network connection to beacon out to. That code is in one of the exported functions. But it doesn't seem like that code is being reached.
Tried a different number of parameters and parameter names, but that doesn't seem to change anything.