PROJET AUTOBLOG


shaarli-Links

Site original : shaarli-Links

⇐ retour index

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

mercredi 30 mars 2022 à 11:38

▶︎ First Step | Red Red Panda

lundi 28 mars 2022 à 20:14

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

lundi 28 mars 2022 à 12:44

DBAD by philsturgeon

dimanche 27 mars 2022 à 22:38

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

samedi 26 mars 2022 à 20:24

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

lundi 14 mars 2022 à 09:56

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

dimanche 13 mars 2022 à 10:07

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

samedi 12 mars 2022 à 09:50

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

vendredi 11 mars 2022 à 14:36

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

vendredi 11 mars 2022 à 11:03

«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

jeudi 10 mars 2022 à 09:42

Panorama de la menace informatique 2021 – CERT-FR

mercredi 9 mars 2022 à 17:43

«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

mercredi 9 mars 2022 à 11:32

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

lundi 7 mars 2022 à 21:42

Un salon de discussion via SSH.
Permalink

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

lundi 7 mars 2022 à 17:03

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

lundi 7 mars 2022 à 09:50

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

vendredi 4 mars 2022 à 21:41
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

jeudi 3 mars 2022 à 09:40

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

mercredi 2 mars 2022 à 10:09

Mardi 1 Mars 2022: Plinstagram, c'est toujours pas ça... [Edit à 14:23] - Warrior du Dimanche

mardi 1 mars 2022 à 14:45

Ouai ta capture d'écran, c'est clairement due à ModSecurity.
Il faut que tu regardes les logs de ModSecurity. De là tu devrais pouvoir trouver quelle règles est en cause.
Soit tu modifies ton code pour prendre en compte ce qui est attendu par ModSecurity ou soit tu modifies la règles de ModSecurity.

À mon avis, c'est + lié à un truc qui dois manquer dans le header ou post trop gros (pour ModSecurity).
Permalink