PROJET AUTOBLOG


shaarli-Links

Site original : shaarli-Links

⇐ retour index

GitHub - outflanknl/RedELK: Red Team's SIEM - easy deployable tool for Red Teams used for tracking and alarming about Blue Team activities as well as better usability in long term operations.

mardi 16 juillet 2019 à 16:49
via https://www.youtube.com/embed/ZezBCAUax6c
Permalink

EU's GPS satellites have been down for four days in mysterious outage | ZDNet

lundi 15 juillet 2019 à 10:34
Outch
https://www.gsc-europa.eu/system-status/Constellation-Information
copie du 14 juil. 2019 17:20:43 UTC : https://archive.is/jbW9y
Permalink

Scanning For Vulnerabilities With Nmap Using Nmap-Vulners Script - Nmap - HackerSploit

mercredi 10 juillet 2019 à 19:02
https://github.com/vulnersCom/nmap-vulners

wget https://raw.githubusercontent.com/vulnersCom/nmap-vulners/master/vulners.nse
sudo mv vulners.nse /usr/share/nmap/scripts/

nmap --script nmap-vulners -sV IP
nmap --script nmap-vulners -sV -pPORT IP
nmap --script nmap-vulners -sV www.TargetUrl.com
Permalink

Hack in Paris - YouTube

mardi 9 juillet 2019 à 18:39

Permalink

Juggalo Makeup Blocks Facial Recognition Technology | Consequence of Sound

mardi 9 juillet 2019 à 16:12
Si un humain peut reconnaître un autre humain alors une machine peut le faire aussi.
Pour moi qui bosse sur la reconnaissance d'images, le maquillage ne vaux rien en terme de protection.

via https://links.nekoblog.org/?koBe4A
Permalink

Un réseau mondial de serveurs de clés PGP, victime d’un sabotage irrémédiable

lundi 8 juillet 2019 à 11:52
alternative aux serveurs SKS : https://keys.openpgp.org/

via http://redbeard.free.fr/links/?N93D6A
Permalink

A better zip bomb

vendredi 5 juillet 2019 à 12:57

Permalink

Banques : bientôt la fin des SMS pour valider un paiement sur Internet ? - Choses vues, sur le web et ailleurs - Le bazar de mydjey

mardi 2 juillet 2019 à 22:54
Les SMS sont envoyés en clair, par internet (SS7) et par les ondes radio (interceptible "facilement" ).
Voir ma note : https://ecirtam.net/links/?FpUIGw
Permalink

Mozilla SSL Configuration Generator

mardi 2 juillet 2019 à 20:19
via https://liens.strak.ch/?9lTSQQ
Permalink

Boris Brejcha @ Grand Palais for Cercle - YouTube

mardi 2 juillet 2019 à 11:51

Permalink

GitHub - tarraschk/richelieu: List of the most common French passwords

mardi 2 juillet 2019 à 10:15

Permalink

Provya - Tutoriaux Asterisk et pfSense

mardi 2 juillet 2019 à 10:08
via https://bookmarks.geekandfree.org/?j4Te3w
Permalink

Un Raspberry Pi comme machine de bureau. - Liens en vrac de sebsauvage

lundi 1 juillet 2019 à 22:48
Et oui, côté développement web, ça manque d'écologie :-(
Permalink

Baofeng for Digital Modes | Bastian Bloessl

dimanche 30 juin 2019 à 23:05
https://www.bastibl.net/baofeng-digi-modes/
https://www.bastibl.net/traffic-lights-2/
https://www.bastibl.net/gqrx-for-digital-signals/
Permalink

Déblocage - Liens en vrac de sebsauvage

jeudi 27 juin 2019 à 14:48
Il serait intéressant de noté quel type de mécanisme utilise le clavier.
Si ça se trouve c'est le contact de la touche qui reste bloqué.
Et du coup, en appuyant au pif, ça débloque la bonne touche.

Autre hypothèse, ça serait le changement d'état de la touche qui n'aurait pas été correctement reçu par le PC.
Permalink

Note: javascript AES

mardi 25 juin 2019 à 11:28
// https://stackoverflow.com/questions/51531021/javascript-aes-encryption-and-decryption-advanced-encryption-standard
// https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/encrypt
const key = await crypto.subtle.generateKey({name: 'AES-GCM', length: 128}, true, ['encrypt', 'decrypt']);
const text = "confidential message";
// IV must be the same length (in bits) as the key
const iv = await crypto.getRandomValues(new Uint8Array(16));
const cyphertext = await crypto.subtle.encrypt({name: 'AES-GCM', tagLength: 32, iv}, key, new TextEncoder().encode(text));

function arrayBufferToBase64( buffer ) {
    var binary = '';
    var bytes = new Uint8Array( buffer );
    var len = bytes.byteLength;
    for (var i = 0; i < len; i++) {
        binary += String.fromCharCode( bytes[ i ] );
    }
    return window.btoa( binary );
}

function base64ToArrayBuffer(base64) {
    var binary_string =  window.atob(base64);
    var len = binary_string.length;
    var bytes = new Uint8Array( len );
    for (var i = 0; i < len; i++)        {
        bytes[i] = binary_string.charCodeAt(i);
    }
    return bytes;
}
base64String=arrayBufferToBase64(cyphertext);
console.log(base64String);
// 'lXjRzQVt9Q1VUVQA38jwCMtGACLaxIxd'

cyphertext2=base64ToArrayBuffer(base64String);

const cleartext = await crypto.subtle.decrypt({name: 'AES-GCM', tagLength: 32, iv}, key, cyphertext);
console.log(new TextDecoder().decode(cleartext));
Permalink

GitHub - jboone/gr-tpms: Tire Pressure Monitor tools for GNU Radio

lundi 24 juin 2019 à 19:03
sudo apt install python-crcmod
git clone https://github.com/jboone/gr-tpms
cd gr-tpms
mkdir build
cd build
cmake ..
make
sudo make install
sudo ldconfig
tpms_rx --source rtlsdr --if-rate 400000 --tuned-frequency 433000000
tpms_rx --source rtlsdr --if-rate 400000 --tuned-frequency 315000000
Permalink

Building an LTE Access Point with a Raspberry Pi - Andreas Happe: signal/noise

lundi 24 juin 2019 à 11:54

Permalink

Inside a low budget consumer hardware espionage implant

mercredi 19 juin 2019 à 09:34
via https://sebsauvage.net/links/?Naidsw
Permalink

En faire plus avec la Console Javascript - Il n'y a pas que le console.log() !

mardi 18 juin 2019 à 15:07
via https://shaarli.brihx.fr/?UVcFew
Permalink