-
Notifications
You must be signed in to change notification settings - Fork 3
/
accounts_users_download.php
103 lines (67 loc) · 2.1 KB
/
accounts_users_download.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
<?php
/*
* Copyright (c) 2016-2017 Barchampas Gerasimos <http://makbox.co.nf/>
* Makbox is a personal (staas) cloud.
*
* Makbox is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
*
* Makbox 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
if(isset($_GET['id']))
{
$id = intval($_GET['id']);
if($id <= 0)
{
die('The ID is invalid!');
}
else
{
require('class_cn.php');
$obj = new in;
$host = $obj->connect[0];
$user = $obj->connect[1];
$pass = $obj->connect[2];
$db = $obj->connect[3];
$conn = new mysqli($host,$user,$pass,$db);
if($conn->connect_error)
{
die ("Cannot connect to server " .$conn->connect_error);
}
else
{
$sql= "select created,username,password,email from login where id='$id'";
$result = $conn->query($sql);
if($result)
{
$row = $result->fetch_assoc();
header("Content-Type: text/plain");
header('Content-Disposition:attachment;filename="' .$row['username'] .'"');
echo "Account for " .$row['username'] ." user " ."\n";
echo "____________________";
echo"
Created: {$row['created']}
Username: {$row['username']}
Password: {$row['password']}
Email: {$row['email']}
";
} // kleisimo ths if
else
{
echo 'Error! No data exists with that ID.';
}
}//kleisimo ths else gia ta dedoimena
}// kleisimo ths megalhs else
$conn->close();
} // kleisimo ths if isset
?>