seh
Structured Exception Handler and Delphi
I am trying to set SEH without using try except (This is for my own personal knowledge to get a better idea on how SEH works)[详细]
2023-03-27 05:34 分类:问答Catching opcode 0xCC as an exception
Say a C p开发者_StackOverflow中文版rogram might trigger an exception of opcode 0xCC How can I catch it?[详细]
2023-03-06 08:40 分类:问答OllyDbg can't debug visual studio exe
I\'ve just created a new vc++ exe with this simple code: #include<stdio.h> #include<string.h>[详细]
2023-03-01 02:09 分类:问答Consequences of using Structured Exception Handling (SEH)?
I see Doug Harrison has made a good statement of what is \"wrong\" with using (i.e. catching) structured exceptions (see question #3).But what other consequences are there?For example, what happens if[详细]
2023-02-12 06:35 分类:问答Structured Exceptions (SE) from standard library calls
I\'ve got code that calls ::fgetpos, which results in a kernel exception that can\'t be caught (I have option /ehs in my VS 2008 project).But I can\'t help think that standard library routines should[详细]
2023-02-11 06:31 分类:问答What is the meaning of bits 31 and 30 in an SEH exception code?
I\'m trying to find out what the bits mean in an SEH exception code. I found out that bit 28 is reserved by the system for system-defined exceptions from MSDN\'s article on RaiseException. However, gi[详细]
2023-02-01 06:55 分类:问答Visual C++ Unmanaged Code: Use /EHa or /EHsc for C++ exceptions?
If I\'m creating a new project in unmanaged C++, Visual Studio 2008 or greater, which exception handling model do I want to go with?[详细]
2023-01-30 14:00 分类:问答Catching child process exceptions on windows
i\'m developing a multi-platform C++ fuzzing application. The app spawns a child process and checks whether it stopped unexpectedly. I\'ve already managed to do this on linux, however, windows excepti[详细]
2023-01-28 03:37 分类:问答Issue with exceptions being caught by Win32 message dispatcher
This is kinda a very low-level type question, but maybe someone here has some insight... I\'m having an issue where unhandled SEH exceptions (such as Access Violations) are seemingly being caught at[详细]
2023-01-21 19:51 分类:问答Imitation of hardware exceptions
Can anyone tell me a code for next function, which raise开发者_如何学编程s EXCEPTION_FLT_STACK_CHECK or EXCEPTION_BREAKPOINT, for I could catch them in main func:[详细]
2023-01-19 22:00 分类:问答