Zum Inhalt springen

Apache/HTTP/Authentifizierung: Unterschied zwischen den Versionen

Aus Foxwiki
Die 5 zuletzt angesehenen Seiten:  Zugriffsrechte » OSI/2 Data Link » diff » postlock » Apache/HTTP/Authentifizierung
K Textersetzung - „line>“ durch „line copy>“
 
(46 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
== Konzept ==
'''Apache/HTTP/Zugriffsrechte''' - Apache Webserver Zugriffsrechte
== Rechtevergabe ==
== Nutzerverwaltung ==
== Zugriffsschutz ==
; Access Control
Access control refers to any means of controlling access to any resource.
* This is separate from authentication and authorization.


=== Related Modules and Directives ===
== Beschreibung ==
There are three types of modules involved in the authentication and authorization process.
; Zugriffskontrolle
* You will usually need to choose at least one module from each group.
Die Zugriffskontrolle bezieht sich auf jedes Mittel zur Kontrolle des Zugriffs auf eine Ressource
* Dies ist getrennt von Authentifizierung und Autorisierung


* Authentication type (see the <code>AuthType</code> directive)
== Einführung ==
** <code>mod_auth_basic</code>
Wenn Sie Informationen auf Ihrer Website haben, die sensibel oder nur für einen kleinen Personenkreis bestimmt sind, können Sie mit den Techniken in diesem Artikel sicherstellen, dass die Personen, die diese Seiten sehen, auch die sind, die sie sehen sollen
** <code>mod_auth_digest</code>
* Authentication provider (see the <code>AuthBasicProvider</code> and <code>AuthDigestProvider</code> directives)
** <code>mod_authn_anon</code>
** <code>mod_authn_dbd</code>
** <code>mod_authn_dbm</code>
** <code>mod_authn_file</code>
** <code>mod_authnz_ldap</code>
** <code>mod_authn_socache</code>
* Authorization (see the <code>Require</code> directive)
** <code>mod_authnz_ldap</code>
** <code>mod_authz_dbd</code>
** <code>mod_authz_dbm</code>
** <code>mod_authz_groupfile</code>
** <code>mod_authz_host</code>
** <code>mod_authz_owner</code>
** <code>mod_authz_user</code>


In addition to these modules, there are also <code>mod_authn_core</code> and <code>mod_authz_core</code>.
Dieser Artikel behandelt die "Standard"-Methode zum Schutz von Teilen Ihrer Website, die die meisten von Ihnen verwenden werden
* These modules implement core directives that are core to all auth modules.


The module <code>mod_authnz_ldap</code> is both an authentication and authorization provider.
; Hinweis
* The module <code>mod_authz_host</code> provides authorization and access control based on hostname, IP address or characteristics of the request, but is not part of the authentication provider system.
Wenn Ihre Daten wirklich sicher sein müssen, sollten Sie in Erwägung ziehen, zusätzlich zur Authentifizierung <code>mod_ssl</code> zu verwenden
* For backwards compatibility with the mod_access, there is a new module <code>mod_access_compat</code>.


You probably also want to take a look at the Access Control howto, which discusses the various ways to control access to your server.
== Voraussetzungen ==
Die in diesem Artikel besprochenen Direktiven müssen entweder in Ihrer Hauptkonfigurationsdatei des Servers (typischerweise in einem <code><Directory></code>-Abschnitt) oder in Konfigurationsdateien für einzelne Verzeichnisse (<code>.htaccess</code>-Dateien) enthalten sein


=== Introduction ===
Wenn Sie <code>.htaccess</code>-Dateien verwenden wollen, müssen Sie eine Serverkonfiguration haben, die es erlaubt, Authentifizierungsanweisungen in diese Dateien zu schreiben
If you have information on your web site that is sensitive or intended for only a small group of people, the techniques in this article will help you make sure that the people that see those pages are the people that you wanted to see them.
* Dies geschieht mit der Direktive <code>AllowOverride</code>, die angibt, welche Direktiven, wenn überhaupt, in die Konfigurationsdateien pro Verzeichnis aufgenommen werden dürfen


This article covers the "standard" way of protecting parts of your web site that most of you are going to use.
Da es hier um Authentifizierung geht, benötigen Sie eine <code>AllowOverride</code>-Direktive wie die folgende


==== Note: ====
<syntaxhighlight lang=apache line copy>
If your data really needs to be secure, consider using <code>mod_ssl</code> in addition to any authentication.
 
=== The Prerequisites ===
The directives discussed in this article will need to go either in your main server configuration file (typically in a <code><Directory></code> section), or in per-directory configuration files (<code>.htaccess</code> files).
 
If you plan to use <code>.htaccess</code> files, you will need to have a server configuration that permits putting authentication directives in these files.
* This is done with the <code>AllowOverride</code> directive, which specifies which directives, if any, may be put in per-directory configuration files.
 
Since we're talking here about authentication, you will need an <code>AllowOverride</code> directive like the following:
<syntaxhighlight lang=apache line>
  AllowOverride AuthConfig
  AllowOverride AuthConfig
</syntaxhighlight
</syntaxhighlight
>
>
Or, if you are just going to put the directives directly in your main server configuration file, you will of course need to have write permission to that file.
And you'll need to know a little bit about the directory structure of your server, in order to know where some files are kept.
* This should not be terribly difficult, and I'll try to make this clear when we come to that point.
You will also need to make sure that the modules <code>mod_authn_core</code> and <code>mod_authz_core</code> have either been built into the httpd binary or loaded by the httpd.conf configuration file.
* Both of these modules provide core directives and functionality that are critical to the configuration and use of authentication and authorization in the web server.
=== Getting it working ===
Here's the basics of password protecting a directory on your server.
First, you need to create a password file.
* Exactly how you do this will vary depending on what authentication provider you have chosen.
* More on that later.
* To start with, we'll use a text password file.
This file should be placed somewhere not accessible from the web.
* This is so that folks cannot download the password file.
* For example, if your documents are served out of <code>/usr/local/apache/htdocs</code>, you might want to put the password file(s) in <code>/usr/local/apache/passwd</code>.
To create the file, use the <code>htpasswd</code> utility that came with Apache.
* This will be located in the <code>bin</code> directory of wherever you installed Apache.
* If you have installed Apache from a third-party package, it may be in your execution path.
To create the file, type:
<syntaxhighlight lang=bash line>
htpasswd -c /usr/local/apache/passwd/passwords rbowen
htpasswd</code> will ask you for the password, and then ask you to type it again to confirm it:
htpasswd -c /usr/local/apache/passwd/passwords rbowen</code>
New password: mypassword
Re-type new password: mypassword
Adding password for user rbowen
</syntaxhighlight>


If <code>htpasswd</code> is not in your path, of course you'll have to type the full path to the file to get it to run.
Wenn Sie die Direktiven direkt in die Hauptkonfigurationsdatei Ihres Servers einfügen wollen, müssen Sie natürlich Schreibrechte für diese Datei haben
* With a default installation, it's located at <code>/usr/local/apache2/bin/htpasswd</code>


Next, you'll need to configure the server to request a password and tell the server which users are allowed access.
Und Sie müssen ein wenig über die Verzeichnisstruktur Ihres Servers Bescheid wissen, um zu wissen, wo einige Dateien gespeichert sind
* You can do this either by editing the <code>httpd.conf</code> file or using an <code>.htaccess</code> file.
* Dies sollte nicht besonders schwierig sein, und ich werde versuchen, dies zu erläutern, wenn wir zu diesem Punkt kommen
* For example, if you wish to protect the directory <code>/usr/local/apache/htdocs/secret</code>, you can use the following directives, either placed in the file <code>/usr/local/apache/htdocs/secret/.htaccess</code>, or placed in <code>httpd.conf</code> inside a <Directory "/usr/local/apache/htdocs/secret"> section.


<syntaxhighlight lang=bash line>
Sie müssen auch sicherstellen, dass die Module <code>mod_authn_core</code> und <code>mod_authz_core</code> entweder in die httpd-Binärdatei eingebaut oder durch die Konfigurationsdatei httpd.conf geladen wurden
AuthType Basic
* Diese beiden Module stellen zentrale Direktiven und Funktionen bereit, die für die Konfiguration und Verwendung von Authentifizierung und Autorisierung im Webserver entscheidend sind
AuthName "Restricted Files"
# (Following line optional)
AuthBasicProvider file
AuthUserFile "/usr/local/apache/passwd/passwords"
Require user rbowen
</syntaxhighlight>


Let's examine each of those directives individually.
Betrachten wir jede dieser Direktiven einzeln
* The <code>AuthType</code> directive selects the method that is used to authenticate the user.
* Die Direktive <code>AuthType</code> wählt die Methode aus, die zur Authentifizierung des Benutzers verwendet wird
* The most common method is <code>Basic</code>, and this is the method implemented by <code>mod_auth_basic</code>.
* Die gebräuchlichste Methode ist <code>Basic</code>, und dies ist die Methode, die von <code>mod_auth_basic</code> implementiert wird
* It is important to be aware, however, that Basic authentication sends the password from the client to the server unencrypted.
* Es ist jedoch wichtig zu wissen, dass Basic Authentication das Passwort unverschlüsselt vom Client zum Server sendet
* This method should therefore not be used for highly sensitive data, unless accompanied by <code>mod_ssl</code>.
* Diese Methode sollte daher nicht für hochsensible Daten verwendet werden, es sei denn, sie wird von <code>mod_ssl</code> begleitet
* Apache supports one other authentication method: <code>AuthType Digest</code>.
* Apache unterstützt eine weitere Authentifizierungsmethode: <code>AuthType Digest</code>
* This method is implemented by <code>mod_auth_digest</code> and was intended to be more secure.
* Diese Methode wird durch <code>mod_auth_digest</code> implementiert und war als sicherer gedacht
* This is no longer the case and the connection should be encrypted with <code>mod_ssl</code> instead.
* Dies ist nicht mehr der Fall und die Verbindung sollte stattdessen mit <code>mod_ssl</code> verschlüsselt werden


The <code>AuthName</code> directive sets the <dfn>Realm</dfn> to be used in the authentication.
Die Direktive <code>AuthName</code> legt den <dfn>Realm</dfn> fest, der bei der Authentifizierung verwendet wird
* The realm serves two major functions.
* Der Realm dient zwei Hauptfunktionen
* First, the client often presents this information to the user as part of the password dialog box.
* Erstens zeigt der Client dem Benutzer diese Information oft als Teil des Passwortdialogs an
* Second, it is used by the client to determine what password to send for a given authenticated area.
* Zweitens wird er vom Client verwendet, um zu bestimmen, welches Kennwort für einen bestimmten authentifizierten Bereich zu senden ist


So, for example, once a client has authenticated in the <code>"Restricted Files"</code> area, it will automatically retry the same password for any area on the same server that is marked with the <code>"Restricted Files"</code> Realm.
Hat sich ein Client beispielsweise einmal im Bereich <code>"Eingeschränkte Dateien"</code> authentifiziert, wird er automatisch dasselbe Kennwort für jeden Bereich auf demselben Server wiederholen, der mit dem <code>"Eingeschränkte Dateien"</code> Realm gekennzeichnet ist
* Therefore, you can prevent a user from being prompted more than once for a password by letting multiple restricted areas share the same realm.
* Sie können also verhindern, dass ein Benutzer mehr als einmal zur Eingabe eines Passworts aufgefordert wird, indem Sie mehrere eingeschränkte Bereiche auf denselben Realm zugreifen lassen
* Of course, for security reasons, the client will always need to ask again for the password whenever the hostname of the server changes.
* Aus Sicherheitsgründen wird der Client natürlich immer wieder nach dem Passwort fragen müssen, wenn sich der Hostname des Servers ändert


The <code>AuthBasicProvider</code> is, in this case, optional, since <code>file</code> is the default value for this directive.
Der <code>AuthBasicProvider</code> ist in diesem Fall optional, da <code>file</code> der Standardwert für diese Direktive ist
* You'll need to use this directive if you are choosing a different source for authentication, such as <code>mod_authn_dbm</code> or <code>mod_authn_dbd</code>.
* Sie müssen diese Direktive verwenden, wenn Sie eine andere Quelle für die Authentifizierung wählen, wie <code>mod_authn_dbm</code> oder <code>mod_authn_dbd</code>


The <code>AuthUserFile</code> directive sets the path to the password file that we just created with <code>htpasswd</code>.
Die Direktive <code>AuthUserFile</code> setzt den Pfad zu der Passwortdatei, die wir gerade mit <code>htpasswd</code> erstellt haben
* If you have a large number of users, it can be quite slow to search through a plain text file to authenticate the user on each request.
* Wenn Sie eine große Anzahl von Benutzern haben, kann es ziemlich langsam sein, eine reine Textdatei zu durchsuchen, um den Benutzer bei jeder Anfrage zu authentifizieren
* Apache also has the ability to store user information in fast database files.
* Apache hat auch die Möglichkeit, Benutzerinformationen in schnellen Datenbankdateien zu speichern
* The <code>mod_authn_dbm</code> module provides the <code>AuthDBMUserFile</code> directive.
* Das Modul <code>mod_authn_dbm</code> bietet die Direktive <code>AuthDBMUserFile</code>
* These files can be created and manipulated with the <code>dbmmanage</code> and <code>htdbm</code> programs.
* Diese Dateien können mit den Programmen <code>dbmmanage</code> und <code>htdbm</code> erstellt und manipuliert werden
* Many other types of authentication options are available from third party modules.
* Viele andere Arten von Authentifizierungsoptionen sind in Modulen von Drittanbietern verfügbar


Finally, the <code>Require</code> directive provides the authorization part of the process by setting the user that is allowed to access this region of the server.
Schließlich sorgt die <code>Require</code>-Direktive für den Autorisierungsteil des Prozesses, indem sie den Benutzer festlegt, der auf diesen Bereich des Servers zugreifen darf
* In the next section, we discuss various ways to use the <code>Require</code> directive.
* Im nächsten Abschnitt werden wir verschiedene Möglichkeiten zur Verwendung der <code>Require</code>-Direktive diskutieren


=== Letting more than one person in ===
== Benutzergruppen ==
The directives above only let one person (specifically someone with a username of <code>rbowen</code>) into the directory.
Die obigen Direktiven lassen nur eine Person (speziell jemanden mit dem Benutzernamen <code>rbowen</code>) in das Verzeichnis
* In most cases, you'll want to let more than one person in.
* In den meisten Fällen werden Sie mehr als eine Person reinlassen wollen
* This is where the <code>AuthGroupFile</code> comes in.
* Hier kommt die <code>AuthGroupFile</code> ins Spiel


If you want to let more than one person in, you'll need to create a group file that associates group names with a list of users in that group.
Wenn Sie mehr als eine Person zulassen wollen, müssen Sie eine Gruppendatei erstellen, die Gruppennamen mit einer Liste von Benutzern in dieser Gruppe verknüpft
* The format of this file is pretty simple, and you can create it with your favorite editor.
* Das Format dieser Datei ist recht einfach, und Sie können sie mit Ihrem bevorzugten Editor erstellen


The contents of the file will look like this:
Der Inhalt der Datei wird wie folgt aussehen
<syntaxhighlight lang=bash>
<syntaxhighlight lang=apache line copy>
GroupName: rbowen dpitts sungo rshersey
GroupName: rbowen dpitts sungo rshersey
</syntaxhighlight>
</syntaxhighlight>


That's just a list of the members of the group in a long line separated by spaces.
Das ist einfach eine Liste der Mitglieder der Gruppe in einer langen Zeile, getrennt durch Leerzeichen


To add a user to your already existing password file, type:
Um einen Benutzer zu Ihrer bereits bestehenden Passwortdatei hinzuzufügen, geben Sie ein
<syntaxhighlight lang=bash>
<syntaxhighlight lang=apache line copy>
htpasswd /usr/local/apache/passwd/passwords dpitts
htpasswd /usr/local/apache/passwd/passwords dpitts
</syntaxhighlight>
</syntaxhighlight>


You'll get the same response as before, but it will be appended to the existing file, rather than creating a new file. (It's the <code>-c</code> that makes it create a new password file).
Sie erhalten die gleiche Antwort wie zuvor, aber sie wird an die bestehende Datei angehängt, anstatt eine neue Datei zu erstellen. (Das <code>-c</code> bewirkt, dass eine neue Passwortdatei angelegt wird)


