GNU/Linux : mon kit d’outils sécurité préféré / my favorite privacy and security Toolkit
Voici quelques uns des outils que je considère comme incontournables lorsqu’on s’intéresse comme moi à la sécurité informatique et qu’on tient aussi à préserver sa vie privée sur Internet...
GNU/Linux : how to upload a file with webdav and curl
You use webdav protocol, protected by a login/password, for your website « www.acmee.com » and want to upload a file « test.doc » to one of your web sub-directory « subdir2″ with a command...
GNU/Linux : apt-get à travers un proxy http avec authentification
Si vous avez besoin d’utiliser la commande « apt-get » et que votre pc est situé dans un réseau forçant l’utilisation d’un proxy avec authentification, saisisser dans un terminal la commande...
GNU/Linux : crypter/décrypter un fichier avec openssl
La librairie OpenSSL permet en autres choses de crypter/décrypter des fichiers – pour crypter un fichier (acmee.txt) saisissez la commande suivante : openssl aes-256-cbc -a -salt -in acmee.txt -out acmee.txt.enc puis...
GNU/Linux : effacer ses données de manière sécurisée
- Effacer un disque (ex : /dev/sda) : dd if=/dev/urandom of=/dev/sda – Effacer un fichier ou un répertoire (http://wipe.sourceforge.net) : wipe -r -i -Q 30 my_file_or_my_directory remarque : 30...
GNU/Linux : TCP over DNS tunnel
You want to use TCP over a DNS tunnel ? Have a look to this good article on http://analogbit.com/tcp-over-dns_howto Tweet This Post...
GNU/Linux : string replace with ‘sed’ command
$ sed -i ‘s/old_str/new_str/g’ file* => change all strings « old_str » by « new_str » in all files whose name begins by « file » Tweet This Post...
GNU/Linux : faire un tunnel VPN ethernet via SSH entre 2 machines
But : établir une connexion VPN en utilisant SSH en Ethernet entre 2 machines : serveur1 et client1 Pré-requis : un serveur OpenSSH installé sur une machine nommée serveur1 et bien configuré...
GNU/Linux : backup with fsarchiver
‘fsarchiver’ is a good way to make a full backup of a partition. For example to backup /dev/sda1 to /media/backup, first install ‘fsarchiver’ then use the following command in a...