5

The passwd/shadow files in a unix-like OS contain sensitive info such as a user's password. In addition those files aren't necessarily secured: with a live CD we can access those files on the hard drive and potentially gain access to the sensitive information.

My question is: is there anyway to make those two files more secure -- perhaps "lock" them or even change their location on the filesystem?

schroeder
  • 123,438
  • 55
  • 284
  • 319
wisdom
  • 457
  • 1
  • 5
  • 8
  • Nothing important yet....but a challenge was to break the root password :)...so we did it and are searching how to make it harder :) – wisdom Jan 03 '12 at 19:18

3 Answers3

9

If someone has physical access to the machine they can modify these files to create a new root account or crack existing password hashes which is useful due to the prevalence of password reuse. Renaming or changing the location would be "(in)security though obscurity" and will provide no appreciable protection against this attack pattern.

Steps to protect your self:

1) Set a bios password, and force your hard-drive to be the boot drive. This however does not prevent someone from removing the drive from the machine.

2) Consider full disk encryption. Even if you just encrypt /etc/ someone could replace /usr/bin or /bin with malicious binaries that could be run as root. Even your /home/user/.bashrc file can be used to hijack your PATH and obtain root if you are a suoder.

But this isn't a prefect solution. You should think of security in layers and try and prevent physical access to the machine. (@dr jimbob has a good point.)

rook
  • 46,916
  • 10
  • 92
  • 181
  • 4
    +1 -- Full disk encryption. If the system is booted, files can be read or altered. Changing the location of those files makes things harder for legitimate programs. If the system can use the files when booted, there must be a reliable way to find them. A bootdisk system would play by the same rules and find them. FDE is your best protection against an offline attack. – Jeff Ferland Jan 03 '12 at 18:58
  • @Jeff Ferland Good point. – rook Jan 03 '12 at 19:02
  • using FDE to protect the drive means even if I boot from a live CD the Drive will keep encrypted/not accessible ?? – wisdom Jan 03 '12 at 19:06
  • @wisdom Correct, unless the attacker has the passphrase to decrypt it... – rook Jan 03 '12 at 19:07
  • Your best first bet is to restrict physical access -- anyone with physical access can easily put in hardware keyloggers for example even when the drive is encrypted -- wait for you to use it and then replay your keystrokes. Also, for the BIOS solution; you don't want a BIOS password (stored on the motherboard; easily worked around e.g., move to another machine) but hard disk password: http://en.wikipedia.org/wiki/Parallel_ATA#HDD_passwords_and_security . Note, a determined adversary can work around this (unlike disk encryption), but this will keep out the casual attacker. – dr jimbob Jan 03 '12 at 19:22
  • @dr jimbob That is a solution for some, but that is not always possible. For instance I bet you have a simple 5 pin, pin-tumbler lock on your front door. I pick that in about 30 seconds on a bad day. Also, good information you should post it on this thread: http://security.stackexchange.com/questions/10354/tamper-evident-methods-fo-protecting-computer-systems-from-phiscal-attacks – rook Jan 03 '12 at 19:50
  • I live in nyc--I have mul-t-lock, a 7-pin deadbolt, outside door lock and doorman, and a dog who dislikes strangers in the hallway (plus family in the adjacent apartment). But I agree; its trivial to bypass this security (the locks are pickable; you can pose as a food deliverer; or bribe the dog with treats). But, I have nothing of particular value to protect on my computer; other than I occasionally use a modest-limit credit card on it that a keylogger could record. But by physical security, I mean server rooms that have very limited access with active surveillance/security system. – dr jimbob Jan 03 '12 at 20:33
3

Security by obscurity -- in this case, asking to change the location of the password file(s) on the system does not actually enhance the security. The original Unix designers knew this and ensured that all passwords were hashed within the passwd file even though the /etc/passwd file was completely readable by all. The shadow file -- moving the hashed password tokens outside of the /etc/passwd file -- only became vogue when another layer of security was deemed beneficial.

Rook's answer is also spot-on. If you cannot secure the physical machine, then any "locks" in place on the sensitive files will not be adhered to. Even if some form of "lock" was created on those files which was mutually recognized by all POSIX operating systems, I could certainly extract the data using some tool which ignored the "lock". Physically encrypting the disk is the only way to "lock" the file to prevent accessing the file from a Live-CD environment.

logicalscope
  • 6,344
  • 3
  • 25
  • 38
2

The passwords are of course securely hashed. If the passwords are complex enough, then this should be enough to keep your passwords unknown.

I assume you want to keep someone from clearing the password and then booting up. This is not simple, but you could have a root startup script so when the computer boots, it checks to see if the shadow file is incorrect, and if it is, it deletes, crashes, or otherwise disables the machine or makes the private information inside unreadable. This does not stop the clearing of the password, but gives you an opportunity to take action on the next boot.

But remember, if the machine never boots, the hacker can still read all the files, regardless of the shadow file.

Caveat is of course that you need to write some program to detect malicious changes to the password file, while not ruining you when you make authentic changes. Probably you just want to detect if there were changes since the last known copy but only if that occurred while the machine was offline.

700 Software
  • 13,807
  • 3
  • 52
  • 82
  • 2
    No sane operating system encrypts passwords, they are always hashed. – rook Jan 03 '12 at 19:00
  • 2
    Saying you encrypt passwords makes me think you are violating CWE-257. Proper nomenclature is important, as it provides a predictable medium for communication. I absolutely detest the term "one-way encryption" because it causes nothing but confusion. Calling this process "decryption" is also bothersome, as hashes are always cracked. Hash functions and encryption functions are very different, and they are used in very different ways. – rook Jan 03 '12 at 19:47
  • @Rook, I will keep that in mind. Edited. – 700 Software Jan 03 '12 at 19:52