Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Domains on server / reverse ip by Zeeshan Haxor ZeSn
- #Cyber TeamRox
- <html>
- <title>Domain Checker By Zeeshan Haxor</title>
- <link href='http://fonts.googleapis.com/css?family=Iceland' rel='stylesheet' type='text/css'>
- <center>
- <font face="iceland" color="Red" size="30px">Domain Checker By Zeeshan Haxor</font>
- </center><br>
- <form>
- <center>
- <input type='text' size='60' value='ZeeshanHaxor.com' name='remoteAddress' /> <input type='submit' value=' ✓ '>
- </form></center>
- <style>
- tr
- {
- color: #ffffff;
- }
- .input:hover, .inputzbut:hover{
- border-bottom:1px solid #00eaff;
- border-top:1px solid #00eaff;
- }
- #oops{ padding: 2px; border: 1px solid #222222; box-shadow: 0px 0px 3 #222222;font-family: orbitron; font-size: 11px; width:90%;}
- input {padding: 2px; border: 2px solid #0790ef; box-shadow: 0px 0px 3 #0790ef; color: #0790ef; text-decoration: none;color: #0790ef; text-shadow: 0px 0px 0px #0790ef; font-weight: bold}
- input a:hover{padding: 1px; border: 1px solid #0790df;box-shadow: 0px 0px 3 #0790df; color: #636263; text-decoration: none;color: #0790df}
- td
- {
- BORDER-RIGHT: #cccccc 1px solid;
- BORDER-TOP: #cccccc 1px solid;
- BORDER-LEFT: #cccccc 1px solid;
- BORDER-BOTTOM: #cccccc 1px solid;
- color: #cccccc;
- }
- </style>
- <?php
- if(isset($_GET["remoteAddress"]))
- {
- $site = $_GET["remoteAddress"];
- $ghost = "http://domains.yougetsignal.com/domains.php";
- //Curl Function
- $ch = curl_init($ghost);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
- curl_setopt($ch, CURLOPT_POSTFIELDS, "remoteAddress=$site&ket=");
- curl_setopt($ch, CURLOPT_HEADER, 0);
- curl_setopt($ch, CURLOPT_POST, 1);
- $resp = curl_exec($ch);
- $resp = str_replace("[","", str_replace("]","", str_replace("\"\"","", str_replace(", ,",",", str_replace("{","", str_replace("{","", str_replace("}","", str_replace(", ",",", str_replace(", ",",", str_replace("'","", str_replace("'","", str_replace(":",",", str_replace('"','', $resp ) ) ) ) ) ) ) ) ) ))));
- $array = explode(",,", $resp);
- unset($array[0]);
- echo "<table style='margin: 0 auto'>";
- foreach($array as $lnk)
- {
- print "<tr><td><a style=\"color:#0f0;font-weight:bold;\" href='$lnk' target=_blank>$lnk</a></td></tr>";
- }
- echo "</table>";
- curl_close($ch);
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement