Showing posts with label web server. Show all posts
Showing posts with label web server. Show all posts

Wednesday, December 14, 2016

Un quart d'heure d'anonymat en ligne

Le texte ci-dessous est issu d’un article rédigé originellement pour l’INA, actualisé et republié sur le blog de Jean-Marc Manach sous le titre Comment (ne pas) être (cyber)espionné ?. L’article original a été rédigé pendant l’été 2012 [lire plus ...]


Chat sécurisé

Échanger des fichiers

Notes confidentielles

De la difficulté de téléphoner

IRL

Pour aller plus loin

Sunday, May 15, 2016

Python CGI Web Server

#! Path to Python.exe "C:\Web development\Python27\python.exe"

from BaseHTTPServer import HTTPServer
from CGIHTTPServer import CGIHTTPRequestHandler

httpd = HTTPServer(('', 8080), CGIHTTPRequestHandler)
print("Demarrage du serveur web...")
httpd.serve_forever()