Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
You need to ask codepad.org not here. – hakre Oct 12 '12 at 21:30

closed as off topic by mario, Jack, Jocelyn, hakre, DCoder Oct 13 '12 at 5:39

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.

1 Answer

You can disable functions using the disable_functions directive in php.ini.

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 php.ini

share|improve this answer
Is this the possible way that codepad.org might be using? – AH. Oct 3 '12 at 1:18
It's very hard to tell without asking them directly (try asking!). If they are PHP-based, then its very likely they disable functions in this way. – nickhar Oct 3 '12 at 1:25

Not the answer you're looking for? Browse other questions tagged or ask your own question.