-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.php
44 lines (35 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<title>Luna Web Obfuscate 101 Lab</title>
<link rel="stylesheet" type="text/css" href="bulma.css">
</head>
<body>
<div class="container">
<div class="columns">
<div class="column is-one-quarter">
<?php include("menu.php"); ?>
</div>
<div class="column auto">
<h1 class="title">Luna</h1>
<h1 class="subtitle">Web Obfuscation 101 Lab</h1><hr>
<div class="box">
<h1 class="subtitle">Description</h1>
<p>After reading Web Application Obfuscation Book from Syngress, I have decided to make a
Lab for Web Application Obfuscation or Bypassing Web Application Filters.This lab have a goal for each level. You have to try all challenges. I described what i filtered for each level and described level's goals.
</p><br>
<h1 class="subtitle">Requirements</h1>
<p>For enjoying this lab, you must know how HTML , JS , CSS , PHP work. You need to familiar with ASCII characters and bypassing method.
</p><br>
<h1 class="subtitle">Reference</h1>
<p>
<img src="waf.jpg" class="image is-128x128">
<a href="https://www.amazon.com/Web-Application-Obfuscation-Evasion-Filters/dp/1597496049">Web Application Obfuscation Book</a>
</p>
</div>
<p>Copyright © 2017 @art0flunam00n</p>
</div>
</div>
</div>
</body>
</html>