Advertisement
ecchiexploit

Reverse Ip Lookup

Nov 16th, 2020 (edited)
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.65 KB | None | 0 0
  1. <?php
  2. // Coded By ./EcchiExploit
  3. error_reporting(0);
  4.     function curl($url){
  5.         $ch = curl_init();
  6.         curl_setopt($ch, CURLOPT_URL, "https://domains.yougetsignal.com/domains.php");
  7.         curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  8.         curl_setopt($ch, CURLOPT_POSTFIELDS, "remoteAddress=$url&key=&_=");
  9.         curl_setopt($ch, CURLOPT_POST, 1);
  10.         $exe = curl_exec($ch);
  11.         curl_close($ch);
  12.         return $exe;
  13.     }
  14.     $site = curl(readline("Your Site : "));
  15.     $json = json_decode($site, true);
  16.     foreach ($json['domainArray'] as $key) {
  17.         echo "Success => ".$key[0]."\n";
  18.         $save  = fopen("result.txt", "a+");
  19.         fwrite($save, $key['0']."\n");
  20.         fclose($save);
  21.     }
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement