-
Notifications
You must be signed in to change notification settings - Fork 10
/
lookup.php
22 lines (21 loc) · 846 Bytes
/
lookup.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<title>DNSBL Lookup</title>
<link rel="stylesheet" type="text/css" href="/include/style.css">
<link rel="SHORTCUT ICON" href="favicon.ico">
<script src="/include/ajaxsbmt.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js" type="text/javascript" charset="utf-8"></script>
<script src="https://ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js?load=effects" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<h1> DNSBL Lookup</h1>
<?php
$_POST['Value'] = str_replace('_','.',array_keys($_GET)[0]);
$_POST['genere'] = base64_decode(array_keys($_GET)[1], TRUE);
require_once('result.php');
?>
<hr>
<p>This DNSBL service works with authomated listing mechanisms. RFC6471 compliants. HTML5 browser required.</p>
</div>
</body>
</html>