Archives 2016 - pedro's blog


Archives


// Fonction permettant l'envoi d'un fichier sécurisé en un seul appel function partager_io($cheminfichier){ if(!$cheminfichier)return ['erreur'=>'nom de fichier vide']; if(!is_readable($cheminfichier))return ['erreur'=>'accès en lecture manquante']; if(!file_exists($cheminfichier))return ['erreur'=>'le fichier n\'existe pas']; if(!in_array('curl',get_loaded_extensions())) return ['erreur'=>'extension curl manquante']; if(!($http=curl_init('https://partager.io/upload/'))) return ['erreur'=>'initialisation curl impossible']; curl_setopt($http,CURLOPT_POST,true); curl_setopt($http,CURLOPT_FRESH_CONNECT,true); curl_setopt($http,CURLOPT_FOLLOWLOCATION,false); curl_setopt($http,CURLOPT_RETURNTRANSFER,true); curl_setopt($http,CURLOPT_POSTFIELDS,['fichier'=>'@'.$cheminfichier]); $sortie=curl_exec($http); curl_close($http); if($sortie===false) return ['erreur'=>'connexion interrompue avec partager.io']; $sortie=json_decode($sortie,true); if(null==$sortie) return ['erreur'=>'erreur serveur partager.io']; return $sortie; } // On se place dans le répertoire courant du script chdir(dirname(__FILE__)); // On envoi à partager.io le fichier "image.jpg" du répertoire courant de ce script $retour=partager_io('image.jpg'); // On vérifie que le fichier est bien envoyé if(isset($retour['erreur'])){ // Traitement de l'erreur echo $retour['erreur']; } else { // OK, on affiche l'URL du fichier en ligne echo 'https://partager.io/'.$retour['id']; }



Anciennement l'installation de Ajaxplorer c'était bien déroulé mais avec Pydio
c'est un échec.

Nv lien à voir ... https://computerz.solutions/debian-8-installer-pydio-apache2/

Hey, pedro's!

[This is an automated message; please do not reply.]

Here are your bridges:

  obfs3 37.218.276.163:31806 1883A9E2EB6D4AB2160392085870AB1A3A79D074
  obfs3 173.220.142.28:42625 45C8618D3B90B393E44829E9C48730D88FDB7E3D
  obfs3 219.141.35.201:49527 A5BE53F078FB472002691D8C057D189EDEB6DE06


To enter bridges into Tor Browser, first go to the  Tor Browser download
page [0] and then follow the instructions there for downloading and starting
Tor Browser.


http://www.supinfo.com/articles/single/738-utilisation-bridges-tor


Fruho est open-source , gestionnaire de VPN, il prend en charge la configuration automatique et permet de passer facilement entre les fournisseurs de VPN. C'est donc un VPN manager pour switcher entre VPN

https://fruho.com/

VPN SecurityKiss - VpnBook - Mullvad - CactusVPN - etc
L'installation via le paquet .deb est affecté par un bug et le moyen pour l'installer est le suivant :

wget -O fruho.deb https://github.com/fruho/fruhoapp/releases/download/fruho-0.0.21/fruho_0.0.21_i386.deb
ou
wget -O fruho.deb https://github.com/fruho/fruhoapp/releases/download/fruho-0.0.21/fruho_0.0.21_amd64.deb
et
sudo dpkg -i fruho*.deb


En cas de déconnexion la connexion est interrompue.