How do they detect codes that can run maliciously on their server like
<?php
unlink("/*");
?>
Are they using any virtualization like method or they disables particular functions from running?
|
How do they detect codes that can run maliciously on their server like
Are they using any virtualization like method or they disables particular functions from running? |
|||
|
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
You can disable functions using the disable_functions directive in Hosting providers often remove potentially dangerous functions by default in shared hosting environments, but they are entirely configurable if you have your own server and access to |
|||