-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error with examples/HelloFrida #2
Comments
Hi, Could you enable unmanaged debugging and see where it crashes? This is probably a regression in frida-clr where it's not up-to-date with the current frida-core API. Should be easy to fix though. Cheers! |
Hi, thank you for the quick reply. It seems to crash before the form even loads. With native code debugging enabled I got this: Output: First-chance exception at 0x76F8E823 (ntdll.dll) in HelloFrida.exe: 0xC0000005: Access violation reading location 0x52018B74. Unhandled Exception: First-chance exception at 0x76F9A208 (ntdll.dll) in HelloFrida.exe: 0xC0000005: Access violation reading location 0xABABABBB. First-chance exception at 0x76F9A208 (ntdll.dll) in HelloFrida.exe: 0xC0000005: Access violation reading location 0xABABABBB. First-chance exception at 0x76F9A208 (ntdll.dll) in HelloFrida.exe: 0xC0000005: Access violation reading location 0xABABABBB. First-chance exception at 0x76F9A208 (ntdll.dll) in HelloFrida.exe: 0xC0000005: Access violation reading location 0xABABABBB. First-chance exception at 0x76F9A208 (ntdll.dll) in HelloFrida.exe: 0xC0000005: Access violation reading location 0xABABABBB. First-chance exception at 0x76F9A208 (ntdll.dll) in HelloFrida.exe: 0xC0000005: Access violation reading location 0xABABABBB. Cannot print exception string because Exception.ToString() failed. |
I was faced this error , and i fixed by adding 0x to ptr |
Hi. I'm trying to get the HelloFrida example working. Whenever I try to debug it, I get the following exception in Visual Studio:
"System.BadImageFormatException {"Could not load file or assembly 'Frida.dll' or one of its dependencies. is not a valid Win32 application. (Exception from HRESULT: 0x800700C1)"}".
The project builds successfully into a .exe, but whenever I try to open it I get:
"The exception unknown software exception (0xe0434352) occurred in the application at location 0x7670c52d."
I've also tried using the 64 bit .DLL but get a different exception:
"System.AccessViolationException {"Attempted to read or write protected memory. This is often an indication that other memory is corrupt."}".
Is there something I'm doing wrong or missing?
Thank you.
The text was updated successfully, but these errors were encountered: