-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsql-injection.php
executable file
·360 lines (324 loc) · 12.8 KB
/
sql-injection.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<?php
require("core.php");
head();
if (isset($_POST['save2'])) {
$table = $prefix . 'sqli-settings';
if (isset($_POST['protection2'])) {
$protection2 = 1;
} else {
$protection2 = 0;
}
if (isset($_POST['protection3'])) {
$protection3 = 1;
} else {
$protection3 = 0;
}
if (isset($_POST['protection4'])) {
$protection4 = 1;
} else {
$protection4 = 0;
}
if (isset($_POST['protection5'])) {
$protection5 = 1;
} else {
$protection5 = 0;
}
if (isset($_POST['protection6'])) {
$protection6 = 1;
} else {
$protection6 = 0;
}
if (isset($_POST['protection7'])) {
$protection7 = 1;
} else {
$protection7 = 0;
}
if (isset($_POST['protection8'])) {
$protection8 = 1;
} else {
$protection8 = 0;
}
$query = $mysqli->query("UPDATE `$table` SET protection2='$protection2', protection3='$protection3', protection4='$protection4', protection5='$protection5', protection5='$protection5', protection6='$protection6', protection7='$protection7', protection8='$protection8' WHERE id=1");
}
if (isset($_POST['save'])) {
$table = $prefix . 'sqli-settings';
if (isset($_POST['protection'])) {
$protection = 1;
} else {
$protection = 0;
}
if (isset($_POST['logging'])) {
$logging = 1;
} else {
$logging = 0;
}
if (isset($_POST['autoban'])) {
$autoban = 1;
} else {
$autoban = 0;
}
if (isset($_POST['mail'])) {
$mail = 1;
} else {
$mail = 0;
}
$redirect = $_POST['redirect'];
$query = $mysqli->query("UPDATE `$table` SET protection='$protection', logging='$logging', autoban='$autoban', mail='$mail', redirect='$redirect' WHERE id=1");
}
?>
<div class="content-wrapper">
<!--CONTENT CONTAINER-->
<!--===================================================-->
<div class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1 class="m-0 text-dark"><i class="fas fa-code"></i> Security Module</h1>
</div>
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item"><a href="dashboard.php"><i class="fas fa-home"></i> Admin Panel</a></li>
<li class="breadcrumb-item active">Security Module</li>
</ol>
</div>
</div>
</div>
</div>
<!--Page content-->
<!--===================================================-->
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-8">
<?php
$table = $prefix . 'sqli-settings';
$query = $mysqli->query("SELECT * FROM `$table`");
$row = mysqli_fetch_array($query);
if ($row['protection'] == 1) {
echo '
<div class="card card-solid card-success">
';
} else {
echo '
<div class="card card-solid card-danger">
';
}
?>
<div class="card-header">
<h3 class="card-title">SQL Injection - Security Module</h3>
</div>
<div class="card-body jumbotron">
<?php
if ($row['protection'] == 1) {
echo '
<h1 style="color: #47A447;"><i class="fas fa-check-circle"></i> Enabled</h1>
<p>The website is protected from <strong>SQL Injection Attacks (SQLi)</strong></p>
';
} else {
echo '
<h1 style="color: #d2322d;"><i class="fas fa-times-circle"></i> Disabled</h1>
<p>The website is not protected from <strong>SQL Injection Attacks (SQLi)</strong></p>
';
}
?>
</div>
</div>
<form class="form-horizontal form-bordered" action="" method="post">
<div class="card">
<div class="card-header">
<h3 class="card-title">Additional Security Modules</h3>
</div>
<div class="card-body">
<div class="row">
<div class="col-md-4">
<div class="card card-body bg-light">
<center>
<h5>XSS Protection</h5>
Sanitizes infected requests
<br /><br />
<input type="checkbox" name="protection2" class="psec-switch" <?php
if ($row['protection2'] == 1) {
echo 'checked="checked"';
}
?> />
</center>
</div>
</div>
<div class="col-md-4">
<div class="card card-body bg-light">
<center>
<h5>Clickjacking Protection</h5>
Detecting and blocking clickjacking attempts
<br /><br />
<input type="checkbox" name="protection3" class="psec-switch" <?php
if ($row['protection3'] == 1) {
echo 'checked="checked"';
}
?> />
</center>
</div>
</div>
<div class="col-md-4">
<div class="card card-body bg-light">
<center>
<h5>Hide PHP Information</h5>
Hides the PHP version to remote requests
<br /><br />
<input type="checkbox" name="protection6" class="psec-switch" <?php
if ($row['protection6'] == 1) {
echo 'checked="checked"';
}
?> />
</center>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="card card-body bg-light">
<center>
<h5>MIME Mismatch Attacks Protection</h5>
Prevents attacks based on MIME-type mismatch
<br /><br />
<input type="checkbox" name="protection4" class="psec-switch" <?php
if ($row['protection4'] == 1) {
echo 'checked="checked"';
}
?> />
</center>
</div>
</div>
<div class="col-md-6">
<div class="card card-body bg-light">
<center>
<h5>Secure Connection</h5>
Forces the website to use secure connection (HTTPS)
<br /><br />
<input type="checkbox" name="protection5" class="psec-switch" <?php
if ($row['protection5'] == 1) {
echo 'checked="checked"';
}
?> />
</center>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="card card-body bg-light">
<center>
<h5>Data Filtering</h5>
Basic Sanitization of all fields, inputs, forms and requests. Low sensativity but faster performance.
<br /><br />
<input type="checkbox" name="protection7" class="psec-switch" <?php
if ($row['protection7'] == 1) {
echo 'checked="checked"';
}
?> />
</center>
</div>
</div>
<div class="col-md-6">
<div class="card card-body bg-light">
<center>
<h5>Requests Sanitization</h5>
Advanced Sanitization of all fields, inputs, forms and requests. High sensativity but slower performance.
<br /><br />
<input type="checkbox" name="protection8" class="psec-switch" <?php
if ($row['protection8'] == 1) {
echo 'checked="checked"';
}
?> />
</center>
</div>
</div>
</div>
<center><button class="btn btn-flat btn-md btn-block btn-primary" name="save2" type="submit"><i class="fas fa-floppy"></i> Save</button></center>
</div>
</div>
</form>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-header">
<h3 class="card-title">What is SQL Injection</h3>
</div>
<div class="card-body">
<strong>SQL Injection</strong> is a technique where malicious users can inject SQL commands into an SQL statement, via web page input. Injected SQL commands can alter SQL statement and compromise the security of a web application.
</div>
</div>
<div class="card">
<div class="card-header">
<h3 class="card-title">Module Settings</h3>
</div>
<div class="card-body">
<ul class="list-group">
<form class="form-horizontal form-bordered" action="" method="post">
<li class="list-group-item">
<p>Protection</p>
<input type="checkbox" name="protection" class="psec-switch" <?php
if ($row['protection'] == 1) {
echo 'checked="checked"';
}
?> /><br />
<span class="text-muted">If this security module is enabled all threats of this type will be blocked</span>
</li>
<li class="list-group-item">
<p>Logging</p>
<input type="checkbox" name="logging" class="psec-switch" <?php
if ($row['logging'] == 1) {
echo 'checked="checked"';
}
?> /><br />
<span class="text-muted">Logging every threat of this type</span>
</li>
<li class="list-group-item">
<p>AutoBan</p>
<input type="checkbox" name="autoban" class="psec-switch" <?php
if ($row['autoban'] == 1) {
echo 'checked="checked"';
}
?> /><br />
<span class="text-muted">Automatically ban anyone who is detected as this type of threat</span>
</li>
<li class="list-group-item">
<p>Mail Notifications</p>
<input type="checkbox" name="mail" class="psec-switch" <?php
if ($row['mail'] == 1) {
echo 'checked="checked"';
}
?> /><br />
<span class="text-muted">You will receive email notification when threat of this type is detected</span>
</li>
<li class="list-group-item">
<p>Redirect URL</p>
<input name="redirect" class="form-control" type="text" value="<?php
echo $row['redirect'];
?>" required>
</li>
</ul>
</div>
<div class="card-footer">
<button class="btn btn-flat btn-block btn-primary mar-top" name="save" type="submit"><i class="fas fa-floppy"></i> Save</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!--===================================================-->
<!--End page content-->
</div>
<!--===================================================-->
<!--END CONTENT CONTAINER-->
</div>
<script>
var elems = Array.prototype.slice.call(document.querySelectorAll('.psec-switch'));
elems.forEach(function(html) {
var switchery = new Switchery(html);
});
</script>
<?php
footer();
?>