PROJET AUTOBLOG


shaarli-Links

Site original : shaarli-Links

⇐ retour index

GitHub - alephsecurity/firehorse: Research & Exploitation framework for Qualcomm EDL Firehose programmers

2022-04-04T17:08:41+02:00

mode EDL (Emergency DownLoad)
Permalink

GitHub - brenw0rth/pync: arbitrary TCP and UDP connections and listens (Netcat for Python).

2022-03-30T11:38:30+02:00

▶︎ First Step | Red Red Panda

2022-03-28T20:14:52+02:00

Un PCB universel pour réaliser ses montages en électronique de puissance - YouTube

2022-03-28T12:44:12+02:00

DBAD by philsturgeon

2022-03-27T22:38:58+02:00

Intéressant comme licence.

 DON'T BE A DICK PUBLIC LICENSE

> Version 1.1, December 2016

> Copyright (C) [year] [fullname]

Everyone is permitted to copy and distribute verbatim or modified
copies of this license document.

> DON'T BE A DICK PUBLIC LICENSE
> TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

1. Do whatever you like with the original work, just don't be a dick.

   Being a dick includes - but is not limited to - the following instances:

 1a. Outright copyright infringement - Don't just copy this and change the name.
 1b. Selling the unmodified original with no work done what-so-ever, that's REALLY being a dick.
 1c. Modifying the original work to contain hidden harmful content. That would make you a PROPER dick.

2. If you become rich through modifications, related works/services, or supporting the original work,
share the love. Only a dick would make loads off this work and not buy the original work's
creator(s) a pint.

3. Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes
you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back.

via https://nicolas-delsaux.hd.free.fr/Shaarli/?X31NQQ
Permalink

Bibliogram

2022-03-26T20:24:16+01:00

Génial !
Ce site permet de consulter instagram sans avoir de compte.

via https://warriordudimanche.net/article1656/623ef1993a08d
Permalink

Reading and writing Microsoft Word docx files with Python | Virantha Namal Ekanayake

2022-03-14T09:56:05+01:00

Extraction et modification d'un docx avec python :

import zipfile
import os
import shutil

input_filename='exemple.docx'
output_filename='exemple-output.docx'

# Extraction du .docx
sourceFile = zipfile.ZipFile(input_filename)
tmp_dir="tmp-docx"
os.mkdir(tmp_dir)
sourceFile.extractall(tmp_dir)

##
# ici l'on modifie 'word/document.xml'
##

# Création du .docx
filenames = sourceFile.namelist()
with zipfile.ZipFile(output_filename, "w", compression=zipfile.ZIP_DEFLATED) as docx:
    for filename in filenames:
        docx.write(os.path.join(tmp_dir,filename), filename)

shutil.rmtree(tmp_dir)

Permalink

GitHub - ssh-mitm/ssh-mitm: ssh mitm server for security audits supporting public key authentication, session hijacking and file manipulation

2022-03-13T10:07:39+01:00

Solar Panels Built From Waste Crops Can Make Energy Without Direct Light

2022-03-12T09:50:42+01:00

<video> : c'est du <track> cas ! HELP [EDIT 2h après] [Merci Bill2] - Warrior du Dimanche

2022-03-11T14:36:20+01:00

Il manque un «s» à «subtitles» !

<track kind="subtitles" ....

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track
Permalink

Une fuite de 527 Go émanant de l'agence de censure russe

2022-03-11T11:03:59+01:00

«Le projet Distributed Denial of Secrets a mis en ligne 364 000 fichiers, totalisant 526,9 Go de données, émanant de Roskomnadzor (l'agence fédérale russe responsable de la surveillance et de la censure des médias russes) de la République russe du Bachkortostan (l'une des plus grandes républiques de la fédération de Russie).»
https://ddosecrets.com/wiki/Roskomnadzor

via https://sebsauvage.net/links/?NnwqLg
Permalink

Barcode Detection API - Web APIs | MDN

2022-03-10T09:42:31+01:00

Panorama de la menace informatique 2021 – CERT-FR

2022-03-09T17:43:06+01:00

«Dans ce panorama de la menace informatique, l’ANSSI revient sur les grandes tendances ayant marqué le paysage cyber sur l’année 2020-2021 et en propose des perspectives d’évolution à court terme. »

https://www.cert.ssi.gouv.fr/uploads/20220308_NP_WHITE_ANSSI_panorama-menace-ANSSI_pour-Publi.pdf
Permalink

The Dirty Pipe Vulnerability — The Dirty Pipe Vulnerability documentation

2022-03-09T11:32:45+01:00

GitHub - quackduck/devzat: The devs are over here at devzat, chat over SSH!

2022-03-07T21:42:07+01:00

Un salon de discussion via SSH.
Permalink

L'offre cloud Microsoft 365 bannie des ministères pour protéger "les données sensibles"

2022-03-07T17:03:07+01:00

Près de six mille éoliennes allemandes sérieusement affectées par une cyberattaque russe - Transitions & Energies

2022-03-07T09:50:45+01:00

Je suis surpris qu'il n'y ai pas un arrêt automatique en cas de fort vent.

via https://sebsauvage.net/links/?Orng_w
Permalink

Server-Sent Events: the alternative to WebSockets you should be using - germano.dev

2022-03-04T21:41:43+01:00
const es = new EventSource("https://localhost/sse");

es.onopen = e => console.log("EventSource open");

es.addEventListener("message", e => console.log(e.data));

// Event listener for custom event
es.addEventListener( "join", e => console.log(`${e.data} joined`))

https://github.com/tyrion/sse-websockets-demo

via https://sebsauvage.net/links/?CEiR6w
Permalink

Librem 5 Photo Processing Tutorial – Purism

2022-03-03T09:40:36+01:00

Help Preserve the Internet With Archiveteam's Warrior | Selfhosted Heaven

2022-03-02T10:09:58+01:00