-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.php
More file actions
25 lines (23 loc) · 751 Bytes
/
index.php
File metadata and controls
25 lines (23 loc) · 751 Bytes
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
<? /**********/ require_once('Disguiser.php') ; ob_start('Disguiser::disguise') /**********/ ?>
<html>
<head>
<title>hey world!</title>
<style>
body{
color: white;
text-align: center;
}
.my-extremely-unbelievably-very-long-class-name{
background: red;
}
.X_compare_with_this-long_long_longer-my-extremely-unbelievably-very-long-class-name{
background: blue;
}
</style>
</head>
<body>
<div class="my-extremely-unbelievably-very-long-class-name">foo</div>
<div class="X_compare_with_this-long_long_longer-my-extremely-unbelievably-very-long-class-name">bar</div>
</body>
</html>
<? /**********************************/ ob_end_flush() /**********************************/ ?>