Kerberos (протокол): відмінності між версіями

[неперевірена версія][неперевірена версія]
Вилучено вміст Додано вміст
Yava.ua (обговорення | внесок)
Немає опису редагування
Yava.ua (обговорення | внесок)
Немає опису редагування
Рядок 11:
== Цілі ==
В своїй основі протокол Кербер ставить перед собою реалізацію таких принципів:
 
* Пароль користувача ніколи не повинен передаватись по мережі;
* Пароль користувача ні в якій формі не повинен зберігатись на клієнтській машині: він має бути ліквідований одразу після використання;
Рядок 19 ⟶ 18:
* Не лише користувачі зобов'язані підтвердити, що вони є тими, ким заявляють, але й прикладні сервери повинні підтвердити свою ідентичність користувачам. Цей процес називається '''Взаємна аутентифікація''';
* Після завершення етапів аутентифікації та авторизації, клієнт та сервер повинні мати можливість встановити зашифрований зв'язок. З цією метою Кербер підтримує генерацію і обмін ключів шифрування.
 
== Опис протоколу ==
В основу Кербер покладений [[протокол Нідхема-Шредера]]. У ролі довіреної третьої сторони вистпує Центр Розподілення Ключів (ЦРК, {{lang-en|Key Distribution Center}}), що складається із двох логічно розділених частин: Сервер Аутентифікації (ЦА, {{lang-en|Authentication Server}}) і Сервер Видачі Білетів (СВБ, {{lang-en|Ticket Granting Server}}). Кербер працює на основі "білетів", які використовуються для підтвердження ідентичності користувачів.
 
ЦРК зберігає базу даних закритих ключів; закритий ключ учасника мережі відомий лише йому та ЦРК. Знання цього ключа є підтвердженням ідентичності учасника. Для комунікації двох учасників ЦРК генерує ключ сесії, який забезпечує безпеку повідомлень. Безпека протоколу сильно залежить від синхронізації часу учасників мережі та від обмеження часу придатності білетів.
 
<!--
 
What follows is a simplified description of the protocol.
The following abbreviations will be used:
*AS = Authentication Server
*TGS = Ticket Granting Server
*SS = Service Server
*TGT = Ticket Granting Ticket
 
Briefly, the client authenticates to AS using a long-term ''[[shared secret]]'' and receives a ticket '''from''' the AS. Later the client can use this ticket to get additional tickets for SS without resorting to using the shared secret. These tickets can be used to prove authentication to SS.
 
In more detail:
 
User Client-based Logon Steps:
 
# A user enters a username and password on the [[client (computing)|client]].
# The client performs a [[one-way function]] (Hash mostly) on the entered password, and this becomes the secret key of the client.
 
Client Authentication Steps:
 
# The client sends a [[cleartext]] message to the AS requesting services on behalf of the user. Sample message: "User XYZ would like to request services". Note: Neither the secret key nor the password is sent to the AS.
# The AS checks to see if the client is in its database. If it is, the AS sends back the following two messages to the client:
#* Message A: ''Client/TGS Session Key'' encrypted using the secret key of the user.
#* Message B: ''Ticket-Granting Ticket'' (which includes the client ID, client network address, ticket validity period, and the ''client/TGS session key'') encrypted using the secret key of the TGS.
# Once the client receives messages A and B, it decrypts message A to obtain the ''Client/TGS Session Key''. This session key is used for further communications with TGS. (Note: The client cannot decrypt Message B, as it is encrypted using TGS's secret key.) At this point, the client has enough information to authenticate itself to the TGS.
 
Client Service Authorization Steps:
 
# When requesting services, the client sends the following two messages to the TGS:
#* Message C: Composed of the ''Ticket-Granting Ticket'' from message B and the ID of the requested service.
#* Message D: Authenticator (which is composed of the client ID and the timestamp), encrypted using the ''Client/TGS Session Key''.
# Upon receiving messages C and D, the TGS retrieves message B out of message C. It decrypts message B using the TGS secret key. This gives it the "client/TGS session key". Using this key, the TGS decrypts message D (Authenticator) and sends the following two messages to the client:
#* Message E: ''Client-to-server ticket'' (which includes the client ID, client network address, validity period and ''Client/Server Session Key'') encrypted using the service's secret key.
#* Message F: ''Client/server session key'' encrypted with the ''Client/TGS Session Key''.
 
Client Service Request Steps:
 
# Upon receiving messages E and F from TGS, the client has enough information to authenticate itself to the SS. The client connects to the SS and sends the following two messages:
#* Message E from the previous step (the ''client-to-server ticket'', encrypted using service's secret key).
#* Message G: a new Authenticator, which includes the client ID, timestamp and is encrypted using ''client/server session key''.
# The SS decrypts the ticket using its own secret key to retrieve the ''Client/Server Session Key''. Using the sessions key, SS decrypts the Authenticator and sends the following message to the client to confirm its true identity and willingness to serve the client:
#* Message H: the timestamp found in client's Authenticator plus 1, encrypted using the ''Client/Server Session Key''.
# The client decrypts the confirmation using the ''Client/Server Session Key'' and checks whether the timestamp is correctly updated. If so, then the client can trust the server and can start issuing service requests to the server.
# The server provides the requested services to the client.
 
 
-->
 
== Посилання ==
* [http://www.kerberos.org/software/tutorial.html Опис протоколу]
* [http://www.ixbt.com/comm/kerberos5.shtml Керберос 5, основні концепції]
* [http://technet2.microsoft.com/windowsserver/en/library/4a1daa3e-b45c-44ea-a0b6-fe8910f92f281033.mspx?pf=true Опис протоколу Kerberos 5 і його архітектурна реалізація у Windows Server 2003]
 
{{Доробити}}