Now, you need to modify your <code>.htaccess</code> file or <code><Directory></code> block to look like the following:
Nun müssen Sie Ihre <code>.htaccess</code>-Datei oder Ihren <code><Directory></code>-Block so ändern, dass er wie folgt aussieht
<syntaxhighlight lang=apache line>
<syntaxhighlight lang=apache line copy>
AuthType Basic
AuthType Basic
AuthName "By Invitation Only"
AuthName "By Invitation Only"
# Optional line:
# Optional line
AuthBasicProvider file
AuthBasicProvider file
AuthUserFile "/usr/local/apache/passwd/passwords"
AuthUserFile "/usr/local/apache/passwd/passwords"
AuthGroupFile "/usr/local/apache/passwd/groups"
AuthGroupFile "/usr/local/apache/passwd/groups"
Require group GroupName
Require group GroupName
</syntaxhighlight>
</syntaxhighlight>


Now, anyone that is listed in the group <code>GroupName</code>, and has an entry in the <code>password</code> file, will be let in, if they type the correct password.
Jetzt wird jeder, der in der Gruppe <code>Gruppenname</code> aufgeführt ist und einen Eintrag in der Datei <code>Passwort</code> hat, eingelassen, wenn er das richtige Passwort eingibt


There's another way to let multiple users in that is less specific.
Es gibt noch eine andere Möglichkeit, mehrere Benutzer einzulassen, die weniger spezifisch ist


Rather than creating a group file, you can just use the following directive:
Anstatt eine Gruppendatei zu erstellen, können Sie einfach die folgende Richtlinie verwenden
<syntaxhighlight lang=apache>
<syntaxhighlight lang=apache line copy>
Require valid-user
Require valid-user
</syntaxhighlight>
</syntaxhighlight>
Using that rather than the <code>Require user rbowen</code> line will allow anyone in that is listed in the password file, and who correctly enters their password.


=== Possible problems ===
Wenn Sie dies anstelle der Zeile <code>Require user rbowen</code> verwenden, kann sich jeder anmelden, der in der Passwortdatei aufgeführt ist und sein Passwort korrekt eingibt
Because of the way that Basic authentication is specified, your username and password must be verified every time you request a document from the server.
 
* This is even if you're reloading the same page, and for every image on the page (if they come from a protected directory).
=== Mögliche Probleme ===
* As you can imagine, this slows things down a little.
Aufgrund der Art und Weise, wie die Basic-Authentifizierung spezifiziert ist, müssen Ihr Benutzername und Ihr Passwort jedes Mal überprüft werden, wenn Sie ein Dokument vom Server anfordern
* The amount that it slows things down is proportional to the size of the password file, because it has to open up that file, and go down the list of users until it gets to your name.
* Dies gilt auch, wenn Sie dieselbe Seite neu laden, und für jedes Bild auf der Seite (wenn es aus einem geschützten Verzeichnis stammt)
* And it has to do this every time a page is loaded.
* Wie Sie sich vorstellen können, verlangsamt dies die Abläufe ein wenig
* Die Verlangsamung ist proportional zur Größe der Kennwortdatei, denn sie muss diese Datei öffnen und die Liste der Benutzer durchgehen, bis sie zu Ihrem Namen gelangt
* Und das muss jedes Mal geschehen, wenn eine Seite geladen wird


