What is the best practice for writing Registry calls/File Sytem calls/Process creation filter for WinXP, Vista? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T10:33:29Zhttp://stackoverflow.com/feeds/question/54504http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/54504/what-is-the-best-practice-for-writing-registry-calls-file-sytem-calls-process-cre0What is the best practice for writing Registry calls/File Sytem calls/Process creation filter for WinXP, Vista?Omega2008-09-10T15:56:38Z2008-09-10T16:36:55Z
<p>We needed to monitor all processes Registry calls/File Sytem calls/Process creations in the system (for the antivirus hips module) .</p>
<p>Also time by time it will be needed to delay some calls or decline them.</p>
http://stackoverflow.com/questions/54504/what-is-the-best-practice-for-writing-registry-calls-file-sytem-calls-process-cre/54601#546011Answer by Peter Ritchie for What is the best practice for writing Registry calls/File Sytem calls/Process creation filter for WinXP, Vista?Peter Ritchie2008-09-10T16:36:55Z2008-09-10T16:36:55Z<p>The supported method of doing this is <a href="http://msdn.microsoft.com/en-us/library/ms724892.aspx" rel="nofollow">RegNotifyChangeKeyValue</a></p>
<p>Most virus checkers likely perform some sort of API hooking instead of using this function. There's lots of information out there about API hooking, like <a href="http://www.codeproject.com/KB/system/hooksys.aspx" rel="nofollow">http://www.codeproject.com/KB/system/hooksys.aspx</a>, <a href="http://www.codeguru.com/cpp/w-p/system/misc/article.php/c5667" rel="nofollow">http://www.codeguru.com/cpp/w-p/system/misc/article.php/c5667</a></p>