https://github.com/timyiu478/pwn.college
Learn to Hack in a hands-on fashion
https://github.com/timyiu478/pwn.college
binary-exploitation cryptography hacking network-security reverse-engineering system-security web-security
Last synced: 4 months ago
JSON representation
Learn to Hack in a hands-on fashion
- Host: GitHub
- URL: https://github.com/timyiu478/pwn.college
- Owner: timyiu478
- License: mit
- Created: 2025-05-24T13:26:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-29T17:33:49.000Z (11 months ago)
- Last Synced: 2025-08-05T18:56:06.007Z (10 months ago)
- Topics: binary-exploitation, cryptography, hacking, network-security, reverse-engineering, system-security, web-security
- Language: Python
- Homepage:
- Size: 958 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pwn.college
This repository contains some of my notes to the pwn.college challenges.
> Note: These notes are provided as learning resources only. Please do **not** copy them — they're here to support understanding, not serve as plug-and-play answers.
# Selected Notes
| # | Name | Link | Tags |
|----|--------------------------------|------------------|---------|
| 1 | Rev Eng: Version Information in x86 | [View](notes/intro_to_cyber/rev_eng/version_info_x86.md) | `Reverse Engineering`, `x86`, `gdb` |
| 2 | ARP Spoofing: Man In the Middle Attack | [View](notes/intro_to_cyber/net_comm/mitm.md) | `ARP Spoofing`, `TCP`, `Man-in-the-middle` |
| 3 | SQL Injection: Guess password even if the actual data is not shown | [View](notes/intro_to_cyber/web_sec/sqli.md#5) | `SQL`, `Authentication` |
| 4 | Transport Layer Security: Hand Shake | [View](notes/intro_to_cyber/crypto/tls.md#2) | `TLS`, `Diffie-Hellman`, `RSA`, `AES`, `SHA` |
| 5 | Provable Access Control: Bell-LaPadula Model | [View](notes/intro_to_cyber/access_control/README.md) | `POSIX Access Control`, `Mandatory Access Control`, `Bell-LaPadula Model` |
| 6 | Use XSS to exfiltrate victim authentication data | [View](notes/intro_to_cyber/web_sec/xss.md#7) | `Cross Site Scripting`, `HTTP Cookies` |