文件过滤驱动是否能在系统启动的时候创建读写自己的日志文件(Does the file filter driver create, read, and write your own log files when the system is started).docVIP
- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
文件过滤驱动是否能在系统启动的时候创建读写自己的日志文件(Does the file filter driver create, read, and write your own log files when the system is started) If you can create a file filter driver to read and write their log files in the system starts when?% in both hands, need a complete example. If you can create a file filter driver to read and write their log files in the system startup, such as interception IRP_MJ_CREATE, when the system calls KERNEL32.dll when entering my MyCreate function, this time I will write to the log file name, this time will be a blue screen and automatically reboot, who knows why? How to solve this problem? [b]% in both hands, need to complete example. [/b][email]filter@redsec.org[/email] Note: when the boot is done, that is, when you display the desktop, read and write log files, operation is normal, read and write operations ZwCreateFile, ZwWriteFile, ZwReadFile function completed. The drive startup type is start:0 ========================= Typedef, struct, _FILELIST { TCHAR szFullPathName[PATH_LEN + 1]; LIST_ENTRY FileListNext; }FILELIST, *PFILELIST; Typedef, struct, _GLOBALS_FILELIST_INFO { HANDLE g_FileListHandle; PVOID g_ThreadObject; BOOLEAN g_ThreadShouldStop; KEVENT g_FileListEvent; LIST_ENTRY g_FileListHead; KSPIN_LOCK g_FileListSpinLock; }GLOBALS_FILELIST_INFO, *PGLOBALS_FILELIST_INFO; Static GLOBALS_FILELIST_INFO g_FileList_Info; VOID FileListThread (IN, PVOID, Context) { ULONG uWriteSize = PATH_LEN * sizeof (TCHAR); PLIST_ENTRY ListEntry = NULL; PFILELIST pFileListNode = NULL; IO_STATUS_BLOCK IoStatusBlock; PGLOBALS_FILELIST_INFO pFileListInfo = (PGLOBALS_FILELIST_INFO) Context; KeSetPriorityThread ( KeGetCurrentThread (), LOW_REALTIME_PRIORITY); While (TRUE) { KeWaitForSingleObject ( pFileListInfo-g_FileListEvent, Executive, KernelMode, FALSE, NULL); While (ListEntry = ExInterlockedRemoveHeadList) pFileListInfo-g_FileListHead, pFileListInfo-g_FileListSpinLock) { PFileListNode = (PFILELIST) CONTAINING_RECORD (ListEntry, FILELIST, FileListNext); ZwWrit
您可能关注的文档
- 13.扫描仪故障(13. scanner failure).doc
- 13春学期《冶金学(二)》在线作业3(13 spring semester metallurgy (two) online homework 3).doc
- 13道路交通安全法律、法规和规章(13 road traffic safety laws, regulations and regulations).doc
- 14.数理推算(14. mathematical deduction).doc
- 14ghvh(14ghvh).doc
- 15春福师《管理会计》在线作业二满分答案(15 spring Fu division management accounting online homework two full answer).doc
- 15《骆驼和羊》(15 camels and sheep).doc
- 15春西交《测量学》在线作业满分答案(15, spring West to pay Surveying online homework, out of the answer).doc
- 15春西交《弹性力学》在线作业满分答案(15, spring West to elastic mechanics online homework, out of the answer).doc
- 15春西交《工程材料基础》在线作业 满分答案(15, spring West to engineering materials foundation online homework, out of the answer).doc
- 文件绿了试破解(File green, try crack).doc
- 文件系统变成了RAW格式的解决办法(The file system has become a solution in the RAW format).doc
- 文明社会的结构特征(十九)乾坤草(The structural features of civilized society (nineteen)).doc
- 文学作家(Literary writer).doc
- 文章系统自动与手动分页方法的实现(The implementation of automatic and manual paging system).doc
- 文字格式转换(Text format conversion).doc
- 我成长我快乐演讲稿(I grew up, I made a happy speech).doc
- 我的钢铁网之成功分析(Success analysis of my steel net).doc
- 我的寒假生活(My winter vacation).doc
- 文化育人十六年永不停息的办学追求(Cultural Education sixteen years of never-ending pursuit of Education).doc
文档评论(0)