PROJET AUTOBLOG


ecirtam.net/links/

Site original : shaarli-Links

⇐ retour index

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

Tuesday 2 July 2019 à 10:15

Permalink

Provya - Tutoriaux Asterisk et pfSense

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

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

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

Baofeng for Digital Modes | Bastian Bloessl

Sunday 30 June 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

Thursday 27 June 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

Tuesday 25 June 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

Monday 24 June 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

Monday 24 June 2019 à 11:54

Permalink

Inside a low budget consumer hardware espionage implant

Wednesday 19 June 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() !

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

GitHub - Acceis/crypto_identifier: Crypto tool for pentest and ctf : try to uncipher data using multiple algorithms and block chaining modes. Usefull for a quick check on unknown cipher text and key dictionnary

Tuesday 18 June 2019 à 14:39

Permalink

GitHub - Acceis/leakScraper: LeakScraper is an efficient set of tools to process and visualize huge text files containing credentials. Theses tools are designed to help penetration testers and redteamers doing OSINT by gathering credentials belonging to their target.

Tuesday 18 June 2019 à 14:38

Permalink

gucharmap [Wiki ubuntu-fr]

Tuesday 18 June 2019 à 11:33
sudo apt install gucharmap
Permalink

MATRIX Voice

Monday 17 June 2019 à 13:44
J'aimerai faire ce genre de système mais pour la localisation d'ondes radios.
via https://fabienm.eu/shaarli/?9Uy8Qw
Permalink

Le ministre britannique de l'Intérieur a signé l'ordonnance d'extradition d'Assange aux Etats-Unis — RT en français

Friday 14 June 2019 à 20:13
Et meeerde :-(
via http://liens.howtommy.net/?mRZVqw
Permalink