-
Notifications
You must be signed in to change notification settings - Fork 38
/
index.php
47 lines (38 loc) · 2.23 KB
/
index.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
<?php
$menu_main = 'welcome';
$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>Welcome To SQL Injection Practice Lab</h1>
<p class="box-welcome-text">Here you can practice different types of <b class="custom-color-magento">SQL Injection</b> and develop your skills better to do <b class="custom-color-magento">Ethical Pentesting</b></p>
<p class="box-welcome-text">Please do don't use SQL Injection Techniques anywhere where you don't have legal permission.<br/>If you do this you will definitely get caught and have to face the consequesces.</p>
<h2>Steps To Setup The Practice Labs</h2>
<ol class="box-welcome-text">
<li>Click on the Setup > Configuration</li>
<li>Set the Database connection details and the Web Root path and create the files</li>
<li>Then Click on Create/Restore Database and click on Create/Restore Database button to create the database</li>
<li>Now you can start experimenting with the Examples</li>
</ol>
</div>
</div>
</div>
</div><!-- /col-lg-9 END SECTION MIDDLE -->
</div><!--/row -->
</section>
</section>
<!--main content end-->
<?php
include_once('php-inc/footer.php');
?>