A consequence of this is that there's a practical limit to how many users you can put in one password file.
Dies hat zur Folge, dass die Anzahl der Benutzer, die in einer Kennwörterdatei gespeichert werden können, in der Praxis begrenzt ist
* This limit will vary depending on the performance of your particular server machine, but you can expect to see slowdowns once you get above a few hundred entries, and may wish to consider a different authentication method at that time.
* Diese Grenze hängt von der Leistung Ihres Servers ab, aber ab einigen hundert Einträgen ist mit einer Verlangsamung zu rechnen, so dass Sie dann vielleicht eine andere Authentifizierungsmethode in Betracht ziehen sollten


=== Alternate password storage ===
== Speichern von Passwörtern ==
Because storing passwords in plain text files has the above problems, you may wish to store your passwords somewhere else, such as in a database.
; Alternatives Speichern von Kennwörtern
Da das Speichern von Passwörtern in reinen Textdateien die oben genannten Probleme mit sich bringt, möchten Sie Ihre Passwörter vielleicht woanders speichern, zum Beispiel in einer Datenbank
mod_authn_dbm
mod_authn_dbd
sind zwei Module, die dies möglich machen


<code>mod_authn_dbm</code> and <code>mod_authn_dbd</code> are two modules which make this possible.
Anstatt <code>AuthBasicProvider-Datei</code> zu wählen, können Sie stattdessen <code>dbm</code> oder <code>dbd</code> als Speicherformat wählen
* Rather than selecting <code>AuthBasicProvider file</code>, instead you can choose <code>dbm</code> or <code>dbd</code> as your storage format.


To select a dbm file rather than a text file, for example:
Um eine dbm-Datei statt einer Textdatei auszuwählen
<syntaxhighlight lang=apache line>
<syntaxhighlight lang=apache line copy>
<Directory "/www/docs/private">
<Directory "/www/docs/private">
  AuthName "Private"
  AuthName "Private"
  AuthType Basic
  AuthType Basic
Zeile 207: Zeile 137:
  AuthDBMUserFile "/www/passwords/passwd.dbm"
  AuthDBMUserFile "/www/passwords/passwd.dbm"
  Require valid-user
  Require valid-user
</Directory>
</Directory>
</syntaxhighlight>
</syntaxhighlight>


Other options are available.
Andere Optionen sind verfügbar
* Consult the <code>mod_authn_dbm</code> documentation for more details.
* Lesen Sie die [[mod_authn_dbm]] Dokumentation für weitere Details


=== Using multiple providers ===
==== Mehrerer Anbieter ====
With the introduction of the new provider based authentication and authorization architecture, you are no longer locked into a single authentication or authorization method.
; Verwendung mehrerer Anbieter
* In fact any number of the providers can be mixed and matched to provide you with exactly the scheme that meets your needs.
Mit der Einführung der neuen anbieterbasierten Authentifizierungs- und Autorisierungsarchitektur sind Sie nicht mehr auf eine einzige Authentifizierungs- oder Autorisierungsmethode festgelegt
* In the following example, both the file and LDAP based authentication providers are being used.
* Vielmehr können Sie eine beliebige Anzahl von Anbietern miteinander kombinieren, um genau das Schema zu erhalten, das Ihren Anforderungen entspricht
<syntaxhighlight lang=apache line>
* Im folgenden Beispiel werden sowohl der datei- als auch der LDAP-basierte Authentifizierungsanbieter verwendet
 
<syntaxhighlight lang=apache line copy>
  <Directory "/www/docs/private">
  <Directory "/www/docs/private">
  AuthName "Private"
  AuthName "Private"
Zeile 228: Zeile 160:
</syntaxhighlight>
</syntaxhighlight>


