forked from xsuperbug/g0yg0y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqli6.php
55 lines (44 loc) · 858 Bytes
/
sqli6.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 users WHERE id=$id";
$result=mysqli_query($link,$sql) or die("oops");
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>Sql Injection 106</h1>
<br>
<div class="well">
<div class="table-responsive">
<table class="table">
<tbody>
<tr class="active">
<th scope="row">Username:</th>
<td>
<?php
while($rows = mysqli_fetch_array($result)){
echo $rows['username'];
}
?>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<br>
<!-- /4 -->
</div>
<!-- /3 -->
</div>
<!-- /2 -->
</div>
<?php include 'alt.php'; ?>