%FORCE_IP%
parent
9f9877b8b4
commit
58f97c8d49
|
@ -10,6 +10,8 @@ echo "Deployment script for repository \"web-deployment\"
|
|||
=============================================================================="
|
||||
|
||||
rewrite_code %CONTENT_DIR% "\/common\/threadr"
|
||||
rewrite_code %ENFORCE_IP% `cat enforce_ip.template`
|
||||
|
||||
|
||||
echo "==============================================================================
|
||||
Done."
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
if ($_SESSION['user_ip']!=$_SERVER['REMOTE_ADDR']){
|
||||
// force logout
|
||||
$_SESSION = array();
|
||||
if (ini_get("session.use_cookies")) {
|
||||
$params = session_get_cookie_params();
|
||||
setcookie(session_name(), '', time() - 42000, $params["path"], $params["domain"], $params["secure"], $params["httponly"]);
|
||||
}
|
||||
session_destroy();
|
||||
header("Location: https://lostcave.ddnss.de/common/threadr/login/?error=session");
|
||||
die();
|
||||
}
|
||||
|
|
@ -1,17 +1,7 @@
|
|||
<?php
|
||||
session_start();
|
||||
//Todo: make this a setting for users that use VPNs/Proxies and seem to jump around the world rather quickly...
|
||||
if ($_SESSION['user_ip']!=$_SERVER['REMOTE_ADDR']){
|
||||
// force logout
|
||||
$_SESSION = array();
|
||||
if (ini_get("session.use_cookies")) {
|
||||
$params = session_get_cookie_params();
|
||||
setcookie(session_name(), '', time() - 42000, $params["path"], $params["domain"], $params["secure"], $params["httponly"]);
|
||||
}
|
||||
session_destroy();
|
||||
header("Location: https://lostcave.ddnss.de/common/threadr/login/?error=session");
|
||||
die();
|
||||
}
|
||||
%ENFORCE_IP%
|
||||
|
||||
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
||||
$statement = $pdo->prepare('SELECT name FROM users WHERE id = :user_id;'); // to be replaced with optional user name off the user data table
|
||||
|
|
Loading…
Reference in New Issue