In this example the file provider will attempt to authenticate the user first.
In diesem Beispiel versucht der Dateianbieter zunächst, den Benutzer zu authentifizieren
* If it is unable to authenticate the user, the LDAP provider will be called.
* Ist er nicht in der Lage, den Benutzer zu authentifizieren, wird der LDAP-Anbieter aufgerufen
* This allows the scope of authentication to be broadened if your organization implements more than one type of authentication store.
* Dadurch kann der Bereich der Authentifizierung erweitert werden, wenn Ihre Organisation mehr als eine Art von Authentifizierungsspeicher implementiert
* Other authentication and authorization scenarios may include mixing one type of authentication with a different type of authorization.
* Andere Authentifizierungs- und Autorisierungsszenarien können die Kombination einer Authentifizierungsart mit einer anderen Art von Autorisierung beinhalten
* For example, authenticating against a password file yet authorizing against an LDAP directory.
* Etwa die Authentifizierung anhand einer Kennwortdatei und die Autorisierung anhand eines LDAP-Verzeichnisses
 
Genauso wie mehrere Authentifizierungsanbieter implementiert werden können, können auch mehrere Autorisierungsmethoden verwendet werden
* In diesem Beispiel wird sowohl die Dateigruppenautorisierung als auch die LDAP-Gruppenautorisierung verwendet


Just as multiple authentication providers can be implemented, multiple authorization methods can also be used.
<syntaxhighlight lang=apache line copy>
* In this example both file group authorization as well as LDAP group authorization is being used.
<syntaxhighlight lang=apache line>
  <Directory "/www/docs/private">
  <Directory "/www/docs/private">
  AuthName "Private"
  AuthName "Private"
Zeile 247: Zeile 180:
  Require ldap-group cn=mygroup,o=yourorg
  Require ldap-group cn=mygroup,o=yourorg
  </Directory>
  </Directory>
<syntaxhighlight>
</syntaxhighlight>
 
To take authorization a little further, authorization container directives such as <code><RequireAll></code> and <code><RequireAny></code> allow logic to be applied so that the order in which authorization is handled can be completely controlled through the configuration.
* See Authorization Containers for an example of how they may be applied.
 
=== Beyond just authorization ===
The way that authorization can be applied is now much more flexible than just a single check against a single data store.
* Ordering, logic and choosing how authorization will be done is now possible.
 
==== Applying logic and ordering ====
Controlling how and in what order authorization will be applied has been a bit of a mystery in the past.
* In Apache 2.2 a provider-based authentication mechanism was introduced to decouple the actual authentication process from authorization and supporting functionality.
* One of the side benefits was that authentication providers could be configured and called in a specific order which didn't depend on the load order of the auth module itself.
* This same provider based mechanism has been brought forward into authorization as well.
* What this means is that the <code>Require</code> directive not only specifies which authorization methods should be used, it also specifies the order in which they are called.
* Multiple authorization methods are called in the same order in which the <code>Require</code> directives appear in the configuration.
 
With the introduction of authorization container directives such as <code><RequireAll></code> and <code><RequireAny></code>, the configuration also has control over when the authorization methods are called and what criteria determines when access is granted.
* See Authorization Containers for an example of how they may be used to express complex authorization logic.
 
By default all <code>Require</code> directives are handled as though contained within a <code><RequireAny></code> container directive.
* In other words, if any of the specified authorization methods succeed, then authorization is granted.


==== Using authorization providers for access control ====
Um die Autorisierung noch ein wenig weiter zu fassen, ermöglichen Autorisierungs-Container-Direktiven wie <code><RequireAll></code> und <code><RequireAny></code> die Anwendung einer Logik, so dass die Reihenfolge der Autorisierung vollständig über die Konfiguration gesteuert werden kann
Authentication by username and password is only part of the story.
* Siehe Authorization Containers für ein Beispiel, wie sie angewendet werden können
* Frequently you want to let people in based on something other than who they are.
* Something such as where they are coming from.


The authorization providers <code>all</code>, <code>env</code>, <code>host</code> and <code>ip</code> let you allow or deny access based on other host based criteria such as host name or ip address of the machine requesting a document.


The usage of these providers is specified through the <code>Require</code> directive.
<noinclude>
* This directive registers the authorization providers that will be called during the authorization stage of the request processing.
* For example:
Require ip <var>address</var>


where <var>address</var> is an IP address (or a partial IP address) or:
== Module und Direktiven ==
Require host <var>domain_name</var>
Es gibt drei Arten von Modulen, die am Authentifizierungs- und Autorisierungsprozess beteiligt sind
* In der Regel müssen Sie mindestens ein Modul aus jeder Gruppe auswählen


where <var>domain_name</var> is a fully qualified domain name (or a partial domain name); you may provide multiple addresses or domain names, if desired.
; Authentication type
See the <code>AuthType</code> directive
* <code>mod_auth_basic</code>
* <code>mod_auth_digest</code>


For example, if you have someone spamming your message board, and you want to keep them out, you could do the following:
; Authentication provider
<RequireAll>
see the <code>AuthBasicProvider</code> and <code>AuthDigestProvider</code> directives
Require all granted
* <code>mod_authn_anon</code>
Require not ip 10.252.46.165
* <code>mod_authn_dbd</code>
</RequireAll>
* <code>mod_authn_dbm</code>
Visitors coming from that address will not be able to see the content covered by this directive.
* <code>mod_authn_file</code>
* If, instead, you have a machine name, rather than an IP address, you can use that.
* <code>mod_authnz_ldap</code>
<RequireAll>
* <code>mod_authn_socache</code>
Require all granted
Require not host host.example.com
</RequireAll>
And, if you'd like to block access from an entire domain, you can specify just part of an address or domain name:
<RequireAll>
Require all granted
Require not ip 192.168.205
Require not host phishers.example.com moreidiots.example
Require not host ke
</RequireAll>
Using <code><RequireAll></code> with multiple <code><Require></code> directives, each negated with <code>not</code>, will only allow access, if all of negated conditions are true.
* In other words, access will be blocked, if any of the negated conditions fails.


