[Linux] Telnetd On Slackware

Pengen nulis mengenai telnet (telnet client + telnet server/telnetd) di Slackware 10.0

Soalnya service telnetd akan ku gunakan dalam peng-oprek-an IPTABLES
Secara default Slackware tidak menjalankan service telnetd. Karena hal ini berhubungan dengan sifat Slackware yg lebih mengarah ke UNIX yaitu mementingkan security. Sedangkan pada telnet tidak dilakukan enkripsi terhadap segala inormasi yang di kirimkan, walaupun loginnya menggunakan username dan password.

Secara default Slackware hanya menjalankan service berikut : [pake nmap biar keren :P]
root@c1c4x_lab:~# nmap -sS -O -PI -PT 192.168.1.1

Starting nmap 3.50 ( http://www.insecure.org/nmap/ ) at 2006-05-30 19:12 WIT
Interesting ports on 192.168.1.1:
(The 1654 ports scanned but not shown below are in state: closed)
PORT    STATE SERVICE
22/tcp  open  ssh
25/tcp  open  smtp
37/tcp  open  time
113/tcp open  auth
587/tcp open  submission
Device type: general purpose
Running: Linux 2.4.X|2.5.X
OS details: Linux Kernel 2.4.0 - 2.5.20
Uptime 0.026 days (since Tue May 30 18:36:02 2006)

Nmap run completed -- 1 IP address (1 host up) scanned in 5.335 seconds
Kita coba telnet kalo gak percaya :

telnet window failed

Tuh khan, gak bisa......
Sebagian daemons/server pada Slackware terletak di inetd yaitu di /etc/inetd.conf karena itu file tersebut perlu di edit.
root@c1c4x_lab:/etc# pico inetd.conf
...
# Telnet server:
#telnet stream  tcp     nowait  root    /usr/sbin/tcpd  in.telnetd
...
Cari baris perintah diatas kemudian hapus tanda # nya, lalu save.
Setelah itu restart inetd dengan perintah berikut :
root@c1c4x_lab:/usr/sbin# kill -HUP $(cat /var/run/inetd.pid)
root@c1c4x_lab:/usr/sbin# nmap -sS 192.168.1.1

Starting nmap 3.50 ( http://www.insecure.org/nmap/ ) at 2006-05-30 19:42 WIT
Interesting ports on 192.168.1.1:
(The 1653 ports scanned but not shown below are in state: closed)
PORT    STATE SERVICE
22/tcp  open  ssh
23/tcp  open  telnet ---->telnetd sudah berjalan
25/tcp  open  smtp
37/tcp  open  time
113/tcp open  auth
587/tcp open  submission

Nmap run completed -- 1 IP address (1 host up) scanned in 0.987 seconds
Sekarang kita coba...

telnet window

Horreeeeee... sudah bisa :D

Artikel Terkait :

0 comments: