Atelier Docker
Atelier Docker été 2020 laboratoire APC 3 TP de 4h en présentiel autour de l’intégration continue et Docker.
Lien vers le tutoriel : https://souchal.pages.in2p3.fr/atelier-docker/
Atelier Docker été 2020 laboratoire APC 3 TP de 4h en présentiel autour de l’intégration continue et Docker.
Lien vers le tutoriel : https://souchal.pages.in2p3.fr/atelier-docker/
Dans le cadre de son Assemblée Générale, COPACEL a organisé le jeudi 14 novembre 2019 à l’Aéro-club de France une conférence sur les évolutions des modes de consommation.
Trois thématiques ont été débattues à cette occasion : nouvelles attentes des consommateurs, perception des produits chimiques, impact du numérique sur le plan environnemental.
Dans ce cadre j’ai fait une présentation sur les impacts environnementaux du numérique, que vous pouvez retrouver ici : https://presentations.pages.in2p3.fr/impact-numerique
nmap [scan types] [options] {172.16.1.1 specification}
Syntax | Example | Description |
---|---|---|
-P | nmap –p 23 172.16.1.1 | Port scanning port specific port |
-P | nmap –p 23-100 172.16.1.1 | Port scanning port specific port range |
-p | nmap -pU:110,T:23-25,443 172.16.1.1 | U-UDP,T-TCP different port types scan |
-p- | nmap -p- 172.16.1.1 | Port scan for all ports |
-p | nmap -smtp,https 172.16.1.1 | Port scan from specified protocols |
-F | nmap –F 172.16.1.1 | Fast port scan for speed up |
-P “*” | nmap -p “*” ftp 172.16.1.1 | Port scan using name |
-r | nmap -r 172.16.1.1 | Sequential port scan |
Syntax | Example | Description |
---|---|---|
-sL | nmap 172.16.1.1-5 -sL | List 172.16.1.1 without scanning |
-sn | nmap 172.16.1.1/8 -sn | Disable port scanning |
-Pn | nmap 172.16.1.1-8 -Pn | Port scans only and no host discovery |
-PS | nmap 172.16.1.185 -PS22-25,80 | TCP SYN discovery on specified port |
-PA | nmap 172.16.1.185 -PA22-25,80 | TCP ACK discovery on specified port |
-PU | nmap 172.16.1.1-8 -PU53 | UDP discovery on specified port |
-PR | nmap 172.16.1.1-1/8 -PR | ARP discovery within local network |
-n | nmap 172.16.1.1 -n | no DNS resolution |
Syntax | Example | Description |
---|---|---|
-sS | nmap 172.16.1.1 -sS | TCP SYN port scan |
-sT | nmap 172.16.1.1 -sT | TCP connect port scan |
-sA | nmap 172.16.1.1 -sA | TCP ACK port scan |
-sU | nmap 172.16.1.1 -sU | UDP port scan |
-Sf | nmap -Sf 172.16.1.1 | TCP FIN scan |
-sX | nmap -SX 172.16.1.1 | XMAS scan |
-Sp | nmap -Sp 172.16.1.1 | Ping scan |
-sU | nmap -Su 172.16.1.1 | UDP scan |
-sA | nmap -Sa 172.16.1.1 | TCP ACK scan |
-SL | nmap -Sl 172.16.1.1 | list scan |
Syntax | Description |
---|---|
nmap 172.16.1.1 | single IP scan |
nmap 172.16.1.1 172.16.100.1 | scan specific IPs |
nmap 172.16.1.1-254 | scan a range of IPs |
nmap xyz.org | scan a domain |
nmap 10.1.1.0/8 | scan using CIDR notation |
nmap -iL scan.txt | scan 172.16.1.1s from a file |
nmap –exclude 172.16.1.1 | specified IP s exclude from scan |
Syntax | Description |
---|---|
nmap –script= test script 172.16.1.0/24 | execute thee listed script against target IP address |
nmap –script-update-db | adding new scripts |
nmap -sV -sC | use of safe default scripts for scan |
nmap –script-help=“Test Script” | get help for script |
Syntax | Description |
---|---|
nmap -f [172.16.1.1] | scan fragment packets |
nmap –mtu [MTU] [172.16.1.1] | specify MTU |
nmap -sI [zombie] [172.16.1.1] | scan idle zoombie |
nmap –source-port [port] [172.16.1.1] | manual source port - specify |
nmap –data-length [size] [172.16.1.1] | randomly append data |
nmap –randomize-hosts [172.16.1.1] 172.16.1.1 | scan order randomization |
nmap –badsum [172.16.1.1] | bad checksum |
Description | Syntax |
---|---|
Default/normal output | nmap -oN scan.txt 172.16.1.1 |
XML | nmap -oX scanr.xml 172.16.1.1 |
Grepable format | nmap -oG grep.txt 172.16.1.1 |
All formats | nmap -oA 172.16.1.1 |
Syntax | Description |
---|---|
nmap -sP 172.16.1.1 | Ping scan only |
nmap -PU 172.16.1.1 | UDP ping scan |
nmap -PE 172.16.1.1 | ICMP echo ping |
nmap -PO 172.16.1.1 | IP protocol ping |
nmap -PR 172.16.1.1 | ARP ping |
nmap -Pn 172.16.1.1 | Scan without pinging |
nmap –traceroute 172.16.1.1 | Traceroute |
Syntax | Description |
---|---|
nmap -T0 172.16.1.1 | Slowest scan |
nmap -T1 172.16.1.1 | Tricky scan to avoid IDS |
nmap -T2 172.16.1.1 | Timely scan |
nmap -T3 172.16.1.1 | Default scan timer |
nmap -T4 172.16.1.1 | Aggressive scan |
nmap -T5 172.16.1.1 | Very aggressive scan |