==== Access Control backwards compatibility ====
; Authorization
One of the side effects of adopting a provider based mechanism for authentication is that the previous access control directives <code>Order</code>, <code>Allow</code>, <code>Deny</code> and <code>Satisfy</code> are no longer needed.
see the <code>Require</code> directive
* However to provide backwards compatibility for older configurations, these directives have been moved to the <code>mod_access_compat</code> module.
* <code>mod_authnz_ldap</code>
* <code>mod_authz_dbd</code>
* <code>mod_authz_dbm</code>
* <code>mod_authz_groupfile</code>
* <code>mod_authz_host</code>
* <code>mod_authz_owner</code>
* <code>mod_authz_user</code>


==== Note ====
; mod_authn_core/mod_authz_core
The directives provided by <code>mod_access_compat</code> have been deprecated by <code>mod_authz_host</code>.
Zusätzlich zu diesen Modulen gibt es noch <code>mod_authn_core</code> und <code>mod_authz_core</code>
* Mixing old directives like <code>Order</code>, <code>Allow</code> or <code>Deny</code> with new ones like <code>Require</code> is technically possible but discouraged.
* Diese Module implementieren Kernrichtlinien, die für alle Auth-Module grundlegend sind
* The <code>mod_access_compat</code> module was created to support configurations containing only old directives to facilitate the 2.4 upgrade.
* Please check the upgrading guide for more information.


=== Authentication Caching ===
; mod_authnz_ldap
There may be times when authentication puts an unacceptable load on a provider or on your network.
Das Modul <code>mod_authnz_ldap</code> ist sowohl ein Authentifizierungs- als auch ein Autorisierungsanbieter
* This is most likely to affect users of <code>mod_authn_dbd</code> (or third-party/custom providers).
* Das Modul <code>mod_authz_host</code> bietet Autorisierung und Zugriffskontrolle auf der Basis von Hostname, IP-Adresse oder Merkmalen der Anfrage, ist aber nicht Teil des Authentifizierungsprovider-Systems
* To deal with this, HTTPD 2.3/2.4 introduces a new caching provider <code>mod_authn_socache</code> to cache credentials and reduce the load on the origin provider(s).
* Für die Abwärtskompatibilität mit mod_access gibt es ein neues Modul <code>mod_access_compat</code>


This may offer a substantial performance boost to some users.
== Anhang ==
=== Siehe auch ===
* [[Apache/HTTP/Zugriffsrechte]]
{{Special:PrefixIndex/{{BASEPAGENAME}}/}}


=== More information ===
=== Links ===
You should also read the documentation for <code>mod_auth_basic</code> and <code>mod_authz_host</code> which contain some more information about how this all works.
==== Weblinks ====
* The directive <code><AuthnProviderAlias></code> can also help in simplifying certain authentication configurations.
# https://httpd.apache.org/docs/2.4/howto/access.html
 
The various ciphers supported by Apache for authentication data are explained in Password Encryptions.
 
And you may want to look at the Access Control howto, which discusses a number of related topics.
*
 
; Siehe auch
* https://httpd.apache.org/docs/2.4/howto/access.html


[[Kategorie:HTTP]]
[[Kategorie:HTTP]]
[[Kategorie:Apache/HTTP/Sicherheit]]
[[Kategorie:Apache/HTTP/Sicherheit]]
</noinclude>
</noinclude>

Aktuelle Version vom 11. Mai 2025, 13:40 Uhr

Apache/HTTP/Zugriffsrechte - Apache Webserver Zugriffsrechte

Beschreibung

Zugriffskontrolle

Die Zugriffskontrolle bezieht sich auf jedes Mittel zur Kontrolle des Zugriffs auf eine Ressource

  • Dies ist getrennt von Authentifizierung und Autorisierung

Einführung

Wenn Sie Informationen auf Ihrer Website haben, die sensibel oder nur für einen kleinen Personenkreis bestimmt sind, können Sie mit den Techniken in diesem Artikel sicherstellen, dass die Personen, die diese Seiten sehen, auch die sind, die sie sehen sollen

Dieser Artikel behandelt die "Standard"-Methode zum Schutz von Teilen Ihrer Website, die die meisten von Ihnen verwenden werden

Hinweis

Wenn Ihre Daten wirklich sicher sein müssen, sollten Sie in Erwägung ziehen, zusätzlich zur Authentifizierung mod_ssl zu verwenden

Voraussetzungen

Die in diesem Artikel besprochenen Direktiven müssen entweder in Ihrer Hauptkonfigurationsdatei des Servers (typischerweise in einem <Directory>-Abschnitt) oder in Konfigurationsdateien für einzelne Verzeichnisse (.htaccess-Dateien) enthalten sein

Wenn Sie .htaccess-Dateien verwenden wollen, müssen Sie eine Serverkonfiguration haben, die es erlaubt, Authentifizierungsanweisungen in diese Dateien zu schreiben

  • Dies geschieht mit der Direktive AllowOverride, die angibt, welche Direktiven, wenn überhaupt, in die Konfigurationsdateien pro Verzeichnis aufgenommen werden dürfen

Da es hier um Authentifizierung geht, benötigen Sie eine AllowOverride-Direktive wie die folgende

 AllowOverride AuthConfig

Wenn Sie die Direktiven direkt in die Hauptkonfigurationsdatei Ihres Servers einfügen wollen, müssen Sie natürlich Schreibrechte für diese Datei haben

Und Sie müssen ein wenig über die Verzeichnisstruktur Ihres Servers Bescheid wissen, um zu wissen, wo einige Dateien gespeichert sind

  • Dies sollte nicht besonders schwierig sein, und ich werde versuchen, dies zu erläutern, wenn wir zu diesem Punkt kommen

Sie müssen auch sicherstellen, dass die Module mod_authn_core und mod_authz_core entweder in die httpd-Binärdatei eingebaut oder durch die Konfigurationsdatei httpd.conf geladen wurden

  • Diese beiden Module stellen zentrale Direktiven und Funktionen bereit, die für die Konfiguration und Verwendung von Authentifizierung und Autorisierung im Webserver entscheidend sind

