Today one of my friends @RakeshMane10 gave me a challenge which I found pretty interesting.
[code language=”php”]
<?php
ini_set(‘error_displays’, 0);
 $ip = htmlspecialchars($_GET[‘url’], ENT_QUOTES);
 $f = fsockopen($ip, 80, $errno, $errstr, 5);
 if($f) {
 	$result = shell_exec(‘ping -c 1 ‘ . $ip);
 	echo ‘<div class="alert alert-success">’ . nl2br($result) . ‘</div>’;
} else {
 	echo ‘<div class="alert alert-danger">’ .$errstr . ‘</div>’;
 }
?>
[/code]
 (more…)
