1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2025-05-23 07:11:35 +02:00
RaspAP/ajax/networking/get_all_interfaces.php

10 lines
268 B
PHP

<?php
require '../../includes/csrf.php';
require_once '../../includes/config.php';
require_once '../../src/RaspAP/Auth/HTTPAuth.php';
require_once '../../includes/authenticate.php';
exec("ls /sys/class/net | grep -v lo", $interfaces);
echo json_encode($interfaces);