-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Intercepting Communication | ||
description: Learn various techniques to intercept and manipulate network communication, from connecting to remote hosts to performing man-in-the-middle attacks. | ||
challenges: | ||
- id: level-1 | ||
name: Connect | ||
- id: level-1a | ||
name: Send | ||
- id: level-1b | ||
name: Shutdown | ||
- id: level-2 | ||
name: Listen | ||
- id: level-3 | ||
name: Scan 1 | ||
- id: level-4 | ||
name: Scan 2 | ||
- id: level-5 | ||
name: Monitor 1 | ||
- id: level-6 | ||
name: Monitor 2 | ||
- id: level-7 | ||
name: Network Configuration | ||
- id: level-8 | ||
name: Ethernet | ||
- id: level-9 | ||
name: IP | ||
- id: level-10 | ||
name: TCP | ||
- id: level-11 | ||
name: TCP Handshake | ||
- id: level-12 | ||
name: ARP | ||
- id: level-13 | ||
name: Intercept | ||
- id: level-14 | ||
name: Man-in-the-Middle | ||
resources: | ||
- name: "Intercepting Communication: Introduction" | ||
type: lecture | ||
video: TLJHimgblCM | ||
playlist: PL-ymxv0nOtqrrjUFj5DL7jby9xA4sPFq- | ||
slides: 1fj5anIxRY3haHl81dFWwwCMQhJCUEY-NrTClwYH9_iE | ||
- name: "Intercepting Communication: Ethernet" | ||
type: lecture | ||
video: TaPsmkBNJ64 | ||
playlist: PL-ymxv0nOtqrrjUFj5DL7jby9xA4sPFq- | ||
slides: 1OFdRsadX7HaLVtrVC5rV8837W8FY83Qzca5OIhhade0 | ||
- name: "Intercepting Communication: Internet Protocol" | ||
type: lecture | ||
video: _3F7lRUoIXM | ||
playlist: PL-ymxv0nOtqrrjUFj5DL7jby9xA4sPFq- | ||
slides: 1fiTAFWX-ASikEFD1QRmgangaUzLvE2Ym7UlSjVnx4Oc | ||
- name: "Intercepting Communication: Transmission Control Protocol" | ||
type: lecture | ||
video: v3m9F9nEpCA | ||
playlist: PL-ymxv0nOtqrrjUFj5DL7jby9xA4sPFq- | ||
slides: 1ALXCLKkbGgzOJ0qrCGD-UekGOGjzH74tLAaZLw4CvWc | ||
- name: "Intercepting Communication: Address Resolution Protocol" | ||
type: lecture | ||
video: 9p2OU4r4aGs | ||
playlist: PL-ymxv0nOtqrrjUFj5DL7jby9xA4sPFq- | ||
slides: 1VoEUlgjCNZuNIdh8KSxF6bTXPr1ylaeokwFDOLk7F94 | ||
- name: "Tooling Documentation" | ||
type: markdown | ||
content: | | ||
- [man page: `nc`](https://linux.die.net/man/1/nc) | ||
- [man page: `ip`](https://linux.die.net/man/8/ip) | ||
- [man page: `tcpdump`](https://linux.die.net/man/8/tcpdump) | ||
- [Cheat Sheet For `ip` Command](https://access.redhat.com/sites/default/files/attachments/rh_ip_command_cheatsheet_1214_jcs_print.pdf) | ||
- [Wireshark User's Guide](https://www.wireshark.org/docs/wsug_html_chunked/) | ||
- [Scapy's Documentation](https://scapy.readthedocs.io/en/latest/) |