Well I am trying to attach OllyDBG to CO but it says access violation so how can I attach OllyDBG to CO?
Not very likely that making ollydbg ignore the exceptions would cause a blue screen. Actually, I'm 99.9998% certain that it won't cause a blue screen, unless of course your operating system doesn't support the EXCEPTION_NOT_HANDLED flag, which is very doubtfulQuote:
Thanks but I heard that this may cause blue screen or screen crash, is that true?
options -> exceptions -> add last exception. that way it doesn't skip telling you if you have an error in a hooked function while you debug it :)Quote:
Easiest and quickest way:
Options -> Exceptions -> "Ignore (pass to debugged program) following exceptions:" -> Tick the box that says "Memory access violations"
Anyway to find if my operating system supports the EXCEPTION_NOT_HANDLED flag or not?Quote:
Not very likely that making ollydbg ignore the exceptions would cause a blue screen. Actually, I'm 99.9998% certain that it won't cause a blue screen, unless of course your operating system doesn't support the EXCEPTION_NOT_HANDLED flag, which is very doubtful
Thanks btw congratulations on your websiteQuote:
options -> exceptions -> add last exception. that way it doesn't skip telling you if you have an error in a hooked function while you debug it :)
Yes it does, it says "Exception xxxxxxx - passed to program" or something similar in the buttom of the olly windowQuote:
options -> exceptions -> add last exception. that way it doesn't skip telling you if you have an error in a hooked function while you debug it :)
Of course it supports it. All the current Windows support it, I was just thinking about emulators like WINE and such.Quote:
Anyway to find if my operating system supports the EXCEPTION_NOT_HANDLED flag or not?
I am running windows XP SP2 version 2002
The one's it has given me areQuote:
Yes it does, it says "Exception xxxxxxx - passed to program" or something similar in the buttom of the olly window
Edit:
Clicking the "Add current" to add the current exception is doing exactly the same as flagging the "Memory access violations" box since there's only one kind of memory access violation exception which is 0xC0000005
80000004 (SINGLE STEP) C0000005 (ACCESS VIOLATION) C0000008 (INVALID HANDLE) C000001D (ILLEGAL INSTRUCTION)
EXCEPTION_ACCESS_VIOLATION I understand, that's the thread from inside Conquer.exe that's causing those.Quote:
The one's it has given me are
so you might want to tick/add those as well :)Code:80000004 (SINGLE STEP) C0000005 (ACCESS VIOLATION) C0000008 (INVALID HANDLE) C000001D (ILLEGAL INSTRUCTION)
it's tq. nothing is ever expected to throw normal errorsQuote:
EXCEPTION_ACCESS_VIOLATION I understand, that's the thread from inside Conquer.exe that's causing those.
EXCEPTION_SINGLE_STEP is what you get when you put a hardware breakpoint somewhere inside the program and something is accessing that memory (executing, read/write, whatever the breakpoint is set to react to)
I have never experienced Conquer.exe throwing the other two exceptions though, that seems rather strange.
|
|