■ 개요:

이따금 Web이 무슨 제품인지 확인이 필요한데, 담당자가 부재중이거나 자산 시스템 접속권한이 없어서 확인이 불가능 할 때가 있습니다.

이러한 경우, Web서버의 HTTP헤더 정보를 통해 웹서버 또는 WAS가 어떤 제품인지 확인이 가능합니다.


■ 절차:

test11@localhost:~$ nslookup www.test1234.com <- 도메인 네임으로 IP 확인

Server:         127.0.0.1

Address:        127.0.0.1#53

 

Non-authoritative answer:

Name:   www.test1234.com

Address: 10.125.11.15 <- 사내구매시스템의 웹서버 IP요런거 임을 확인할 수 있음

 

test11@localhost:~$ telnet 10.125.11.15 80 <- 콘솔 접속

Trying 10.125.11.15...

Connected to 10.125.11.15.

Escape character is '^]'.

HEAD / HTTP/1.0 <- 헤더정보 읽어 오는 명령

 

HTTP/1.1 200 OK

Content-Length: 80

Content-Type: text/html

Last-Modified: Thu, 26 Feb 2009 09:16:02 GMT

Accept-Ranges: bytes

ETag: "58081d8f297c91:0"

Server: Microsoft-IIS/7.0 <- IIS를 쓰고 있네요.

Date: Tue, 28 Jan 2014 11:03:52 GMT

Connection: close

 

Connection closed by foreign host.

 

 

+ Recent posts