-
Notifications
You must be signed in to change notification settings - Fork 11
/
main.html
executable file
·102 lines (96 loc) · 2.59 KB
/
main.html
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
<!DOCTYPE html>
<html>
<head>
<title>DVPA</title>
<link rel="shortcut icon" href="Images/icons8-hacker.png">
<link rel="stylesheet" href="assets/main.css">
</head>
<body>
<ul class="body-content">
<h4 style="color:gray;">Remote Code Execution Labs</h4>
<li>
<h2>01</h2>
<h3>RCE (I)</h3>
<p>
This Service Read Local Files via Cat Command, Can You Read /etc/passwd for Me ?
</p>
<a href="RCE-Labs/RCE-1/index.html"><button>Start Hacking</button></a>
</li>
<li>
<h2>02</h2>
<h3>RCE (II)</h3>
<p>
This Service Execute Whois Command and Your Input Here is Domain Can You Do Somthing ?
</p>
<a href="RCE-Labs/RCE-2/index.html"><button>Start Hacking</button></a>
</li>
<li>
<h2>03</h2>
<h3>RCE (III)</h3>
<p>
The Dev Team Told me The RCE-II has been fixed can you check it
</p>
<a href="RCE-Labs/RCE-3/index.html"><button>Start Hacking</button></a>
</li>
<li>
<h2>04</h2>
<h3>RCE (IV)</h3>
<p>
This service executes the command line for users locally only
</p>
<a href="RCE-Labs/RCE-4/index.html"><button>Start Hacking</button></a>
</li>
<li>
<h2>05</h2>
<h3>RCE (V)</h3>
<p>
Well,Well,Well,no More Vulnerabilities. Some Methods Have Been Added to Verify The User if He is an Admin or not
</p>
<a href="RCE-Labs/RCE-5/index.html"><button>Start Hacking</button></a>
</li>
</ul>
<ul class="body-content">
<h4 style="color:gray;" >PHP Type Juggling Labs</h4>
<li>
<h2>01</h2>
<h3>MD4</h3>
<p>
PHP Type Juggling Authentication Bypass Vulnerability using Magic Hashes [MD4]
</p>
<a href="PHP-Type-Juggling-Labs/md4.php"><button>Start Hacking</button></a>
</li>
<li>
<h2>02</h2>
<h3>MD5</h3>
<p>
PHP Type Juggling Authentication Bypass Vulnerability using Magic Hashes [MD5]
</p>
<a href="PHP-Type-Juggling-Labs/md5.php"><button>Start Hacking</button></a>
</li>
<li>
<h2>03</h2>
<h3>SHA1</h3>
<p>
PHP Type Juggling Authentication Bypass Vulnerability using Magic Hashes [SHA1]
</p>
<a href="PHP-Type-Juggling-Labs/sha1.php"><button>Start Hacking</button></a>
</li>
<li>
<h2>04</h2>
<h3>SHA-224</h3>
<p>
PHP Type Juggling Authentication Bypass Vulnerability using Magic Hashes [SHA-224]
</p>
<a href="PHP-Type-Juggling-Labs/sha224.php"><button>Start Hacking</button></a>
</li>
<li>
<h2>05</h2>
<h3>SHA-256</h3>
<p>
PHP Type Juggling Authentication Bypass Vulnerability using Magic Hashes [SHA-256]
</p>
<a href="PHP-Type-Juggling-Labs/sha256.php"><button>Start Hacking</button></a>
</li>
</ul>
</body>
</html>