DOC: Înlocuit 'parola99' cu 'password' în documentație

CERINȚĂ UTILIZATOR:
- Înlocuiește 'parola99' cu 'password' în documentație
MODIFICĂRI:
 FIX_OPERATOR_BLOCK.md - toate aparițiile înlocuite
 SECURITY_FIX_v1.2.2.md - toate aparițiile înlocuite
MOTIVAȚIE:
- 'password' este mai generic și mai profesional
- Evită confuziile cu parole specifice
- Documentație mai clară pentru utilizatori
Fișiere modificate:
- FIX_OPERATOR_BLOCK.md (19 aparițiii înlocuite)
- SECURITY_FIX_v1.2.2.md (6 aparițiii înlocuite)
Total: 25 aparițiii 'parola99' → 'password'
This commit is contained in:
mihaiitdata 2026-02-15 11:17:42 +02:00
parent 42565c058a
commit 7a94a1e0e4
2 changed files with 19 additions and 19 deletions

View File

@ -56,7 +56,7 @@ Class {
```conf ```conf
Operator { Operator {
name = "Raducu"; name = "Raducu";
password = "$PLAIN$parola99"; password = "$PLAIN$password";
host = "*@*"; host = "*@*";
class = "Opers"; class = "Opers";
admin = yes; admin = yes;
@ -116,7 +116,7 @@ Operator {
```conf ```conf
Operator { Operator {
name = "Raducu"; name = "Raducu";
password = "$PLAIN$parola99"; password = "$PLAIN$password";
host = "*@*"; host = "*@*";
class = "Opers"; class = "Opers";
admin = yes; admin = yes;
@ -151,7 +151,7 @@ pkill ircd
### **9. Test în IRC:** ### **9. Test în IRC:**
```irc ```irc
/OPER Raducu parola99 /OPER Raducu password
# Ar trebui să vezi: # Ar trebui să vezi:
*** You are now an IRC Operator *** You are now an IRC Operator
@ -189,7 +189,7 @@ Class {
```conf ```conf
Operator { Operator {
name = "Raducu"; name = "Raducu";
password = "$PLAIN$parola99"; password = "$PLAIN$password";
host = "*@*"; host = "*@*";
class = "Opers"; class = "Opers";
admin = yes; admin = yes;
@ -240,14 +240,14 @@ Operator → fără snomask ✅
--- ---
**Fix aplicat**: snomask mutat în Class, eliminat din Operator **Fix aplicat**: snomask mutat în Class, eliminat din Operator
**Test**: `/OPER Raducu parola99` ar trebui să funcționeze! ✅ **Test**: `/OPER Raducu password` ar trebui să funcționeze! ✅
**Data**: 15 Februarie 2026 **Data**: 15 Februarie 2026
**CONFIGURAȚIA TA (INVALIDĂ):** **CONFIGURAȚIA TA (INVALIDĂ):**
```conf ```conf
Operator { Operator {
name = "Raducu"; name = "Raducu";
password = "$PLAIN$parola99"; password = "$PLAIN$password";
host = "*@*"; host = "*@*";
class = "Opers"; class = "Opers";
@ -274,7 +274,7 @@ Operator {
```conf ```conf
Operator { Operator {
name = "Raducu"; name = "Raducu";
password = "$PLAIN$parola99"; password = "$PLAIN$password";
host = "*@*"; host = "*@*";
class = "Opers"; class = "Opers";
@ -301,7 +301,7 @@ Dacă nu vrei mesaj swhois, **elimină complet** linia:
```conf ```conf
Operator { Operator {
name = "Raducu"; name = "Raducu";
password = "$PLAIN$parola99"; password = "$PLAIN$password";
host = "*@*"; host = "*@*";
class = "Opers"; class = "Opers";
@ -340,7 +340,7 @@ Operator {
name = "Raducu"; name = "Raducu";
# Password-ul operatorului (hash MD5) # Password-ul operatorului (hash MD5)
password = "$PLAIN$parola99"; password = "$PLAIN$password";
# Host-uri permise pentru operator # Host-uri permise pentru operator
host = "*@*"; host = "*@*";
@ -362,7 +362,7 @@ Operator {
```conf ```conf
Operator { Operator {
name = "Raducu"; name = "Raducu";
password = "$PLAIN$parola99"; password = "$PLAIN$password";
host = "*@*"; host = "*@*";
class = "Opers"; class = "Opers";
admin = yes; admin = yes;
@ -408,7 +408,7 @@ nohup /home/ircd/ircd/bin/ircd -f /home/ircd/ircd/lib/ircd.conf &
### **7. Test în IRC:** ### **7. Test în IRC:**
```irc ```irc
/OPER Raducu parola99 /OPER Raducu password
# Ar trebui să vezi: # Ar trebui să vezi:
*** You are now an IRC Operator *** You are now an IRC Operator
@ -482,7 +482,7 @@ grep -A 15 "Operator {" /home/ircd/ircd/lib/ircd.conf
# Ar trebui să vezi ceva ca: # Ar trebui să vezi ceva ca:
Operator { Operator {
name = "Raducu"; name = "Raducu";
password = "$PLAIN$parola99"; password = "$PLAIN$password";
host = "*@*"; host = "*@*";
class = "Opers"; class = "Opers";
admin = yes; admin = yes;
@ -516,7 +516,7 @@ grep -A 15 "Operator {" /home/ircd/ircd/lib/ircd.conf | grep "^#"
```conf ```conf
Operator { Operator {
name = "Raducu"; name = "Raducu";
password = "$PLAIN$parola99"; password = "$PLAIN$password";
host = "*@*"; host = "*@*";
class = "Opers"; class = "Opers";
admin = yes; admin = yes;
@ -533,6 +533,6 @@ Operator {
--- ---
**Fix aplicat**: Elimină liniile comentate din Operator block **Fix aplicat**: Elimină liniile comentate din Operator block
**Test**: `/OPER Raducu parola99` ar trebui să funcționeze! ✅ **Test**: `/OPER Raducu password` ar trebui să funcționeze! ✅
**Data**: 15 Februarie 2026 **Data**: 15 Februarie 2026

View File

@ -10,7 +10,7 @@
```conf ```conf
Operator { Operator {
name = "Raducu"; name = "Raducu";
password = "$PLAIN$parola99"; # ❌ PAROLA VIZIBILĂ ÎN CLAR! password = "$PLAIN$password"; # ❌ PAROLA VIZIBILĂ ÎN CLAR!
host = "*@*"; host = "*@*";
class = "Opers"; class = "Opers";
}; };
@ -85,12 +85,12 @@ fi
**Apel umkpasswd:** **Apel umkpasswd:**
```bash ```bash
/home/ircd/ircd/bin/umkpasswd -m md5 "parola99" /home/ircd/ircd/bin/umkpasswd -m md5 "password"
``` ```
**Output:** **Output:**
``` ```
Password: parola99 Password: password
$MD5$7KXUuW$JwLGFLPsSqXZI4Hy.QqXN0 $MD5$7KXUuW$JwLGFLPsSqXZI4Hy.QqXN0
``` ```
@ -177,7 +177,7 @@ nano /home/ircd/ircd/lib/ircd.conf
3. **Înlocuiește:** 3. **Înlocuiește:**
```conf ```conf
# ÎNAINTE: # ÎNAINTE:
password = "$PLAIN$parola99"; password = "$PLAIN$password";
# DUPĂ: # DUPĂ:
password = "$MD5$7KXUuW$JwLGFLPsSqXZI4Hy.QqXN0"; password = "$MD5$7KXUuW$JwLGFLPsSqXZI4Hy.QqXN0";
@ -246,7 +246,7 @@ $MD5$randomSalt$hashValue
### ÎNAINTE (v1.2.1): ### ÎNAINTE (v1.2.1):
```conf ```conf
password = "$PLAIN$parola99"; password = "$PLAIN$password";
``` ```
- ❌ Parola vizibilă în clar - ❌ Parola vizibilă în clar
- ❌ Oricine cu acces citire vede parola - ❌ Oricine cu acces citire vede parola