Forums
New posts
Search forums
News
Security News
Technology News
Giveaways
Giveaways, Promotions and Contests
Discounts & Deals
Reviews
Users Reviews
Video Reviews
Support
Windows Malware Removal Help & Support
Inactive Support Threads
Mac Malware Removal Help & Support
Mobile Malware Removal Help & Support
Blog
Log in
Register
What's new
Search
Search titles only
By:
Search titles only
By:
Reply to thread
Menu
Install the app
Install
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Forums
Security
General Security Discussions
Default Deny VS traditional AVs
Message
<blockquote data-quote="JM Safe" data-source="post: 759173" data-attributes="member: 35684"><p>Your post is not totally correct. When a new file is downloaded or modified, etc. There are different events: creation, modify, deletion, etc. AVs could have some methods (pieces of source code) that can handle each of those events. So AVs monitor each new files on the OS and a well written product should skip by default system files (but verifying that they aren't false system files, so malware hidden in critical folders such as [CODE]AppData, Win32, etc.[/CODE]</p><p>A monitor could be done like this (it is only an example):</p><p></p><p>[CODE]public bool creationEvent()</p><p>{</p><p>string filePath=component.getEventFullPath();</p><p>bool b = scan(filePath);</p><p>return b;</p><p>}[/CODE]</p><p>So yes an AV well developed monitors all files.</p></blockquote><p></p>
[QUOTE="JM Safe, post: 759173, member: 35684"] Your post is not totally correct. When a new file is downloaded or modified, etc. There are different events: creation, modify, deletion, etc. AVs could have some methods (pieces of source code) that can handle each of those events. So AVs monitor each new files on the OS and a well written product should skip by default system files (but verifying that they aren't false system files, so malware hidden in critical folders such as [CODE]AppData, Win32, etc.[/CODE] A monitor could be done like this (it is only an example): [CODE]public bool creationEvent() { string filePath=component.getEventFullPath(); bool b = scan(filePath); return b; }[/CODE] So yes an AV well developed monitors all files. [/QUOTE]
Insert quotes…
Verification
Post reply
Top