PROJET AUTOBLOG


Links

source: Links

⇐ retour index

Submarine Cable Map - uMap

samedi 21 août 2021 à 19:09

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

mercredi 18 août 2021 à 20:55

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

lundi 16 août 2021 à 20:40

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

vendredi 13 août 2021 à 13:29

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

mardi 10 août 2021 à 20:43

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

mardi 10 août 2021 à 20:25

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

lundi 9 août 2021 à 12:26

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

dimanche 8 août 2021 à 21:22

Introducing Triton: Open-Source GPU Programming for Neural Networks

dimanche 8 août 2021 à 18:24

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

dimanche 8 août 2021 à 12:05

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

samedi 7 août 2021 à 13:15

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.

jeudi 5 août 2021 à 21:00

Tester si une machine est une gateway

jeudi 5 août 2021 à 11:11

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

jeudi 5 août 2021 à 08:24

GitHub - OWASP/ASVS: Application Security Verification Standard

lundi 2 août 2021 à 12:09

Un clone de Shazam pour Linux – Korben

dimanche 1 août 2021 à 10:41

PLSDR

jeudi 29 juillet 2021 à 13:29

Bonnes pratiques Gitlab CI

jeudi 29 juillet 2021 à 10:04

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

samedi 24 juillet 2021 à 11:47

GitHub - seemoo-lab/opendrop: An open Apple AirDrop implementation written in Python

samedi 24 juillet 2021 à 10:46