-
Notifications
You must be signed in to change notification settings - Fork 38
/
about.php
53 lines (43 loc) · 2.39 KB
/
about.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
<?php
$menu_main = 'about';
$menu_sub = '';
include_once('php-inc/settings.php');
include_once('php-inc/header.php');
?>
<!-- **********************************************************************************************************************************************************
MAIN CONTENT
*********************************************************************************************************************************************************** -->
<!--main content start-->
<section id="main-content">
<section class="wrapper">
<div class="row">
<div class="col-lg-12 main-chart">
<div class="row mtbox">
<div class="col-md-12 col-sm-12 box0">
<div class="box1">
<h1>SQL Injection Practice Lab</h1>
<p class="box-welcome-text">This project is developed for the pentester who are learning SQL Injection, so that they can get a playground to apply their different wired concepts. Please don't use your SQL Injection skills anywhere where you don't have legal permission. Applying it on Live Websites is illegal and if you do so you have to face legal consequences.</p>
<p class="box-welcome-text">You can download the project from Github - <a href="https://github.com/himadriganguly/sqlilabs" target="_blank">https://github.com/himadriganguly/sqlilabs</a></p>
</div>
</div>
</div>
<div class="col-md-12 col-sm-12">
<div class="mnc-center">
<div class="display-data">
<h2>Credits</h2>
<hr/>
<p>Himadri Ganguly<br/>
Website - <a href="http://www.brainchamp.net" target="_blank">http://www.brainchamp.net</a><br/>
Email - brainchamp.tutor@gmail.com<br/>
</p>
</div>
</div>
</div>
</div><!-- /col-lg-9 END SECTION MIDDLE -->
</div><!--/row -->
</section>
</section>
<!--main content end-->
<?php
include_once('php-inc/footer.php');
?>