Find url and get ip address of website after redirect

后端 未结 3 454
一整个雨季
一整个雨季 2020-12-21 06:14

If I have :

domainA.com/out.php :


Is it possible to ge

3条回答
  •  自闭症患者
    2020-12-21 06:27

    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.

提交回复
热议问题