Network security

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/20

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards

query WHOIS servers

whois webpage

2
New cards

Passive Reconnaissance with nslookup

nslookup -type=(A/AAAA/TXT/MX…) website DNS_server

3
New cards

passive reconnaissance with dig

dig website DNS_server type

4
New cards

What is ARP?

Address Resolution Protocol, mapping IPaddress with MAC address

5
New cards

What is ICMP?

"Internet Control Message Protocol: used for diagnostics and error reporting in networks;

6
New cards

It helps check if a host (computer/server) is alive and reachable."

7
New cards

What is TCP?

Transmission Control Protocol: a connection-based protocol that ensures data arrives correctly and in order, 3 ways handshake

8
New cards

What is UDP?

User Datagram Protocol:

9
New cards

What address is used to identify the start of a network?

network address

10
New cards

What address is used to identify devices within a network?

host address

11
New cards

ARP Scan

sudo nmap -PR -sn MACHINE_IP/24

12
New cards

ICMP Echo Scan

sudo nmap -PE -sn MACHINE_IP/24

13
New cards

ICMP Timestamp Scan

sudo nmap -PP -sn MACHINE_IP/24

14
New cards

ICMP Address Mask Scan

sudo nmap -PM -sn MACHINE_IP/24

15
New cards

TCP SYN Ping Scan

sudo nmap -PS22,80,443 -sn MACHINE_IP/30

16
New cards

TCP ACK Ping Scan

sudo nmap -PA22,80,443 -sn MACHINE_IP/30

17
New cards

UDP Ping Scan

sudo nmap -PU53,161,162 -sn MACHINE_IP/30

18
New cards

optionno DNS lookup

-n

19
New cards

optionreverse-DNS lookup for all hosts

-R

20
New cards

optionhost discovery only

-sn

21
New cards