在线笔记
全部博文(596)
发布时间:2014-12-30 10:34:08
Executable Image Path1. 支持绝对路径,相对路径,2. 支持递归查找3. 支持多个路径,分号(;)分开Symbol Path1. 支持绝对路径,相对路径,2. 支持递归查找3. 支持多个路径,分号(;)分开4. 查找规则For example, if the symbol path includes the c:\MyDir directory, and the debugger is lo.........【阅读全文】
发布时间:2014-12-11 14:49:30
// test.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <Windows.h>PROCESS_INFORMATION _agentProcInfo;BOOL StartAgent(void){ STARTUPINFO startup_info; DWORD32 ret;WCHAR exe[MAX_PATH] = L"not.........【阅读全文】
发布时间:2014-11-21 10:44:52
bcdedit.exe -set loadoptions DDISABLE_INTEGRITY_CHECKS......【阅读全文】
发布时间:2014-11-04 14:33:24
1.CTRL+SHIFT+F (Find in files),2. 正则表达式,3. 搜索内容: ^:b*[^:b#/]+.*$ #开头和/开头或者空行都不计入代码量。4. 最后一行就是代码行数了。 匹配行: 8447 匹配文件: 66 合计搜索文件: 77......【阅读全文】
发布时间:2014-10-21 12:10:57
http://www.cnblogs.com/codeape/archive/2013/08/10/3250395.html#include <Windows.h>#include <stdint.h>#include <cstdio>#include <cstring>#include <string>#include <queue>typedef int8_t (__stdcall *P_WALKDIR_CAL.........【阅读全文】