forked from xsuperbug/g0yg0y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcinj.php
54 lines (40 loc) · 1 KB
/
cinj.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
<?php
if(isset($_POST['submit'])) {
$ok="<div class='alert alert-success' role='alert'>The operation was completed successfully</div>";
}
include 'ust.php';
?>
<?php echo (!empty($ok) ? $ok : ""); ?>
<!-- 1 -->
<div id="page-content-wrapper">
<!-- 2 -->
<div class="container-fluid">
<!-- 3 -->
<div class="row">
<!-- 4 -->
<div class="col-lg-6">
<h1>Command Injection 101</h1>
<div class="well">
<form action="cinj.php" method="POST">
<div class="form-group">
<label for="exampleInputEmail1">IP/Hostname:</label>
<input name="komut" class="form-control" id="exampleInputEmail1" placeholder="">
</div>
<button type="submit" name="submit" class="btn btn-default">Submit</button>
</form>
</div>
<br>
<?php
$komut = @$_REQUEST['komut'];
$cmd = shell_exec( 'ping -c 3 ' . $komut );
echo '<pre>'.$cmd.'</pre>';
?>
<br>
<a href="#">Click to move to the next stage</a>
<!-- /4 -->
</div>
<!-- /3 -->
</div>
<!-- /2 -->
</div>
<?php include 'alt.php'; ?>