diff --git a/front/php/server/nslookup.php b/front/php/server/nslookup.php new file mode 100644 index 00000000..0a554813 --- /dev/null +++ b/front/php/server/nslookup.php @@ -0,0 +1,40 @@ +"; + echo $output; + echo ""; + exit; +} + +// Test with the "nslookup" command +$output = shell_exec("nslookup $ip"); + +// Show the result +echo "
"; +echo $output; +echo ""; + +?>