vote up -7 vote down star

I'm working on an embedded system based on slackware. I want to be able to telnet into it as root without entering a password. I've changed the /etc/passwd to have the password as "*" but still the telnet login won't let me do this.

The telnet daemon is started from inetd.

There isn't a pam or /etc/shadow.

The login also has some annoying timeouts: how can I get rid of these?

flag
I don't want you to be able to telnet into it as root without entering a password :( – mquander Apr 2 at 17:59
You're a bit late for april fool's day no ? – siukurnin Apr 2 at 18:00
Hackery !! Bad Bad ... – 7alwagy Apr 2 at 18:03

closed as not programming related by Rich B, Quintin Robinson, Brian Knoblauch, Rob, Bill the Lizard Apr 2 at 18:06

5 Answers

vote up -2 vote down

telnet is obsolete

use ssh to log in as regular user

then su to root

link|flag
Kudos to downvoters :P – Anonymous Apr 3 at 15:17
vote up 3 vote down

Well, it depends on your telnet. I've only ever seen an asterisk used for a password in the case that the account is locked. Try removing it. and leave nothing between the colons.

The annoying timeouts are likely DNS resolver timeouts trying to map the IP address you're coming from to a name for the log.

link|flag
vote up 16 vote down

You really, really, really, repeat several thousand times, do not want this. Your customers will not want this. I know that if I saw an embedded system that allowed this, that I would never buy from that particular vendor again.

Use SSH.

Set up SSH on the embedded system, and add your SSH public key (from ~/.ssh/id_dsa.pub) to ~root/.ssh/authorized_keys2

If you don't have a public key, generate one with ssh-keygen -t dsa -N"" (this will generate a key with no passphrase protection).

link|flag
Check out dropbear ssh for a really nice small ssh client/daemon: matt.ucc.asn.au/dropbear/dropbear.html – Benson Apr 2 at 18:03
This. So much this it hurts. The very premise is a nightmare waiting to happen. – Kalium Apr 2 at 18:03
I've used ssh on other projects. This telnet installation is purely for use in house; we don't plan to ship a system in this state. – Simon Elliott Apr 2 at 18:07
If they set up SSH, but there is no password, what are they protecting ? :) – benc Aug 6 at 3:26
The key has no passphrase -- so you still need the keyfile to log in. Admittedly, it's not as good as just using a password, but it's way better than an unencrypted, unauthenticated, passwordless root login. :) – Don Werve Aug 6 at 15:54
vote up 0 vote down

I don't know if ssh is an option or not. If it is, you can use ssh with public and private keys to setup a secure ability to log onto your system without a password. If you google for "ssh public private key", you'll find lots of articles that show you how to set this up.

link|flag
vote up 2 vote down

I can't help you with telnet except to give you advice not to use it. SSH is just like telnet, you can get a nice client (putty) that is a glorified command line, and you cna use ssh for many applications too.

Now, to get passwordless login using ssh (which will be secure), you simply need to create a public/private key pair, place the private key in the root user' home directory, in a file called authorized_keys in a subdirectory called .ssh, and once you tell putty to use the public key (that you store on your PC) you have passwordless, secure logons as root.

This may not support your exact requirements, but I think you should consider it, passwordless remote logins = hacked in seconds without any effort whatsoever. If you need to give root access to customers (ie its a product) then you can install the key for each customer in a simple app, even if you don't create a custom key for each customer! BTW, if you don;t have the key, you will be prompted to use the password as usual.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.