Como identificar qual sistema operacional está sendo executado no host remoto? [fechadas]

-1

Não consigo identificar qual sistema operacional está sendo executado no host remoto. Como identificar o sistema operacional host remoto?

    
por Shailesh 16.07.2013 / 07:39

1 resposta

3

Você pode usar o nmap. Não é preciso, mas pode lhe dar uma pista. Ou você pode usar um simples "ping" e procurar pelo TTL.

TTL=64 = *nix - the hop count so if your getting 61 then there are 3 hops and its a *nix device. Most likely Linux.
TTL=128 = Windows - again if the TTL is 127 then the hop is 1 and its a Windows box.
TTL=254 = Solaris/AIX - again if the TTL is 250 then the hop count is 4 and its a Solaris box.

E com o NMAP:

# sudo nmap -O xx.xx.xx.xx
    
por 16.07.2013 / 19:45

Tags