-
Notifications
You must be signed in to change notification settings - Fork 4
/
out.php
46 lines (35 loc) · 1023 Bytes
/
out.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
<?php
include"includes/duce_functions.php";
$url = str_replace("http://", null, $_GET['url']);
if(isset($url)) {
$url = "http://".$url;
echo("<html><head><title>Ut</title>
<style type='text/css'>
A: {
text-decoration: underline;
color:#000000;
}
A:link {
text-decoration: underline;
color:#333333;
}
A:visited {
text-decoration: none;
color:#000000;
}
A:hover {
text-decoration: underline;
color:#FF9900;
}
a:active {
text-decoration: none;
color: #000000;
}
</style></head><body>
<center><div style='background-color:white; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 10px;'>
<br/>Du besøker nå et område utenfor WuaX. Vi har intet ansvar for innholdet på denne siden.<br/>
<br/>| <a href='".$url."'><b>Lukk</b></a> |<br/><hr/></div></center></body></html>
");
echo'<iframe src="'.$url.'" width="100%" height="100%" frameborder="0" allowtransparency="0" scrolling="0">Laster...</iframe>';
} else { header("Location:index"); }
?>