Visual Studio 2005
Kuling, wt., 2010-08-10 12:28
Cytat:
https://media.blackhat.com/bh-us-10/presentations/olleb/BlackHat-USA-2010-olleb-Hardening-Windows-Applications-slides.pdf http://www.blackhat.com/html/bh-us-10/bh-us-10-archives.html Microsoft has implemented lots of useful functionality in Windows that they use in their own products. Many of these features can be used to enhance the security of third party applications, but not many developers or software architects know about them. This talk will detail some of the technical underpinnings of Windows features like UAC, IE protected mode and Terminal Serivces and show how they can be used to defend your own software from attack.
Kuling, wt., 2010-06-01 09:15
Świetny tutorial. Polecam.
http://www.cprogramming.com/tutorial/visual_studio_remote_debugging.html
- Kuling's blog
- Odpowiedz
- 31 odsłon
Kategorie:
Kuling, wt., 2009-12-22 21:17
- Kuling's blog
- Odpowiedz
- 101 odsłon
Kategorie:
Kuling, wt., 2009-12-22 19:33
Cytat:
$vframe tells you the 'virtual frame pointer'. This is the memory address where you can find the stack frame. If the function has a true stack frame, memory will be layed out like the below table. $vframe is extremely helpful when retail debugging because it tells you where about on the stack to look for your local variables.
http://blogs.msdn.com/greggm/archive/2004/12/15/315673.aspx
Cytat:
The 32-bit x86 calling conventions
http://blogs.msdn.com/oldnewthing/archive/2004/01/08/48616.aspx
Cytat:
http://msdn.microsoft.com/en-us/library/aa235596%28VS.60%29.aspxThe following example shows the results of making a function call using various calling conventions. This example is based on the following function skeleton.
void MyFunc(char c, short s, int i, double f)
MyFunc ('x', 12, 8192, 2.7183);
Nice callstack frame.
http://blogs.msdn.com/oldnewthing/archive/2004/01/16/59415.aspx
- Kuling's blog
- Odpowiedz
- 95 odsłon
Kategorie:
Kuling, pon., 2009-06-15 20:27
- Kuling's blog
- Odpowiedz
- 138 odsłon
Kategorie:
Kuling, czw., 2009-05-28 20:11
- Kuling's blog
- Odpowiedz
- 140 odsłon
Kuling, czw., 2009-05-28 20:10
- Kuling's blog
- Odpowiedz
- 144 odsłony
Kuling, pon., 2009-05-25 08:43
HANDLE hLogFile;
hLogFile = CreateFile("c:\\log.txt", GENERIC_WRITE,
FILE_SHARE_WRITE, NULL, CREATE_ALWAYS,
FILE_ATTRIBUTE_NORMAL, NULL);
_CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_ASSERT, hLogFile);
- Kuling's blog
- Odpowiedz
- 159 odsłon
Kuling, pt., 2009-05-22 16:52
http://msdn.microsoft.com/en-us/magazine/cc164040.aspx
RTL_CRITICAL_SECTION
RTL_CRITICAL_SECTION_DEBUG
- Kuling's blog
- Odpowiedz
- 150 odsłon
- 1
- 2
- 3
- 4
- 5
- następna ›
- ostatnia »
