'Windows 10 defender detects Backdoor:PHP/Dirtelti.MTF for php file
I am running wamp with Windows 10 and I have a simple example code that uses eval function:
<?php
echo eval(file_get_contents('test2.php'));
Windows defender shows this as a threat. Backdoor:PHP/Dirtelti.MTF Details:This program provides remote access to the computer it is installed on.
I am wondering if the problem is just that the file uses eval function and Windows gives false positive or could be some real infection with Dirtelti.MTF (I have no idea what Dirtelti.MTF is). Could Dirtelti.MTF be actually a virus that is triggered when function eval is called within php file? I am scared to allow this.
Solution 1:[1]
Eval is not necesary, you can get results via API.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Darwin |