forked from xsuperbug/g0yg0y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidor1.php
55 lines (44 loc) · 971 Bytes
/
idor1.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
<?php
include 'vulnconf.php';
$id = $_GET['id'];
$sql="SELECT * FROM cargo WHERE no=$id";
$result=mysqli_query($link,$sql);
include 'ust.php';
?>
<!-- 1 -->
<div id="page-content-wrapper">
<!-- 2 -->
<div class="container-fluid">
<!-- 3 -->
<div class="row">
<!-- 4 -->
<div class="col-lg-6">
<h1>IDOR 101</h1>
<br><br>
<div class="well">
<h4>Track Your Shipment:</h5>
<hr>
<form action="idor1.php" method="GET">
<div class="form-group">
<label for="exampleInputEmail1">Tracking Number:</label>
<input name="id" class="form-control" id="exampleInputEmail1" placeholder="">
</div>
<button type="submit" name="submit" class="btn btn-default">Search</button>
</form>
</div>
<div class="well">
<h4>Results :</h5>
<hr>
<?php
while($rows = mysqli_fetch_array($result)){
echo $rows['status'];
}
?>
</div>
<!-- /4 -->
</div>
<!-- /3 -->
</div>
<!-- /2 -->
</div>
<?php include 'alt.php'; ?>