-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
137 lines (112 loc) · 2.56 KB
/
index.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
<?php
session_start();
include('config.php');
// si l'utilisateur est connecté
if($_SESSION['user'] != $user AND $_SESSION['mdp'] != $mdp)
{
echo '<script type="text/javascript">document.location.href="connexion.php"</script>';
exit;
}
?>
<html>
<head>
<title>PHP2Shell</title>
<link rel="shortcut icon" href="terminal.png" />
<style type="text/css">
*
{
margin: 0px;
padding: 0px;
}
body, input {
background:black;
font-family: FreeMono,monospace;
font-size: 12px;
color: grey;
}
body
{
padding:20px;
}
form
{
display:inline-block;
width:100% !important;
}
input
{
background: transparent;
color:white !important;
border: none !important;
box-shadow:none !important;
width:100% !important;
}
</style>
</head>
<body>
<pre id="pre"></pre><pre>$ <form id='formulaire' method='post' action='term.php' ><input type="text" name="command" id="command" /></form></pre>
<script type="text/javascript">
function post_to_url(path, params, method)
{
method = method || "post";
var oMyForm = new FormData();
for (var k in params)
{
if (typeof params[k] !== 'function')
{
oMyForm.append(k, params[k]);
}
}
var oReq = new XMLHttpRequest();
oReq.open(method, path, false);
oReq.send(oMyForm);
return oReq.responseText;
}
var url_execute = 'term.php';
var chemin = '';
var command = document.getElementById("command");
var pre = document.getElementById("pre");
var formulaire = document.getElementById('formulaire');
formulaire.addEventListener('submit', function(event)
{
event.preventDefault();
switch(command.value)
{
case '':
return false;
case 'clear':
pre.innerHTML = '';
command.value='';
return false;
case 'exit':
document.location.href="connexion.php?deco=1";
return false;
case 'top':
var retour = post_to_url(url_execute, {'command':'top -b -n 1'}, 'post');
break;
case 'df':
var retour = post_to_url(url_execute, {'command':'df -kTh'}, 'post');
break;
default:
var retour = post_to_url(url_execute, {'command':chemin+command.value}, 'post');
break;
}
if(command.value.search('cd') == 0)
{
if(command.value.search('cd /') == 0 || command.value.search('cd ~') == 0)
{
chemin += command.value+';';
}
else
{
chemin += command.value+';';
}
}
pre.innerHTML = pre.innerHTML+'$ '+command.value+'<br>'+retour;
command.value='';
return false;
}, false);
command.focus();
</script>
</body>
</html>