Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find url and get ip address of website after redirect

If I have :

domainA.com/out.php :

<?php
  header('location: http://domainB.com/');
?>

Is it possible to get url : domainB.com and it's IP Address, with domanA.com/out.php from domainC.com?

What I want :

domainA.com/index.php

<?php
   $data = getUrlandIp("domainA.com/out.php");
   echo $data[0];  # wanted output (URL) : domainB.com
   echo $data[1];  # wanted output (IP) : 133.133.133.133
?>
like image 772
John Avatar asked Dec 26 '22 23:12

John


2 Answers

If you need to get all the redirects, you can do

function getRedirectsToUri($uri)
{
    $redirects = array();
    $http = stream_context_create();
    stream_context_set_params(
        $http,
        array(
            "notification" => function() use (&$redirects)
            {
                if (func_get_arg(0) === STREAM_NOTIFY_REDIRECTED) {
                    $redirects[] = func_get_arg(2);
                }
            }
        )
    );
    file_get_contents($uri, false, $http);
    return $redirects;
}

This will return an array holding all the redirects with the last entry being the final destination.

Example (demo)

print_r(getRedirectsToUri('http://bit.ly/VDcn'));

Output

Array ( 
    [0] => http://example.com/ 
    [1] => http://www.iana.org/domains/example/ 
) 

You'd have to lookup the IP's manually though (see other answers here) but note that a redirect target doesnt have to be a hostname. It can very well be an IP as well.

like image 72
Gordon Avatar answered Jan 05 '23 09:01

Gordon


Use get_headers() to get the http headers from a URL.

Something like this should work to get the domain name.

$headers = get_headers('http://domaina.com/out.php', 1);
echo $headers['Location'];

To resolve the IP address, look at the gethostbyname() function.

echo gethostbyname($headers['Location']);
like image 40
AndrewR Avatar answered Jan 05 '23 10:01

AndrewR