-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.php
48 lines (37 loc) · 1.32 KB
/
settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/*
OWASP ASVS Assessment Tool (OWAAT)
Copyright (C) 2014 Mahmoud Ghorbanzadeh <mdgh (a) aut.ac.ir>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
error_reporting(0);
ini_set('session.use_cookies', '1');
ini_set('session.use_only_cookies', '1');
ini_set('session.use_trans_sid', '0');
ini_set('session.cookie_httponly', '1');
$pos = strrpos($_SERVER['SCRIPT_NAME'], "/");
$path = substr($_SERVER['SCRIPT_NAME'], 0, $pos + 1);
ini_set('session.cookie_path', $path);
ini_set('session.name', 'ASVS_Tool');
header_remove("X-Powered-By");
session_start();
if(isset($_SESSION['user']))
{
if( $_SESSION['activity_time'] < (time() - 2*60*60) )
{
session_unset();
session_destroy();
}
else
$_SESSION['activity_time'] = time();
}
?>