<?php
if(isset($_REQUEST'ip' ])) {
    
$target trim($_REQUEST'ip' ]);
    
$substitutions = array(
        
'&'  => '',
        
';'  => '',
        
'|' => '',
        
'-'  => '',
        
'$'  => '',
        
'('  => '',
        
')'  => '',
        
'`'  => '',
        
'||' => '',
    );
    
$target str_replacearray_keys$substitutions ), $substitutions$target );
    
$cmd shell_exec'ping  -c 4 ' $target );
        echo 
$target;
    echo  
"<pre>{$cmd}</pre>";
}
show_source(__FILE__);