Betrachten wir jede dieser Direktiven einzeln

  • Die Direktive AuthType wählt die Methode aus, die zur Authentifizierung des Benutzers verwendet wird
  • Die gebräuchlichste Methode ist Basic, und dies ist die Methode, die von mod_auth_basic implementiert wird
  • Es ist jedoch wichtig zu wissen, dass Basic Authentication das Passwort unverschlüsselt vom Client zum Server sendet
  • Diese Methode sollte daher nicht für hochsensible Daten verwendet werden, es sei denn, sie wird von mod_ssl begleitet
  • Apache unterstützt eine weitere Authentifizierungsmethode: AuthType Digest
  • Diese Methode wird durch mod_auth_digest implementiert und war als sicherer gedacht
  • Dies ist nicht mehr der Fall und die Verbindung sollte stattdessen mit mod_ssl verschlüsselt werden

Die Direktive AuthName legt den Realm fest, der bei der Authentifizierung verwendet wird

  • Der Realm dient zwei Hauptfunktionen
  • Erstens zeigt der Client dem Benutzer diese Information oft als Teil des Passwortdialogs an
  • Zweitens wird er vom Client verwendet, um zu bestimmen, welches Kennwort für einen bestimmten authentifizierten Bereich zu senden ist

Hat sich ein Client beispielsweise einmal im Bereich "Eingeschränkte Dateien" authentifiziert, wird er automatisch dasselbe Kennwort für jeden Bereich auf demselben Server wiederholen, der mit dem "Eingeschränkte Dateien" Realm gekennzeichnet ist

  • Sie können also verhindern, dass ein Benutzer mehr als einmal zur Eingabe eines Passworts aufgefordert wird, indem Sie mehrere eingeschränkte Bereiche auf denselben Realm zugreifen lassen
  • Aus Sicherheitsgründen wird der Client natürlich immer wieder nach dem Passwort fragen müssen, wenn sich der Hostname des Servers ändert

Der AuthBasicProvider ist in diesem Fall optional, da file der Standardwert für diese Direktive ist

  • Sie müssen diese Direktive verwenden, wenn Sie eine andere Quelle für die Authentifizierung wählen, wie mod_authn_dbm oder mod_authn_dbd

Die Direktive AuthUserFile setzt den Pfad zu der Passwortdatei, die wir gerade mit htpasswd erstellt haben

  • Wenn Sie eine große Anzahl von Benutzern haben, kann es ziemlich langsam sein, eine reine Textdatei zu durchsuchen, um den Benutzer bei jeder Anfrage zu authentifizieren
  • Apache hat auch die Möglichkeit, Benutzerinformationen in schnellen Datenbankdateien zu speichern
  • Das Modul mod_authn_dbm bietet die Direktive AuthDBMUserFile
  • Diese Dateien können mit den Programmen dbmmanage und htdbm erstellt und manipuliert werden
  • Viele andere Arten von Authentifizierungsoptionen sind in Modulen von Drittanbietern verfügbar

Schließlich sorgt die Require-Direktive für den Autorisierungsteil des Prozesses, indem sie den Benutzer festlegt, der auf diesen Bereich des Servers zugreifen darf

  • Im nächsten Abschnitt werden wir verschiedene Möglichkeiten zur Verwendung der Require-Direktive diskutieren

Benutzergruppen

Die obigen Direktiven lassen nur eine Person (speziell jemanden mit dem Benutzernamen rbowen) in das Verzeichnis

  • In den meisten Fällen werden Sie mehr als eine Person reinlassen wollen
  • Hier kommt die AuthGroupFile ins Spiel

Wenn Sie mehr als eine Person zulassen wollen, müssen Sie eine Gruppendatei erstellen, die Gruppennamen mit einer Liste von Benutzern in dieser Gruppe verknüpft

  • Das Format dieser Datei ist recht einfach, und Sie können sie mit Ihrem bevorzugten Editor erstellen

Der Inhalt der Datei wird wie folgt aussehen

GroupName: rbowen dpitts sungo rshersey

Das ist einfach eine Liste der Mitglieder der Gruppe in einer langen Zeile, getrennt durch Leerzeichen

Um einen Benutzer zu Ihrer bereits bestehenden Passwortdatei hinzuzufügen, geben Sie ein

htpasswd /usr/local/apache/passwd/passwords dpitts

Sie erhalten die gleiche Antwort wie zuvor, aber sie wird an die bestehende Datei angehängt, anstatt eine neue Datei zu erstellen. (Das -c bewirkt, dass eine neue Passwortdatei angelegt wird)

Nun müssen Sie Ihre .htaccess-Datei oder Ihren <Directory>-Block so ändern, dass er wie folgt aussieht

AuthType Basic
AuthName "By Invitation Only"
# Optional line
AuthBasicProvider file
AuthUserFile "/usr/local/apache/passwd/passwords"
AuthGroupFile "/usr/local/apache/passwd/groups"
Require group GroupName

Jetzt wird jeder, der in der Gruppe Gruppenname aufgeführt ist und einen Eintrag in der Datei Passwort hat, eingelassen, wenn er das richtige Passwort eingibt

Es gibt noch eine andere Möglichkeit, mehrere Benutzer einzulassen, die weniger spezifisch ist

Anstatt eine Gruppendatei zu erstellen, können Sie einfach die folgende Richtlinie verwenden

Require valid-user

Wenn Sie dies anstelle der Zeile Require user rbowen verwenden, kann sich jeder anmelden, der in der Passwortdatei aufgeführt ist und sein Passwort korrekt eingibt

Mögliche Probleme

