mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
commit
7dd80f6098
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
require('includes/csrf.php');
|
require('../../includes/csrf.php');
|
||||||
|
|
||||||
require_once '../../includes/config.php';
|
require_once '../../includes/config.php';
|
||||||
require_once RASPI_CONFIG.'/raspap.php';
|
require_once RASPI_CONFIG.'/raspap.php';
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
require('includes/csrf.php');
|
require('../../includes/csrf.php');
|
||||||
|
|
||||||
if (filter_input(INPUT_GET, 'tu') == 'h') {
|
if (filter_input(INPUT_GET, 'tu') == 'h') {
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
require('includes/csrf.php');
|
require('../../includes/csrf.php');
|
||||||
|
|
||||||
include_once('../../includes/config.php');
|
include_once('../../includes/config.php');
|
||||||
include_once('../../includes/functions.php');
|
include_once('../../includes/functions.php');
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
require('includes/csrf.php');
|
require('../../includes/csrf.php');
|
||||||
|
|
||||||
exec("ls /sys/class/net | grep -v lo", $interfaces);
|
exec("ls /sys/class/net | grep -v lo", $interfaces);
|
||||||
echo json_encode($interfaces);
|
echo json_encode($interfaces);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
require('includes/csrf.php');
|
require('../../includes/csrf.php');
|
||||||
|
|
||||||
include_once('../../includes/config.php');
|
include_once('../../includes/config.php');
|
||||||
include_once('../../includes/functions.php');
|
include_once('../../includes/functions.php');
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
require('includes/csrf.php');
|
require('../../includes/csrf.php');
|
||||||
|
|
||||||
include_once('../../includes/functions.php');
|
include_once('../../includes/functions.php');
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
require('includes/csrf.php');
|
require('../../includes/csrf.php');
|
||||||
|
|
||||||
include_once('../../includes/config.php');
|
include_once('../../includes/config.php');
|
||||||
include_once('../../includes/functions.php');
|
include_once('../../includes/functions.php');
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
include_once('includes/functions.php');
|
include_once('functions.php');
|
||||||
include_once('includes/session.php');
|
include_once('session.php');
|
||||||
|
|
||||||
if (csrfValidateRequest() && !CSRFValidate()) {
|
if (csrfValidateRequest() && !CSRFValidate()) {
|
||||||
handleInvalidCSRFToken();
|
handleInvalidCSRFToken();
|
||||||
}
|
}
|
||||||
|
|
||||||
ensureCSRFSessionToken();
|
|
||||||
header('X-CSRF-Token', $_SESSION['csrf_token']);
|
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
require('includes/csrf.php');
|
require('includes/csrf.php');
|
||||||
|
ensureCSRFSessionToken();
|
||||||
|
|
||||||
include_once('includes/config.php');
|
include_once('includes/config.php');
|
||||||
include_once(RASPI_CONFIG.'/raspap.php');
|
include_once(RASPI_CONFIG.'/raspap.php');
|
||||||
|
@ -167,14 +167,6 @@ function setCSRFTokenHeader(event, xhr, settings) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateCSRFTokens(event, xhr, settings) {
|
|
||||||
var newToken = xhr.getResponseHeader("X-CSRF-Token");
|
|
||||||
if (newToken) {
|
|
||||||
$('meta[name=csrf_token]').attr('content', newToken);
|
|
||||||
$('[name=csrf_token]:input').attr('value', newToken);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function contentLoaded() {
|
function contentLoaded() {
|
||||||
pageCurrent = window.location.href.split("?")[1].split("=")[1];
|
pageCurrent = window.location.href.split("?")[1].split("=")[1];
|
||||||
pageCurrent = pageCurrent.replace("#","");
|
pageCurrent = pageCurrent.replace("#","");
|
||||||
@ -190,5 +182,4 @@ function contentLoaded() {
|
|||||||
|
|
||||||
$(document)
|
$(document)
|
||||||
.ajaxSend(setCSRFTokenHeader)
|
.ajaxSend(setCSRFTokenHeader)
|
||||||
.ajaxComplete(updateCSRFTokens)
|
|
||||||
.ready(contentLoaded);
|
.ready(contentLoaded);
|
||||||
|
Loading…
Reference in New Issue
Block a user