-
在MFC中实现内存诊断,内存泄漏检测,转存内存状态统计等功能...
在MFC中实现内存诊断,内存泄漏检测,转存内存状态统计等功能-in MFC diagnosis of memory, the memory leak detection and memory transfers state statistical functions
- 2022-02-11 20:22:53下载
- 积分:1
-
详细代码,一个简单的移动代码,很实用的
VC++深入详解code,简单移动,并且很实用-VC++ Depth detailed code, a simple mobile, and very practical
- 2023-07-23 17:35:04下载
- 积分:1
-
Windows98下直接访问物理内存(带部分源代码)
Windows98下直接访问物理内存(带部分源代码)-Windows98 direct access to physical memory (with source code)
- 2022-11-21 04:55:03下载
- 积分:1
-
加密输入表
这是我在学习PE文件的时候 写的一个 加密输入表的 代码
本人 最近想写一个反汇编引擎 但是总是没法成功 希望懂的人能联系Q997806506
- 2022-01-25 16:51:48下载
- 积分:1
-
labview的源代码,用于获得CPU的序列号,对于软件的安全设计意义重大。实际应用如:自己设计的软件别人使用时,可采用机器序列号唯一对应的授权号,这样可以避免...
labview的源代码,用于获得CPU的序列号,对于软件的安全设计意义重大。实际应用如:自己设计的软件别人使用时,可采用机器序列号唯一对应的授权号,这样可以避免自己的劳动成果被别人占有-PC source code for access to the CPU serial number, software for the safety design of great significance. Practical applications such as : their design software used by others, we can use machines, the only sequence corresponding to the authorization, This will avoid the fruits of their own labor occupied by others
- 2022-02-05 11:03:34下载
- 积分:1
-
不需要DLL,实现3级跳转,网上资源,大家下载
不需要DLL,实现3级跳转,网上资源,大家下载-Does not require DLL, the realization of 3 Jump, online resources, download the U.S.
- 2023-06-11 19:05:04下载
- 积分:1
-
将指定的汉字转为汉语拼音的代码,非常方便
将指定的汉字转为汉语拼音的代码,非常方便-Will be designated by the code of Chinese characters to Pinyin, a very convenient
- 2022-06-29 09:55:41下载
- 积分:1
-
一个可以对系统进行调用的API库,配合w2k_lib和w2k_spy使用效果非常不错!...
一个可以对系统进行调用的API库,配合w2k_lib和w2k_spy使用效果非常不错!
- 2022-02-26 10:24:02下载
- 积分:1
-
Windows NT/2000中以用户系统级安全上下文方式创建进程的源代码...
Windows NT/2000中以用户系统级安全上下文方式创建进程的源代码-Windows NT/2000 users to system-level security context means the process of creating the source code
- 2022-11-02 03:55:05下载
- 积分:1
-
Windows 中创建空的备用列表
翻译:maninwest@Codeforge 作者:Member 10018957 @CodeProject如何在 Windows 中创建看空的备用列表。进程黑_客的制造者了解 Windows 内核的里里外外,他们也幸运地熟练掌握 Windows 内核的设计语言C++。而其他的人则努力通过 C# 执行相似的功能。其中一个功能就是释放来自 windows 备用内存的内存。这就是我们在此要做的。最难的部分是获取内核的优先权限。感谢Nick Lowe:http://processprivileges.codeplex.com/步骤1:设置内核优先权限Microsoft 设计了可以获取包含结构数组的结构的 API。没有适用于此的编组过程的捷径。要么假设数组是 length=1 要么要求数组大小在编译时预先确定。为此,我设计了一个类,它通过 System.IntPtr拥有微软在未管理的内存中需要的确切结构。当前,我不得不采用不安全的步骤,但是我确定,将来会有办法绕过。[return: MarshalAs(UnmanagedType.Bool)]
[SuppressUnmanagedCodeSecurity, DllImport("advapi32.dll", SetLastError = true)] internal static extern bool AdjustTokenPrivileges(AccessTokenHandle accessTokenHandle,
[MarshalAs(UnmanagedType.Bool)] bool disableAllPrivileges, IntPtr NewPriviledges, Int32 bufferLength, ref IntPtr PriorPriviledges, out Int32 returnLength); 将我的类和 Nick Lowe 的优先代码相结合,我们可以设置内核优先权限:
- 2022-05-07 13:17:48下载
- 积分:1