XSLT存档  

不及格的程序员-八神

 查看分类:  ASP.NET XML/XSLT JavaScripT   我的MSN空间Blog

随笔分类 -  调试

WinDBG Preview 版脚本,查看所有线程栈
该文被密码保护。
posted @ 2023-02-06 23:40 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
Debugger data model, Javascript & x64 exception handling
摘要:Debugger data model, Javascript & x64 exception handling Date Fri 01 December 2017 By Axel "0vercl0k" Souchet Category debugging Tags debugging javasc 阅读全文
posted @ 2023-02-06 23:37 不及格的程序员-八神 阅读(49) 评论(0) 推荐(0)
WinDbg Cheatsheet
摘要:WinDbg cheatsheet Did you know you can mark things in WinDbg in different colors to keep track of repeated values? I find it super useful when debuggi 阅读全文
posted @ 2023-02-06 23:35 不及格的程序员-八神 阅读(318) 评论(0) 推荐(1)
Looking at the finalization queue
摘要:Learn Blog Archive ASP.NET Debugging ASP.NET Tips: Looking at the finalization queue 2008/04/28 3 分钟可看完 So in a previous post, we talked about Underst 阅读全文
posted @ 2023-02-06 11:01 不及格的程序员-八神 阅读(25) 评论(0) 推荐(0)
.Net程序内存分析命令序列
该文被密码保护。
posted @ 2023-02-04 18:46 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
x64协定与 栈回溯原理(PE32+)
摘要:x64 调用约定 本部分介绍 x64 代码中一个函数(调用方)调用另一个函数(被调用方)的标准流程和约定。 调用约定默认值默认情况下,x64 应用程序二进制接口 (ABI) 使用四寄存器 fast-call 调用约定。 系统在调用堆栈上分配空间作为影子存储,供被调用方保存这些寄存器。 函数调用的参数 阅读全文
posted @ 2023-02-04 16:05 不及格的程序员-八神 阅读(874) 评论(0) 推荐(0)
WinDbg查看DataTable 列字段与行值 (支持Windbg脚本)
该文被密码保护。
posted @ 2023-02-03 13:01 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
Challenges of Debugging Optimized x64 Code
摘要:Learn Blog Archive Ntdebugging Blog 使用英语阅读保存 Challenges of Debugging Optimized x64 Code 项目 2009/01/09 23 分钟可看完 If you have not had the luxury of debug 阅读全文
posted @ 2023-02-02 22:55 不及格的程序员-八神 阅读(29) 评论(0) 推荐(0)
What does kb show for 64 bit processes?
摘要:Home Space What does kb show for 64 bit processes? I have recently made a mistake analyzing a callstack, because I didn't expect the application to be 阅读全文
posted @ 2023-02-02 11:03 不及格的程序员-八神 阅读(21) 评论(0) 推荐(0)
Enabling Postmortem Debugging
摘要:Enabling Postmortem Debugging User Mode Exception Handling Exceptions and Breakpoints The most common application errors are called exceptions. These 阅读全文
posted @ 2023-02-02 10:24 不及格的程序员-八神 阅读(134) 评论(0) 推荐(0)
Viewing the Call Stack in WinDbg, And FPO
摘要:Viewing the Call Stack in WinDbg The call stack is the chain of function calls that have led to the current location of the program counter. The top f 阅读全文
posted @ 2023-02-02 10:19 不及格的程序员-八神 阅读(124) 评论(0) 推荐(0)
深入理解Windows X64调试
摘要:void func(int Param1, int Param2) { int var1, var2; // stack memory layout at this point // [RSP] = var1 (DWORD) // [RSP+0x4] = var2 (DWORD) // [RSP+0 阅读全文
posted @ 2023-02-01 23:23 不及格的程序员-八神 阅读(521) 评论(0) 推荐(0)
Windbg finalizequeue
摘要:Pick a few and find out where they are rooted (i.e. why they can’t be collected) Note: You may want to try a couple different ones. !gcroot <address o 阅读全文
posted @ 2023-02-01 22:19 不及格的程序员-八神 阅读(99) 评论(0) 推荐(0)
Windbg 调试 TerminateThread 死锁
该文被密码保护。
posted @ 2023-02-01 15:17 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
Windbg wt命令
该文被密码保护。
posted @ 2023-02-01 11:57 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
procdump实现技术分析
该文被密码保护。
posted @ 2023-01-31 09:51 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
Visual Studio 的隐藏变量
摘要:$exception {"未能解析此远程名称: 'yxenskfsev.bosdsoft.com'"} Data: {System.Collections.ListDictionaryInternal} HResult: -2146233079 HelpLink: null IPForWatsonB 阅读全文
posted @ 2023-01-30 14:35 不及格的程序员-八神 阅读(39) 评论(0) 推荐(0)
基于异常的反调试实践
该文被密码保护。
posted @ 2023-01-29 23:42 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
CLR垃圾回收和性能
摘要:工作站和服务器垃圾回收 2022/09/22 垃圾回收器可自行优化并且适用于多种方案。 不过,你可以基于工作负载的特征设置垃圾回收的类型。 CLR 提供了以下类型的垃圾回收: 工作站垃圾回收 (GC) 是为客户端应用设计的。 它是独立应用的默认 GC 风格。 对于托管应用(例如由 ASP.NET 托 阅读全文
posted @ 2023-01-29 13:56 不及格的程序员-八神 阅读(109) 评论(0) 推荐(0)
ASP.NET程序内存碎片 (XML Serial)
该文被密码保护。
posted @ 2023-01-29 12:58 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)