這裏顯示兩個版本的差異處。
Both sides previous revision 前次修改 下次修改 | 前次修改 | ||
linux:linux_server_hacks_100_tips [2007/04/02 22:08] wenpei 72 |
linux:linux_server_hacks_100_tips [2008/03/28 21:42] (目前版本) wenpei |
||
---|---|---|---|
行 179: | 行 179: | ||
bpf filter(Berkeley Packet Filter) | bpf filter(Berkeley Packet Filter) | ||
ngrep -qi root@abc.tw port 25 | ngrep -qi root@abc.tw port 25 | ||
+ | |||
===== 61 nmap ===== | ===== 61 nmap ===== | ||
辨識作業系統 | 辨識作業系統 | ||
nmap -O abc.tw | nmap -O abc.tw | ||
+ | |||
+ | 辨識服務的版本 | ||
+ | nmap -sV abc.tw -p 22 | ||
===== 64 ntop ===== | ===== 64 ntop ===== | ||
行 254: | 行 258: | ||
$ ln -s ../../.ssh/id_rsa.pub authorized_keys2 | $ ln -s ../../.ssh/id_rsa.pub authorized_keys2 | ||
+ | ===== 75 色彩化日誌 ===== | ||
+ | rcg 使用 Term::ANSIColor 將符合條件的字串改成特定色彩 | ||
+ | |||
+ | less -r 將 ESC sequence 解釋成彩色效果 | ||
+ | |||
+ | 正規式: | ||
+ | \d+\.\d+\.\d+\.\d+\. # IP 位址的表示法 | ||
+ | ^(J|F|M|A|S|O|N|D)\w\w (\d|)\d # 日期字串 | ||
+ | \b\d\d:\d\d:\d\d\b # 時間字串 | ||
+ | ===== 88 Apache Index full files name ===== | ||
+ | IndexOptions FancyIndexing NameWidth=* | ||
+ | IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=* |