forked from 418sec/TeamPass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
otv.php
168 lines (155 loc) · 7.28 KB
/
otv.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?php
/**
* @package otv.php
* @author Nils Laumaillé <[email protected]>
* @version 2.1.27
* @copyright 2009-2019 Nils Laumaillé
* @license GNU GPL-3.0
* @link https://www.teampass.net
*
* This library 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.
*/
require_once('sources/SecureHandler.php');
if (!isset($_SESSION['CPM']) || $_SESSION['CPM'] != 1) {
die('Hacking attempt...');
}
// Load config
if (file_exists('../includes/config/tp.config.php')) {
include_once '../includes/config/tp.config.php';
} elseif (file_exists('./includes/config/tp.config.php')) {
include_once './includes/config/tp.config.php';
} else {
throw new Exception("Error file '/includes/config/tp.config.php' not exists", 1);
}
$html = "";
if (filter_var($_GET['code'], FILTER_SANITIZE_STRING) !== false
&& filter_var($_GET['stamp'], FILTER_VALIDATE_INT) !== false
) {
//Include files
require_once $SETTINGS['cpassman_dir'].'/includes/config/settings.php';
require_once $SETTINGS['cpassman_dir'].'/includes/config/include.php';
require_once $SETTINGS['cpassman_dir'].'/sources/SplClassLoader.php';
require_once $SETTINGS['cpassman_dir'].'/sources/main.functions.php';
// connect to DB
require_once $SETTINGS['cpassman_dir'].'/includes/libraries/Database/Meekrodb/db.class.php';
$pass = defuse_return_decrypted($pass);
DB::$host = $server;
DB::$user = $user;
DB::$password = $pass;
DB::$dbName = $database;
DB::$port = $port;
DB::$encoding = $encoding;
DB::$error_handler = true;
$link = mysqli_connect($server, $user, $pass, $database, $port);
$link->set_charset($encoding);
if (!isset($SETTINGS['otv_is_enabled']) || $SETTINGS['otv_is_enabled'] === "0") {
echo '<div style="padding:10px; margin:90px 30px 30px 30px; text-align:center;" class="ui-widget-content ui-state-error ui-corner-all"><i class="fa fa-warning fa-2x"></i> One-Time-View is not allowed!</div>';
}
// check session validity
$data = DB::queryfirstrow(
"SELECT id, timestamp, code, item_id FROM ".prefix_table("otv")."
WHERE code = %s",
$_GET['code']
);
if ($data['timestamp'] == intval($_GET['stamp'])) {
// otv is too old
if ($data['timestamp'] < (time() - ($SETTINGS['otv_expiration_period'] * 86400))) {
$html = "Link is too old!";
} else {
// get from DB
$dataItem = DB::queryfirstrow(
"SELECT *
FROM ".prefix_table("items")." as i
INNER JOIN ".prefix_table("log_items")." as l ON (l.id_item = i.id)
WHERE i.id = %i AND l.action = %s",
intval($data['item_id']),
'at_creation'
);
// is Item still valid regarding number of times being seen
// Decrement the number before being deleted
$dataDelete = DB::queryfirstrow(
"SELECT * FROM ".prefix_table("automatic_del")." WHERE item_id=%i",
$data['item_id']
);
if (isset($SETTINGS['enable_delete_after_consultation']) && $SETTINGS['enable_delete_after_consultation'] == 1) {
if ($dataDelete['del_enabled'] == 1) {
if ($dataDelete['del_type'] == 1 && $dataDelete['del_value'] >= 1) {
// decrease counter
DB::update(
$pre."automatic_del",
array(
'del_value' => $dataDelete['del_value'] - 1
),
"item_id = %i",
$data['item_id']
);
} elseif ($dataDelete['del_type'] == 1 && $dataDelete['del_value'] <= 1
|| $dataDelete['del_type'] == 2 && $dataDelete['del_value'] < time()
) {
// delete item
DB::delete($pre."automatic_del", "item_id = %i", $data['item_id']);
// make inactive object
DB::update(
prefix_table("items"),
array(
'inactif' => '1',
),
"id = %i",
$data['item_id']
);
// log
logItems(
$data['item_id'],
$dataItem['label'],
OTV_USER_ID,
'at_delete',
'otv',
'at_automatically_deleted'
);
echo '<div style="padding:10px; margin:90px 30px 30px 30px; text-align:center;" class="ui-widget-content ui-state-error ui-corner-all"><i class="fa fa-warning fa-2x"></i> '.
addslashes($LANG['not_allowed_to_see_pw_is_expired']).'</div>';
return false;
}
}
}
// get data
$pw = cryption($dataItem['pw'], "", "decrypt");
$label = $dataItem['label'];
$email = $dataItem['email'];
$url = $dataItem['url'];
$description = preg_replace('/(?<!\\r)\\n+(?!\\r)/', '', strip_tags($dataItem['description'], $SETTINGS_EXT['allowedTags']));
$login = str_replace('"', '"', $dataItem['login']);
// display data
$html = "<div style='margin:30px;'>".
"<div style='font-size:20px;font-weight:bold;'>Welcome to One-Time item view page.</div>".
"<div style='font-style:italic;'>Here are the details of the Item that has been shared to you</div>".
"<div style='margin-top:10px;'><table>".
"<tr><td>Label:</td><td>".$label."</td></tr>".
"<tr><td>Password:</td><td>".htmlspecialchars($pw['string'])."</td></tr>".
"<tr><td>Description:</td><td>".$description."</td></tr>".
"<tr><td>login:</td><td>".$login."</td></tr>".
"<tr><td>URL:</td><td>".$url."</td></tr>".
"</table></div>".
"<div style='margin-top:30px;'>Copy carefully the data you need. This page is only visible once.</div>".
"</div>";
// log
logItems(
$data['item_id'],
$dataItem['label'],
OTV_USER_ID,
'at_shown',
'otv'
);
// delete entry
DB::delete(prefix_table("otv"), "id = %i", $data['id']);
// display
echo $html;
}
} else {
echo '<div style="padding:10px; margin:90px 30px 30px 30px; text-align:center;" class="ui-widget-content ui-state-error ui-corner-all"><i class="fa fa-warning fa-2x"></i> Not a valid page!</div>';
}
} else {
echo '<div style="padding:10px; margin:90px 30px 30px 30px; text-align:center;" class="ui-widget-content ui-state-error ui-corner-all"><i class="fa fa-warning fa-2x"></i> No valid OTV inputs!</div>';
}