mirror of
				https://github.com/billz/raspap-webgui.git
				synced 2025-03-01 10:31:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			679 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			679 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
require '../../includes/csrf.php';
 | 
						|
require_once '../../includes/session.php';
 | 
						|
require_once '../../includes/functions.php';
 | 
						|
require_once '../../includes/config.php';
 | 
						|
require_once '../../src/RaspAP/Auth/HTTPAuth.php';
 | 
						|
require_once '../../includes/authenticate.php';
 | 
						|
 | 
						|
if (isset($_POST['interface'])) {
 | 
						|
    $int = preg_replace('/[^a-z0-9]/', '', $_POST['interface']);
 | 
						|
    exec('ip a s '.$int, $intOutput, $intResult);
 | 
						|
    $intOutput = array_map('htmlentities', $intOutput);
 | 
						|
    $jsonData = ['return'=>$intResult,'output'=>$intOutput];
 | 
						|
    echo json_encode($jsonData);
 | 
						|
} else {
 | 
						|
    $jsonData = ['return'=>2,'output'=>['Error getting data']];
 | 
						|
    echo json_encode($jsonData);
 | 
						|
}
 |