[HOME]
[戻る]
目次
1回目(2004/02/05 22:00)
解説
- サーバーの状態を調べるために nmap をインストールしてみる。
インストール
$ tar jxf nmap-3.75.tar.tar
$ cd nmap-3.75
$ ./configure
$ make
$ su
# make install
| | real | user | sys |
| configure | 4m34.511s | 2m26.950s | 2m3.800s |
| make | 7m24.286s | 7m2.680s | 0m18.690s |
確認
- ローカルのサーバーをチェックしてみる。
- 他人のサーバーをチェックするときは許可を取ってから。
$ /usr/local/bin/nmap 192.168.1.99
Starting nmap 3.75 ( https://www.insecure.org/nmap/ ) at 2005-02-06 19:49 JST
Interesting ports on 192.168.1.99:
(The 1653 ports scanned but not shown below are in state: closed)
PORT STATE SERVICE
9/tcp open discard
13/tcp open daytime
22/tcp open ssh
25/tcp open smtp
37/tcp open time
110/tcp open pop3
443/tcp open https
2401/tcp open cvspserver
5432/tcp open postgres
8888/tcp open sun-answerbook
Nmap run completed -- 1 IP address (1 host up) scanned in 1.097 seconds
$ /usr/local/bin/nmap -p 8888 192.168.1.99
Starting nmap 3.75 ( https://www.insecure.org/nmap/ ) at 2005-02-06 19:49 JST
Interesting ports on 192.168.1.99:
PORT STATE SERVICE
8888/tcp open sun-answerbook
2005/02/10
ご意見・ご感想は,こちらの掲示板
まで.