PROJET AUTOBLOG


shaarli-Links

Site original : shaarli-Links

⇐ retour index

6G : la portée du signal, l'autre enjeu de l'après-5G

2021-08-23T18:10:16+02:00

Submarine Cable Map - uMap

2021-08-21T19:09:27+02:00

Un satellite chinois percuté par un débris spatial : ce n'est que le début du problème

2021-08-18T20:55:53+02:00

GitHub - GuidoBartoli/sherloq: An open-source digital image forensic toolset

2021-08-16T20:40:34+02:00

GitHub - omer-dogan/kali-whoami: Whoami is a privacy tool developed to keep you anonymous on Kali Linux at the highest level.

2021-08-13T13:29:35+02:00

Des hackers font planter des lecteurs de codes-barres avec un QR code

2021-08-10T20:43:48+02:00

Comment signaler un site antisémite ? Pas comme Gérald Darmanin

2021-08-10T20:25:16+02:00

Download music, movies, games, software! The Pirate Bay - The galaxy's most resilient BitTorrent site

2021-08-09T12:26:34+02:00

GitHub - Guezone/SECMON: SECMON is a web-based tool for the automation of infosec watching and vulnerability management with a web interface.

2021-08-08T21:22:21+02:00

Introducing Triton: Open-Source GPU Programming for Neural Networks

2021-08-08T18:24:17+02:00

GitHub - W00t3k/Awesome-Cellular-Hacking: Awesome-Cellular-Hacking

2021-08-08T12:05:47+02:00

GitHub - raboof/nethogs: Linux 'net top' tool

2021-08-07T13:15:06+02:00

Pour monitorer quel processus et user fait des appels sur le réseau.

sudo apt install nethogs

Permalink

GitHub - ajbrock/BigGAN-PyTorch: The author's officially unofficial PyTorch BigGAN implementation.

2021-08-05T21:00:10+02:00

Tester si une machine est une gateway

2021-08-05T11:11:51+02:00

L'idée est d'envoyer un ping en précisant d'utiliser une machine spécifique comme gateway au lieu de celle annoncé par défaut sur le réseau.
Cela permet de trouver les gateway qui ne sont pas annoncés.

#!/usr/bin/env python3
# sudo apt install python3-scapy
from scapy.all import *

#PC qui lance le script :
iface="enp0s3" #interface du réseau à tester
mac_source="08:00:27:2a:fc:05" #adresse MAC liée à l'interface précédente
ip_source="192.168.56.108" #adresse IP liée à l'interface précédente

#Cible du ping
ip_target="192.168.56.6" #Une IP au pif, sur le même réseau et qui répond au ping

#La supposée gateway
mac_gateway="08:00:27:20:d1:87" #adresse MAC de la machine à tester si c'est une gateway

packet = Ether(dst=mac_gateway,src=mac_source)/IP(dst=ip_target,src=ip_source)/ICMP()
ans,unans=srp(packet,iface=iface, filter='icmp', verbose=0, timeout=1)
if ans.res != []:
    print("gateway ok")

if unans.res != []:
    print("gateway not ok")

Pour trouver l'adresse MAC de la supposée gateway (mac_gateway) :

arp -a

ou

ip neigh

ou

arping -I enp0s3 -c1 192.168.56.50

Permalink

GitHub - lucidrains/big-sleep: A simple command line tool for text to image generation, using OpenAI's CLIP and a BigGAN. Technique was originally created by https://twitter.com/advadnoun

2021-08-05T08:24:18+02:00

GitHub - OWASP/ASVS: Application Security Verification Standard

2021-08-02T12:09:14+02:00

Un clone de Shazam pour Linux – Korben

2021-08-01T10:41:05+02:00

PLSDR

2021-07-29T13:29:20+02:00

Bonnes pratiques Gitlab CI

2021-07-29T10:04:11+02:00

Spécifications techniques des codes à barres 2D-Doc

2021-07-24T11:47:10+02:00