Aufgrund der Art und Weise, wie die Basic-Authentifizierung spezifiziert ist, müssen Ihr Benutzername und Ihr Passwort jedes Mal überprüft werden, wenn Sie ein Dokument vom Server anfordern

  • Dies gilt auch, wenn Sie dieselbe Seite neu laden, und für jedes Bild auf der Seite (wenn es aus einem geschützten Verzeichnis stammt)
  • Wie Sie sich vorstellen können, verlangsamt dies die Abläufe ein wenig
  • Die Verlangsamung ist proportional zur Größe der Kennwortdatei, denn sie muss diese Datei öffnen und die Liste der Benutzer durchgehen, bis sie zu Ihrem Namen gelangt
  • Und das muss jedes Mal geschehen, wenn eine Seite geladen wird

Dies hat zur Folge, dass die Anzahl der Benutzer, die in einer Kennwörterdatei gespeichert werden können, in der Praxis begrenzt ist

  • Diese Grenze hängt von der Leistung Ihres Servers ab, aber ab einigen hundert Einträgen ist mit einer Verlangsamung zu rechnen, so dass Sie dann vielleicht eine andere Authentifizierungsmethode in Betracht ziehen sollten

Speichern von Passwörtern

Alternatives Speichern von Kennwörtern

Da das Speichern von Passwörtern in reinen Textdateien die oben genannten Probleme mit sich bringt, möchten Sie Ihre Passwörter vielleicht woanders speichern, zum Beispiel in einer Datenbank

mod_authn_dbm
mod_authn_dbd

sind zwei Module, die dies möglich machen

Anstatt AuthBasicProvider-Datei zu wählen, können Sie stattdessen dbm oder dbd als Speicherformat wählen

Um eine dbm-Datei statt einer Textdatei auszuwählen

<Directory "/www/docs/private">
 AuthName "Private"
 AuthType Basic
 AuthBasicProvider dbm
 AuthDBMUserFile "/www/passwords/passwd.dbm"
 Require valid-user
</Directory>

Andere Optionen sind verfügbar

Mehrerer Anbieter

Verwendung mehrerer Anbieter

Mit der Einführung der neuen anbieterbasierten Authentifizierungs- und Autorisierungsarchitektur sind Sie nicht mehr auf eine einzige Authentifizierungs- oder Autorisierungsmethode festgelegt

  • Vielmehr können Sie eine beliebige Anzahl von Anbietern miteinander kombinieren, um genau das Schema zu erhalten, das Ihren Anforderungen entspricht
  • Im folgenden Beispiel werden sowohl der datei- als auch der LDAP-basierte Authentifizierungsanbieter verwendet
 <Directory "/www/docs/private">
 AuthName "Private"
 AuthType Basic
 AuthBasicProvider file ldap
 AuthUserFile "/usr/local/apache/passwd/passwords"
 AuthLDAPURL ldap://ldaphost/o=yourorg
 Require valid-user
 </Directory>

In diesem Beispiel versucht der Dateianbieter zunächst, den Benutzer zu authentifizieren

  • Ist er nicht in der Lage, den Benutzer zu authentifizieren, wird der LDAP-Anbieter aufgerufen
  • Dadurch kann der Bereich der Authentifizierung erweitert werden, wenn Ihre Organisation mehr als eine Art von Authentifizierungsspeicher implementiert
  • Andere Authentifizierungs- und Autorisierungsszenarien können die Kombination einer Authentifizierungsart mit einer anderen Art von Autorisierung beinhalten
  • Etwa die Authentifizierung anhand einer Kennwortdatei und die Autorisierung anhand eines LDAP-Verzeichnisses

Genauso wie mehrere Authentifizierungsanbieter implementiert werden können, können auch mehrere Autorisierungsmethoden verwendet werden

  • In diesem Beispiel wird sowohl die Dateigruppenautorisierung als auch die LDAP-Gruppenautorisierung verwendet
 <Directory "/www/docs/private">
 AuthName "Private"
 AuthType Basic
 AuthBasicProvider file
 AuthUserFile "/usr/local/apache/passwd/passwords"
 AuthLDAPURL ldap://ldaphost/o=yourorg
 AuthGroupFile "/usr/local/apache/passwd/groups"
 Require group GroupName
 Require ldap-group cn=mygroup,o=yourorg
 </Directory>

Um die Autorisierung noch ein wenig weiter zu fassen, ermöglichen Autorisierungs-Container-Direktiven wie <RequireAll> und <RequireAny> die Anwendung einer Logik, so dass die Reihenfolge der Autorisierung vollständig über die Konfiguration gesteuert werden kann

  • Siehe Authorization Containers für ein Beispiel, wie sie angewendet werden können



Module und Direktiven

Es gibt drei Arten von Modulen, die am Authentifizierungs- und Autorisierungsprozess beteiligt sind

  • In der Regel müssen Sie mindestens ein Modul aus jeder Gruppe auswählen
Authentication type

See the AuthType directive

  • mod_auth_basic
  • mod_auth_digest
Authentication provider

see the AuthBasicProvider and AuthDigestProvider directives

  • mod_authn_anon
  • mod_authn_dbd
  • mod_authn_dbm
  • mod_authn_file
  • mod_authnz_ldap
  • mod_authn_socache
Authorization

see the Require directive

  • mod_authnz_ldap
  • mod_authz_dbd
  • mod_authz_dbm
  • mod_authz_groupfile
  • mod_authz_host
  • mod_authz_owner
  • mod_authz_user
mod_authn_core/mod_authz_core

Zusätzlich zu diesen Modulen gibt es noch mod_authn_core und mod_authz_core

  • Diese Module implementieren Kernrichtlinien, die für alle Auth-Module grundlegend sind
mod_authnz_ldap

Das Modul mod_authnz_ldap ist sowohl ein Authentifizierungs- als auch ein Autorisierungsanbieter

  • Das Modul mod_authz_host bietet Autorisierung und Zugriffskontrolle auf der Basis von Hostname, IP-Adresse oder Merkmalen der Anfrage, ist aber nicht Teil des Authentifizierungsprovider-Systems
  • Für die Abwärtskompatibilität mit mod_access gibt es ein neues Modul mod_access_compat

Anhang

Siehe auch

Links

Weblinks

  1. https://httpd.apache.org/docs/2.4/howto/access.html