Découvrez Web-Check, l'outil OSINT open source qui analyse un site web pour vérifier des dizaines de points. Le plus : vous pouvez l'auto-héberger.
Le post Web-Check : l’outil OSINT tout-en-un pour analyser un site web a été publié sur IT-Connect.
Découvrez Web-Check, l'outil OSINT open source qui analyse un site web pour vérifier des dizaines de points. Le plus : vous pouvez l'auto-héberger.
Le post Web-Check : l’outil OSINT tout-en-un pour analyser un site web a été publié sur IT-Connect.
Découvrez deux méthodes pour transférer des fichiers entre l'hôte et une VM Vagrant : le plugin vagrant-scp et les dossiers partagés (synced_folder).
Le post Transférer des fichiers entre un hôte et une VM Vagrant a été publié sur IT-Connect.
As part of a recent discussion in the Mac Admins Slack, it was asked if it was possible to validate a FileVault personal recovery key (PRK) without having to interactively enter it. Normally, to validate a PRK using the fdesetup command line tool, you would use the following command:
| fdesetup validaterecovery |
You’ll then be prompted to enter the PRK. This is an alphanumeric string separated by dashes, which should look similar to what’s shown below:
XGRX-W8ZG-747N-KWQT-CQAV-FC49
The output of running the command should look similar to what’s shown below. If the PRK is valid, the command should return a value of true.

If not, the command will return a value of false.

This method assumes you can interactively enter the PRK information. If an interactive entry of the PRK information is not an option for some reason, the validaterecovery function includes an -inputplist option. This allows the PRK information to be stored in a plist file and be read from that file. For more details, please see below the jump.
In this scenario, you would create a plist file formatted like the one shown below:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Password</key> | |
| <string>recovery_key_value_goes_here</string> | |
| </dict> | |
| </plist> |
Once you have the plist file created and stored in a location you can access, you can then run the following command to validate the recovery key using the information stored in the plist file:
| fdesetup validaterecovery -inputplist < /path/to/filename.plist |
Assuming that the PRK was XGRX-W8ZG-747N-KWQT-CQAV-FC49 and stored in a file named recoverykey.plist located in the /Users/Shared directory, the recoverykey.plist file’s contents would look like this:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Password</key> | |
| <string>XGRX-W8ZG-747N-KWQT-CQAV-FC49</string> | |
| </dict> | |
| </plist> |
You could then run the following command to validate the PRK using the recoverykey.plist file stored in the /Users/Shared directory:
| fdesetup validaterecovery -inputplist < /Users/Shared/recovery.plist |
If the PRK stored in the plist file is the current valid PRK, you should get a value of true.

Otherwise, you will get a value of false.

Pseudo, e-mail, numéro de téléphone : découvrez comment Maigret, user-scanner et Ignorant permettent de retrouver vos comptes en ligne en quelques minutes.
Le post Quels comptes avez-vous vraiment sur le Web ? Trois outils OSINT pour le découvrir a été publié sur IT-Connect.
Apprenez à scanner un réseau isolé avec Nmap en passant par un tunnel SSH et Proxychains, via une machine de rebond. Méthode pas à pas et bonnes pratiques.
Le post Nmap : Scanner un réseau isolé via un tunnel SSH a été publié sur IT-Connect.
Guide pratique mkcert sur Debian : créez votre autorité de certification locale et générez des certificats HTTPS reconnus par vos navigateurs.
Le post mkcert : créer des certificats HTTPS valides en local sur Debian a été publié sur IT-Connect.
Vos VM Proxmox affichent un avertissement Secure Boot ? Inscrivez les certificats UEFI Microsoft 2023 côté Proxmox VE et côté Windows, pas à pas.
Le post Proxmox VE : enrôler les certificats Secure Boot Microsoft 2023 sur vos VMs a été publié sur IT-Connect.
Je mets à la vente les matériels suivants d’occasion :
Tout le matériel est testé et parfaitement fonctionnel.
Si vous êtes intéréssé·e par un ou plusieurs de ces matériels, écrivez à vente [at] gete [point] net. Je privilégierai la vente aux personnes que je connais déjà, et de préférence en région parisienne. Pour tout envoi, les frais d’expédition sont en sus, et le paiement se fera à la commande.
Un attaquant non authentifié peut détourner un compte sur WAPT Server via un simple paquet forgé. Ce qu'il faut savoir sur la faille CVE-2026-33591.
Le post WAPT Server (CVE-2026-33591) : une faille permet de contourner l’authentification a été publié sur IT-Connect.
Découvrez Gufw, l'interface graphique UFW sous Linux : installation, création des règles de pare-feu et bonnes pratiques, sans passer par la ligne de commande.
Le post Gufw : gérer le pare-feu UFW sous Linux avec une interface graphique a été publié sur IT-Connect.