Change your password#
On your laptop#
Linux account#
$ passwd
Encrypted disk#
When your disk is encrypted, the procedure is to add a new key and remove the old one.
Identify the disk:
cat /etc/crypttab
ls -l /dev/disk/by-uuid/<uuid>
Check the keys before the change
sudo cryptsetup luksDump /dev/disk/by-uuid/<uuid>
Get the last lines beginning with Key Slot X:
Add a key
sudo cryptsetup luksAddKey /dev/disk/by-uuid/<uuid>
Entrez une phrase de passe existante : <current password>
Entrez une nouvelle phrase secrète pour l'emplacement de clé : <new password>
Vérifiez la phrase secrète : <new password>
sudo cryptsetup luksDump /dev/disk/by-uuid/<uuid>
We can see the new key is here.
Reboot the PC and unlock with the new key.
Remove the old key (with it slot number)
sudo cryptsetup luksKillSlot /dev/disk/by-uuid/<uuid> <slot ID>
Entrez toute phrase secrète restante : <new password>
Keepass, Firefox and any password manager#
That's your own software. figure it out.
- KeePass, KeePassXC, etc.
- Firefox password manager (master key)
- etc.
Keycloak#
Go on those 2 links, log on with your old password, then change it to your new password.
AD Orange / E-Buro / VM account#
You can change password or unlock account.
- E-Buro (Microsoft Windows)
- Webmail Orange
- GASSI (SSO for Internal Orange web application)
- VPN Nomade Orange (
VPN-Nomade) / Windows VPN
Note
Wait at least 24h before changing your password again.
From E-Buro sign-in screen#
From the sign-in screen, select Sign-in options / Options de connexions (On a running session, use Ctrl-Alt-Suppr to access on this lock screen).
Then choose Self-Service / Libre-Service to change your password.
Note: when Windows says locked account, just click on "change user" and you can use new password.
From a web browser on Orange network#
On Orange network (Eg. VPN Nomade), go on Mot de passe'attitude / My password'attitude.
Enter your Cu-Id (Eg. abcd1234) and follow instructions.
AD OBS / AD-SUBS#
You can change password, activate and unlock account.
Account used to connect with:
- VPN OBS Flexible Identity Authentication
- DT-Store / MyPortal
- NGOT Tools.
Note
Wait at least 24h before changing your password again.
On Orange network (Eg. VPN Nomade), you can manage your account with the AD-SUBS Self-Service.
Generate a hash ($6$salt$hash)#
Warning
You will put a clear text password below. Don't put it in your shell history!
Generate hash:
python3 -c "import crypt;print(crypt.crypt('clear text password'))"