Cuprins
Când o persoană (sau un program) solicită acces la sistem, autentificarea confirmă identitatea ca fiind una de încredere.
|
Avertisment |
|---|---|
|
Erorile de configurare ale PAM vă pot bloca accesul la propriul sistem. Trebuie să aveți la îndemână un CD de recuperare sau să configurați o partiție de pornire alternativă. Pentru a recupera sistemul, porniți-l cu ajutorul acestora și remediați problemele de acolo. |
Autentificarea normală Unix este asigurată de modulul
pam_unix(8) din cadrul PAM (Pluggable Authentication
Modules). Cele trei fișiere de configurare importante, cu intrări
separate prin „:”, sunt următoarele.
Tabel 4.1. 3 fișiere de configurare importante pentru pam_unix(8)
| fișier | permisiuni | utilizator | grupul | descriere |
|---|---|---|---|---|
/etc/passwd |
-rw-r--r-- |
root |
root |
informații despre contul utilizatorului (curățate) |
/etc/shadow |
-rw-r----- |
root |
shadow |
informații securizate despre contul utilizatorului |
/etc/group |
-rw-r--r-- |
root |
root |
informații despre grup |
„/etc/passwd” conține următoarele.
... user1:x:1000:1000:User1 Name,,,:/home/user1:/bin/bash user2:x:1001:1001:User2 Name,,,:/home/user2:/bin/bash ...
Așa cum se explică în passwd(5), fiecare intrare separată
prin „:” din acest fișier înseamnă următoarele.
Nume de autentificare
Intrarea specificării parolei
ID-ul numeric al utilizatorului
ID-ul numeric al grupului
Nume utilizator sau câmp comentariu
Directorul personal al utilizatorului
Interpret opțional de comenzi pentru utilizator
A doua intrare din „/etc/passwd” a fost utilizată pentru
introducerea parolei criptate. După introducerea
„/etc/shadow”, această intrare este utilizată pentru
introducerea specificațiilor parolei.
Tabel 4.2. Al doilea conținut al intrării „/etc/passwd”
| conținut | semnificație |
|---|---|
| (gol) | cont fără parolă |
| x | parola criptată se află în „/etc/shadow” |
Fișierul „/etc/shadow” conține următoarele câmpuri.
... user1:$1$Xop0FYH9$IfxyQwBe9b8tiyIkt2P4F/:13262:0:99999:7::: user2:$1$vXGZLVbS$ElyErNf/agUDsm1DehJMS/:13261:0:99999:7::: ...
După cum se explică în shadow(5), fiecare intrare
separată prin „:” din acest fișier înseamnă următoarele.
Nume de autentificare
Parolă criptată (inițialele „$1$” indică utilizarea
criptării MD5. Simbolul „*” indică faptul că nu există date de conectare.)
Data ultimei modificări a parolei, exprimată ca număr de zile de la 1 ianuarie 1970
Numărul de zile pe care utilizatorul va trebui să le aștepte înainte de a i se permite să își schimbe din nou parola
Numărul de zile după care utilizatorul va trebui să își schimbe parola
Numărul de zile înainte de expirarea parolei în care utilizatorul trebuie avertizat
Numărul de zile după expirarea parolei în care parola ar trebui să fie încă acceptată
Data expirării contului, exprimată ca număr de zile de la 1 ianuarie 1970
…
Fișierul „/etc/group” conține următoarele câmpuri.
group1:x:20:user1,user2
După cum se explică în group(5), fiecare intrare separată
prin „:” din acest fișier are următoarea semnificație.
Numele grupului
Parolă criptată (nu este utilizată efectiv)
ID-ul numeric al grupului
Listă separată prin virgule a numelor de utilizatori
|
Notă |
|---|---|
|
„ |
|
Notă |
|---|---|
|
Apartenența efectivă a unui utilizator la un grup poate fi adăugată dinamic
dacă se adaugă linia „ |
|
Notă |
|---|---|
|
Pachetul |
Iată câteva comenzi importante pentru gestionarea informațiilor contului.
Tabel 4.3. Lista comenzilor pentru gestionarea informațiilor contului
| comanda | funcție |
|---|---|
getent passwd nune-utilizator |
răsfoiește informațiile contului
„nume-utilizator” |
getent shadow nume-utilizator |
răsfoiește informațiile contului ascuns al
„nume-utilizator” |
getent group nume-grup |
răsfoiește informațiile despre grupul
„nume-grup” |
passwd |
gestionează parola pentru cont |
passwd -e |
definește o parolă unică pentru activarea contului |
chage |
gestionează informațiile privind expirarea parolelor |
Este posibil să aveți nevoie de privilegii de root pentru ca unele funcții
să funcționeze. Consultați crypt(3) pentru criptarea
parolelor și a datelor.
|
Notă |
|---|---|
|
În sistemul configurat cu PAM și NSS ca mașină Debian salsa, conținutul local
„ |
Când creați un cont în timpul instalării sistemului sau cu comanda
passwd(1), ar trebui să alegeți o parolă bună care să conțină cel puțin 6-8
caractere, inclusiv unul sau mai multe caractere din fiecare dintre
următoarele seturi, conform passwd(1).
literele alfabetului în minusculă
cifrele de la 0 la 9
Semne de punctuație
|
Avertisment |
|---|---|
|
Nu alegeți cuvinte ușor de ghicit pentru parolă. Numele contului, numărul de asigurare socială, numărul de telefon, adresa, data nașterii, numele membrilor familiei sau al animalelor de companie, cuvinte din dicționar, secvențe simple de caractere precum „12345” sau „qwerty” etc. sunt toate alegeri nepotrivite pentru parolă. |
Există instrumente independente pentru a genera parole criptate cu „salt” (sare).
Tabel 4.4. Lista instrumentelor pentru generarea parolei
| pachet | popcon(popularitate) | dimensiune | comanda | funcție |
|---|---|---|---|---|
whois
|
V:21, I:215 | 384 | mkpasswd |
interfață cu funcții excesive pentru biblioteca crypt(3) |
openssl
|
V:843, I:996 | 2493 | openssl passwd |
calculează rezumatele criptografice ale parolelor
(OpenSSL). passwd(1ssl) |
Modern Unix-like systems such as the Debian system provide PAM (Pluggable Authentication Modules) and NSS (Name Service Switch) mechanism to the local system administrator to configure his system. The role of these can be summarizes as the following.
PAM offers a flexible authentication mechanism used by the application software thus involves password data exchange.
NSS offers a flexible name service mechanism which is frequently used by the
C standard library to obtain the
user and group name for programs such as ls(1) and
id(1).
These PAM and NSS systems need to be configured consistently.
The notable packages of PAM and NSS systems are the following.
Tabel 4.5. List of notable PAM and NSS systems
| pachet | popcon(popularitate) | dimensiune | descriere |
|---|---|---|---|
libpam-modules
|
V:929, I:999 | 923 | Pluggable Authentication Modules (basic service) |
libpam-ldapd
|
V:5, I:14 | 80 | Pluggable Authentication Module allowing LDAP interfaces |
libpam-systemd
|
V:686, I:961 | 739 | Pluggable Authentication Module to register user sessions for
logind |
libpam-doc
|
I:6 | 1504 | Pluggable Authentication Modules (documentation in html and text) |
libc6
|
V:932, I:999 | 5678 | GNU C Library: Shared libraries which also provides "Name Service Switch" service |
glibc-doc
|
I:6 | 3857 | GNU C Library: Manpages |
glibc-doc-reference
|
I:3 | 14261 | GNU C Library: Reference manual in info, pdf and html format (non-free) |
libnss-mdns
|
V:209, I:516 | 141 | NSS module for Multicast DNS name resolution |
libnss-ldapd
|
V:6, I:16 | 131 | NSS module for using LDAP as a naming service |
"The Linux-PAM System Administrators' Guide" in
libpam-doc is essential for learning PAM configuration.
"System Databases and Name Service Switch" section in
glibc-doc-reference is essential for learning NSS
configuration.
|
Notă |
|---|---|
|
You can see more extensive and current list by " |
|
Notă |
|---|---|
|
PAM is the most basic way to initialize environment variables for each program with the system wide default value. |
Under systemd,
libpam-systemd package is installed to manage user logins
by registering user sessions in the systemd control group
hierarchy for logind. See
systemd-logind(8), logind.conf(5), and
pam_systemd(8).
Here are a few notable configuration files accessed by PAM and NSS.
Tabel 4.6. Lista fișierelor de configurare accesate de PAM și NSS
| fișier de configurare | funcție |
|---|---|
/etc/pam.d/nume-program |
set up PAM configuration for the
"program_name" program; see
pam(7) and pam.d(5) |
/etc/nsswitch.conf |
set up NSS configuration with the entry for each service. See
nsswitch.conf(5) |
/etc/nologin |
limit the user login by the pam_nologin(8) module |
/etc/securetty |
limit the tty for the root access by the pam_securetty(8)
module |
/etc/security/access.conf |
set access limit by the pam_access(8) module |
/etc/security/group.conf |
set group based restraint by the pam_group(8) module |
/etc/security/pam_env.conf |
set environment variables by the pam_env(8) module |
/etc/environment |
set additional environment variables by the pam_env(8)
module with the "readenv=1" argument |
/etc/default/locale |
set locale by pam_env(8) module with the
"readenv=1 envfile=/etc/default/locale" argument (Debian) |
/etc/security/limits.conf |
set resource restraint (ulimit, core, …) by the
pam_linits(8) module |
/etc/security/time.conf |
set time restraint by the pam_time(8) module |
/etc/systemd/logind.conf |
set systemd login manager configuration (see
logind.conf(5) and
systemd-logind.service(8)) |
The limitation of the password selection is implemented by the PAM modules,
pam_unix(8) and pam_cracklib(8). They
can be configured by their arguments.
|
Indicație |
|---|---|
|
PAM modules use suffix " |
The modern centralized system management can be deployed using the centralized Lightweight Directory Access Protocol (LDAP) server to administer many Unix-like and non-Unix-like systems on the network. The open source implementation of the Lightweight Directory Access Protocol is OpenLDAP Software.
The LDAP server provides the account information through the use of PAM and
NSS with libpam-ldapd and libnss-ldapd
packages for the Debian system. Several actions are required to enable this
(I have not used this setup and the following is purely secondary
information. Please read this in this context.).
You set up a centralized LDAP server by running a program such as the
stand-alone LDAP daemon, slapd(8).
You change the PAM configuration files in the
"/etc/pam.d/" directory to use
"pam_ldap.so" instead of the default
"pam_unix.so".
You change the NSS configuration in the
"/etc/nsswitch.conf" file to use
"ldap" instead of the default
("compat" or "file").
You must make libpam-ldapd to use SSL (or TLS) connection for the security of
password.
You may make libnss-ldapd to use SSL (or TLS) connection to ensure integrity of data
at the cost of the LDAP network overhead.
You should run nscd(8) locally to cache any LDAP search
results in order to reduce the LDAP network traffic.
See documentations in nsswitch.conf(5),
pam.conf(5), ldap.conf(5), and
"/usr/share/doc/libpam-doc/html/" offered by the
libpam-doc package and "info libc 'Name Service
Switch'" offered by the glibc-doc package.
Similarly, you can set up alternative centralized systems with other methods.
Integration of user and group with the Windows system.
Access Windows domain services by the
winbind and libpam_winbind packages.
See winbindd(8) and Integrating MS Windows Networks
with Samba.
Integration of user and group with the legacy Unix-like system.
Access NIS (originally called
YP) or NIS+ by the nis
package.
This is the famous phrase at the bottom of the old "info
su" page by Richard M. Stallman. Not to worry: the current
su command in Debian uses PAM, so that one can restrict
the ability to use su to the root
group by enabling the line with "pam_wheel.so" in
"/etc/pam.d/su".
Installing the libpam-cracklib package enables you to
force stricter password rule.
On a typical GNOME system which automatically installs
libpam-gnome-keyring,
"/etc/pam.d/common-password" looks like:
# here are the per-package modules (the "Primary" block) password requisite pam_cracklib.so retry=3 minlen=8 difok=3 password [success=1 default=ignore] pam_unix.so obscure use_authtok try_first_pass yescrypt # here's the fallback if no module succeeds password requisite pam_deny.so # prime the stack with a positive return value if there isn't one already; # this avoids us returning an error just because nothing sets a success code # since the modules above will each just jump around password required pam_permit.so # and here are more per-package modules (the "Additional" block) password optional pam_gnome_keyring.so # end of pam-auth-update config
|
Notă |
|---|---|
|
The information here may not be sufficient for your security needs but it should be a good start. |
Many popular transportation layer services communicate messages including password authentication in the plain text. It is very bad idea to transmit password in the plain text over the wild Internet where it can be intercepted. You can run these services over "Transport Layer Security" (TLS) or its predecessor, "Secure Sockets Layer" (SSL) to secure entire communication including password by the encryption.
Tabel 4.7. List of insecure and secure services and ports
| insecure service name | port | secure service name | port |
|---|---|---|---|
| www (http) | 80 | https | 443 |
| smtp (poștă electronică) | 25 | ssmtp (smtps) | 465 |
| ftp-data | 20 | ftps-data | 989 |
| ftp | 21 | ftps | 990 |
| telnet | 23 | telnets | 992 |
| imap2 | 143 | imaps | 993 |
| pop3 | 110 | pop3s | 995 |
| ldap | 389 | ldaps | 636 |
The encryption costs CPU time. As a CPU friendly alternative, you can keep communication in plain text while securing just the password with the secure authentication protocol such as "Authenticated Post Office Protocol" (APOP) for POP and "Challenge-Response Authentication Mechanism MD5" (CRAM-MD5) for SMTP and IMAP. (For sending mail messages over the Internet to your mail server from your mail client, it is recently popular to use new message submission port 587 instead of traditional SMTP port 25 to avoid port 25 blocking by the network provider while authenticating yourself with CRAM-MD5.)
The Secure Shell (SSH) program
provides secure encrypted communications between two untrusted hosts over an
insecure network with the secure authentication. It consists of the OpenSSH client, ssh(1), and the
OpenSSH daemon, sshd(8).
This SSH can be used to tunnel an insecure protocol communication such as
POP and X securely over the Internet with the port forwarding feature.
The client tries to authenticate itself using host-based authentication, public key authentication, challenge-response authentication, or password authentication. The use of public key authentication enables the remote password-less login. See Secțiune 6.3, „The remote access server and utilities (SSH)”.
Even when you run secure services such as Secure Shell (SSH) and Point-to-point tunneling protocol (PPTP) servers, there are still chances for the break-ins using brute force password guessing attack etc. from the Internet. Use of the firewall policy (see Secțiune 5.7, „Infrastructura netfilter”) together with the following security tools may improve the security situation.
Tabel 4.8. List of tools to provide extra security measures
| pachet | popcon(popularitate) | dimensiune | descriere |
|---|---|---|---|
knockd
|
V:0, I:1 | 110 | small port-knock daemon knockd(1) and client
knock(1) |
fail2ban
|
V:97, I:108 | 2191 | ban IPs that cause multiple authentication errors |
libpam-shield
|
V:0, I:0 | 115 | lock out remote attackers trying password guessing |
To prevent people to access your machine with root privilege, you need to make following actions.
Prevent physical access to the hard disk
Lock UEFI/BIOS and prevent booting from the removable media
Set password for GRUB interactive session
Lock GRUB menu from editing
With physical access to hard disk, resetting the password is relatively easy with following steps.
Move the hard disk to a PC with CD bootable UEFI/BIOS.
Boot system with a rescue media (Debian boot disk, Knoppix CD, GRUB CD, …).
Mount root partition with read/write access.
Edit "/etc/passwd" in the root partition and make the
second entry for the root account empty.
If you have edit access to the GRUB menu entry (see Secțiune 3.1.2, „Etapa 2: încărcătorul de pornire”) for grub-rescue-pc
at boot time, it is even easier with following steps.
Boot system with the kernel parameter changed to something like
"root=/dev/hda6 rw init=/bin/sh".
Edit "/etc/passwd" and make the second entry for the
root account empty.
Reboot system.
The root shell of the system is now accessible without password.
|
Notă |
|---|---|
|
Once one has root shell access, he can access everything on the system and
reset any passwords on the system. Further more, he may compromise password
for all user accounts using brute force password cracking tools such as
|
The only reasonable software solution to avoid all these concerns is to use
software encrypted root partition (or "/etc" partition)
using dm-crypt and initramfs (see Secțiune 9.9, „Data encryption tips”). You always need password to boot the
system, though.
There are access controls to the system other than the password based authentication and file permissions.
|
Notă |
|---|---|
|
See Secțiune 9.4.16, „Alt-SysRq key” for restricting the kernel secure attention key (SAK) feature. |
ACLs are a superset of the regular permissions as explained in Secțiune 1.2.3, „Permisiuni ale sistemului de fișiere”.
You encounter ACLs in action on modern desktop environment. When a
formatted USB storage device is auto mounted as, e.g.,
"/media/penguin/USBSTICK", a normal user
penguin can execute:
$ cd /media/penguin $ ls -la total 16 drwxr-x---+ 1 root root 16 Jan 17 22:55 . drwxr-xr-x 1 root root 28 Sep 17 19:03 .. drwxr-xr-x 1 penguin penguin 18 Jan 6 07:05 USBSTICK
"+" in the 11th column indicates ACLs are in action.
Without ACLs, a normal user penguin shouldn't be able to
list like this since penguin isn't in
root group. You can see ACLs as:
$ getfacl . # file: . # owner: root # group: root user::rwx user:penguin:r-x group::--- mask::r-x other::---
Here:
"user::rwx", "group::---", and
"other::---" correspond to the regular owner, group, and
other permissions.
The ACL "user:penguin:r-x" allows a normal user
penguin to have "r-x" permissions.
This enabled "ls -la" to list directory content.
The ACL "mask::r-x" sets the upper bound of permissions.
See "POSIX Access Control
Lists on Linux", acl(5),
getfacl(1), and setfacl(1) for more.
sudo(8) is a program designed to allow a sysadmin to give
limited root privileges to users and log root
activity. sudo requires only an ordinary user's
password. Install sudo package and activate it by
setting options in "/etc/sudoers". See configuration
example at "/usr/share/doc/sudo/examples/sudoers" and
Secțiune 1.1.12, „Configurarea «sudo»”.
My usage of sudo for the single user system (see Secțiune 1.1.12, „Configurarea «sudo»”) is aimed to protect myself from my own
stupidity. Personally, I consider using sudo a better
alternative than using the system from the root account all the time. For
example, the following changes the owner of
"some_file" to
"my_name".
$ sudo chown my_name some_file
Of course if you know the root password (as self-installed Debian users do),
any command can be run under root from any user's account using "su
-c".
PolicyKit is an operating system component for controlling system-wide privileges in Unix-like operating systems.
Newer GUI applications are not designed to run as privileged processes. They talk to privileged processes via PolicyKit to perform administrative operations.
PolicyKit limits such operations to user accounts belonging to the
sudo group on the Debian system.
A se vedea polkit(8).
For system security, it is a good idea to disable as much server programs as possible. This becomes critical for network servers. Having unused servers, activated either directly as daemon or via super-server program, are considered security risks.
Many programs, such as sshd(8), use PAM based access
control. There are many ways to restrict access to some server services.
configuration files:
"/etc/default/program_name"
Systemd service unit configuration for daemon
„/etc/inetd.conf” pentru super-server
"/etc/hosts.deny" and
"/etc/hosts.allow" for TCP
wrapper, tcpd(8)
„/etc/rpc.conf” pentru Sun
RPC
„/etc/at.allow” și „/etc/at.deny”
pentru atd(8)
„/etc/cron.allow” și „/etc/cron.deny”
pentru crontab(1)
Network firewall of netfilter infrastructure
See Secțiune 3.5, „Gestionarea sistemului”, Secțiune 4.5.1, „Configuration files accessed by PAM and NSS”, and Secțiune 5.7, „Infrastructura netfilter”.
|
Indicație |
|---|---|
|
If you have problems with remote access in a recent Debian system, comment
out offending configuration such as " |
Linux kernel has evolved and supports security features not found in traditional UNIX implementations.
Linux supports extended attributes
which extend the traditional UNIX attributes (see
xattr(7)).
Linux divides the privileges traditionally associated with superuser into
distinct units, known as capabilities(7), which can be
independently enabled and disabled. Capabilities are a per-thread attribute
since kernel version 2.2.
The Linux Security Module (LSM) framework provides a mechanism for various security checks to be hooked by new kernel extensions. For example:
Since these extensions may tighten privilege model tighter than the ordinary Unix-like security model policies, even the root power may be restricted. You are advised to read the Linux Security Module (LSM) framework document at kernel.org.
Linux namespaces wrap a global system
resource in an abstraction that makes it appear to the processes within the
namespace that they have their own isolated instance of the global
resource. Changes to the global resource are visible to other processes
that are members of the namespace, but are invisible to other processes.
Since kernel version 5.6, there are 8 kinds of namespaces (see
namespaces(7), unshare(1),
nsenter(1)).
As of Debian 11 Bullseye (2021), Debian uses unified cgroup hierarchy (a.k.a. cgroups-v2).
Usage examples of namespaces with cgroups to isolate their processes and to allow resource control are:
Systemd. A se vedea Secțiune 3.2.1, „Init systemd”.
Sandbox environment. See Secțiune 7.7, „Cutia cu nisip (sandbox)”.
Linux containers such as Docker, LXC. See Secțiune 9.11, „Virtualized system”.
These functionalities can't be realized by Secțiune 4.1, „Autentificare normală Unix”. These advanced topics are mostly out-of-scope for this introductory document.