diff --git a/front/deviceDetails.php b/front/deviceDetails.php index 202a03e3..fd54144b 100644 --- a/front/deviceDetails.php +++ b/front/deviceDetails.php @@ -436,13 +436,19 @@
- + + +
diff --git a/front/devices.php b/front/devices.php index 0e8bfbc5..664061dc 100644 --- a/front/devices.php +++ b/front/devices.php @@ -222,7 +222,7 @@ function initializeDatatable () { // Device Name {targets: [0], 'createdCell': function (td, cellData, rowData, row, col) { - $(td).html (''+ cellData +''); + $(td).html (''+ cellData +''); } }, // Favorite diff --git a/front/php/server/nmap_scan.php b/front/php/server/nmap_scan.php index f9257d12..074198a3 100644 --- a/front/php/server/nmap_scan.php +++ b/front/php/server/nmap_scan.php @@ -2,6 +2,7 @@ $PIA_HOST_IP = $_REQUEST['scan']; exec('nmap '.$PIA_HOST_IP, $output); +echo 'Scan Results of the target: '.$PIA_HOST_IP; echo '
'; 
 foreach($output as $line){
     echo $line . "\n";