Como posso descobrir qual código http é retornado em um site redirecionado?

1

Existe um site quando você visita determinados links que o redirecionam para outro site.

Existe alguma maneira de descobrir qual código HTTP é retornado antes de redirecioná-lo?

    
por Shane Grant 15.10.2011 / 04:10

2 respostas

3

Claro, tente enrolar:

$ curl -k https://www.gmail.com/
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>301 Moved</TITLE></HEAD><BODY>
<H1>301 Moved</H1>
    
por 15.10.2011 / 04:14
2

curl , wget , ... e outros navegadores da linha de comando podem não estar disponíveis em todos os sistemas operacionais, apenas use telnet :

$ telnet localhost 81
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
GET /one/two?path=x&y=z HTTP/1.0
<enter>
<enter>
HTTP/1.1 301 Moved Permanently
Server: nginx/1.0.5
Date: Sat, 15 Oct 2011 02:38:59 GMT
Content-Type: text/html
Content-Length: 184
Location: http://127.0.0.1:81/one/two/x?y=z
Connection: close

Você também pode passar o cabeçalho Host :

telnet www.ganglia.gentoo 80
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
GET / HTTP/1.0
Host: www.ganglia.gentoo
<enter>
<enter>
HTTP/1.1 301 Moved Permanently
Date: Sat, 15 Oct 2011 02:45:41 GMT
Server: Apache
Location: http://nagios.gentoo/
Content-Length: 297
Connection: close
Content-Type: text/html; charset=iso-8859-1
    
por 15.10.2011 / 04:48

Tags