raspap-webgui-mirror/includes/session.php
glaszig da69d3d768 send CSRF token in a response header,
update the page's CSRF tokens with the new token
from the response header,
verify csrf token in ajax endpoints,
initialize a session for every endpoint
2019-08-06 21:34:58 +02:00

6 lines
72 B
PHP

<?php
if (session_status() == PHP_SESSION_NONE) {
session_start();
}