-
Notifications
You must be signed in to change notification settings - Fork 26
/
ba_pwd_attacks.php
51 lines (29 loc) · 1.17 KB
/
ba_pwd_attacks.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
<?php
/*
bWAPP, or a buggy web application, is a free and open source deliberately insecure web application.
It helps security enthusiasts, developers and students to discover and to prevent web vulnerabilities.
bWAPP covers all major known web vulnerabilities, including all risks from the OWASP Top 10 project!
It is for security-testing and educational purposes only.
Enjoy!
Malik Mesellem
Twitter: @MME_IT
bWAPP is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License (http://creativecommons.org/licenses/by-nc-nd/4.0/). Copyright © 2014 MME BVBA. All rights reserved.
*/
include("security.php");
include("security_level_check.php");
switch($_COOKIE["security_level"])
{
case "0" :
header("Location: ba_pwd_attacks_1.php");
break;
case "1" :
header("Location: ba_pwd_attacks_2.php");
break;
case "2" :
header("Location: ba_pwd_attacks_4.php");
break;
default :
header("Location: ba_pwd_attacks_1.php");
break;
}
?>