diff options
| author | Julio A. Leyva Osorio <tony931023@gmail.com> | 2021-07-05 05:02:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-05 11:02:07 +0200 |
| commit | e996716ad4b66b4d40e44123711a738789b9a2b8 (patch) | |
| tree | 9b6022eff479574900f2a54c6dd41bec873e135b /docs/es/account.md | |
| parent | 6117caaaff06d1ec34696cdb66529eb0f2ec825a (diff) | |
| download | wiki-e996716ad4b66b4d40e44123711a738789b9a2b8.tar.gz wiki-e996716ad4b66b4d40e44123711a738789b9a2b8.tar.bz2 wiki-e996716ad4b66b4d40e44123711a738789b9a2b8.zip | |
Chore: Updates and creation of wiki files in Spanish (#572)
* Spanish Update account.md
* Creation of the home.md document in spanish
* Creation of the arch-linux.md document in spanish
* Creation of the aws-tutorial.md document in spanish
* Creation of the bash_system.md document in spanish
* Creation of the best-practices.md document in spanish
* Creation of the file-headers.md document in spanish
* Creation of the core-installation.md document in spanish
* Creation of the bountysource.md document in spanish
* Creation of the contribute.md document in spanish
* Creation of the bit-and-bytes-tutorial.md document in spanish
* Creation of the faq.md document in spanish
* Creation of the how-to-debug.md document in spanish
* Creation of the upgrade-from-pre-2.0.0-to-latest-master.md document in spanish
* Creation of the upgrade-from-pre-3.0.0-to-latest-master.md document in spanish
* Creation of the trinitycore-to-azerothcore-characters-migration.md document in spanish
* Creation of the keeping-the-server-up-to-date.md document in spanish
* Creation of the wiki-standards.md document in spanish
* Creation of the importing-spell-dbc.md document in spanish
Diffstat (limited to 'docs/es/account.md')
| -rw-r--r-- | docs/es/account.md | 63 |
1 files changed, 32 insertions, 31 deletions
diff --git a/docs/es/account.md b/docs/es/account.md index 453142f..064a829 100644 --- a/docs/es/account.md +++ b/docs/es/account.md @@ -6,39 +6,40 @@ **Estructura** -| Field | Type | Attributes | Key | Null | Default | Extra | Comment | -| --------------------- | ------------ | ---------- | --- | ---- | ----------------- | -------------- | ---------- | -| [id][1] | INT | UNSIGNED | PRI | NO | | AUTO_INCREMENT | Identifier | -| [username][2] | VARCHAR(32) | | UNI | NO | | | | -| [salt][3] | BINARY(32) | | | NO | | | | -| [verifier][4] | BINARY(32) | | | NO | | | | -| [session_key][5] | BINARY(40) | | | YES | | | | -| [token_key][6] | VARCHAR(100) | | | NO | | | | -| [email][7] | VARCHAR(255) | | | NO | | | | -| [reg_mail][8] | VARCHAR(255) | | | NO | | | | -| [joindate][9] | TIMESTAMP | | | NO | CURRENT_TIMESTAMP | | | -| [last_ip][10] | VARCHAR(15) | | | NO | 127.0.0.1 | | | -| [last_attempt_ip][11] | VARCHAR(15) | | | NO | 127.0.0.1 | | | -| [failed_logins][12] | INT | UNSIGNED | | NO | 0 | | | -| [locked][13] | TINYINT | UNSIGNED | | NO | 0 | | | -| [lock_country][14] | VARCHAR(2) | | | NO | 0 | | | -| [last_login][15] | TIMESTAMP | | | YES | NULL | | | -| [online][16] | INT | UNSIGNED | | NO | 0 | | | -| [expansion][17] | TINYINT | UNSIGNED | | NO | 2 | | | -| [mutetime][18] | BIGINT | SIGNED | | NO | 0 | | | -| [mutereason][19] | VARCHAR(255) | | | NO | | | | -| [muteby][20] | VARCHAR(50) | | | NO | | | | -| [locale][21] | TINYINT | UNSIGNED | | NO | 0 | | | -| [os][22] | VARCHAR(3) | | | NO | | | | -| [recruiter][23] | INT | UNSIGNED | | NO | 0 | | | -| [totaltime][24] | INT | UNSIGNED | | NO | 0 | | | +| Field | Type | Attributes | Key | Null | Default | Extra | Comment | +| --------------------- | ------------- | ---------- | --- | ---- | ----------------- | -------------- | ---------- | +| [id][1] | INT | UNSIGNED | PRI | NO | | AUTO_INCREMENT | Identifier | +| [username][2] | VARCHAR(32) | SIGNED | UNI | NO | '' | | | +| [salt][3] | BINARY(32) | SIGNED | | NO | | | | +| [verifier][4] | BINARY(32) | SIGNED | | NO | | | | +| [session_key][5] | BINARY(40) | SIGNED | | YES | | | | +| [totp_secret][6] | VARBINARY(100)| SIGNED | | YES | | | | +| [email][7] | VARCHAR(255) | SIGNED | | NO | '' | | | +| [reg_mail][8] | VARCHAR(255) | SIGNED | | NO | '' | | | +| [joindate][9] | TIMESTAMP | SIGNED | | NO | CURRENT_TIMESTAMP | | | +| [last_ip][10] | VARCHAR(15) | SIGNED | | NO | 127.0.0.1 | | | +| [last_attempt_ip][11] | VARCHAR(15) | SIGNED | | NO | 127.0.0.1 | | | +| [failed_logins][12] | INT | UNSIGNED | | NO | 0 | | | +| [locked][13] | TINYINT | UNSIGNED | | NO | 0 | | | +| [lock_country][14] | VARCHAR(2) | SIGNED | | NO | 00 | | | +| [last_login][15] | TIMESTAMP | SIGNED | | YES | | | | +| [online][16] | INT | UNSIGNED | | NO | 0 | | | +| [expansion][17] | TINYINT | UNSIGNED | | NO | 2 | | | +| [mutetime][18] | BIGINT | SIGNED | | NO | 0 | | | +| [mutereason][19] | VARCHAR(255) | SIGNED | | NO | '' | | | +| [muteby][20] | VARCHAR(50) | SIGNED | | NO | '' | | | +| [locale][21] | TINYINT | UNSIGNED | | NO | 0 | | | +| [os][22] | VARCHAR(3) | SIGNED | | NO | '' | | | +| [recruiter][23] | INT | UNSIGNED | | NO | 0 | | | +| [totaltime][24] | INT | UNSIGNED | | NO | 0 | | | + [1]: #id [2]: #username [3]: #salt [4]: #verifier [5]: #session_key -[6]: #token_key +[6]: #totp_secret [7]: #email [8]: #reg_mail [9]: #joindate @@ -80,15 +81,15 @@ El verificador se deriva de salt, así como el nombre de usuario (todo en mayús Para obtener el verificador hay que calcular: -1. Calcule `h1 = SHA1("USUARIO:CONTRASEÑA")`, sustituyendo el nombre de usuario y la contraseña convertidos en mayúsculas. +1. Calcular `h1 = SHA1("USUARIO:CONTRASEÑA")`, sustituyendo el nombre de usuario y la contraseña convertidos en mayúsculas. -2. Calcule `h2 = SHA1(salt || h1)`, dónde || es la concatenación (el operador . en PHP). +2. Calcular `h2 = SHA1(salt || h1)`, dónde || es la concatenación (el operador . en PHP). **NOTA:** ¡Tanto `salt` como `h1` son cadenas binarias, no hexadecimales! 3. Tratar `h2` como un entero en orden little-endian (el primer byte es el menos significativo). -4. Calcule `(g ^ h2) % N`. +4. Calcular `(g ^ h2) % N`. **NOTA:** `g` y `N` son parámetros, que están fijados en la implementación de WoW. @@ -112,7 +113,7 @@ Para obtener el verificador hay que calcular: `campo-sin-descripción|5` -### token_key +### totp_secret La clave del autentificador. |
