diff --git a/IMG_4619.jpeg b/IMG_4619.jpeg new file mode 100644 index 0000000..48bc7bc Binary files /dev/null and b/IMG_4619.jpeg differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..5780f69 --- /dev/null +++ b/README.md @@ -0,0 +1,187 @@ +

+ +

+ โ˜• Coffee | ๐ŸŒ Networking | ๐Ÿ” Cybersecurity | ๐Ÿš€ IT Careers +

+ +--- + +## ๐Ÿ’ป whoami + +```bash +$ whoami +networkchuck + +$ uptime +15+ years of breaking and fixing tech + +$ echo $MISSION +"Teach networking, hacking, and IT the fun way" +```` + +--- + +## ๐ŸŽฅ Learn With Me + +

+ + + + + + +

+ +--- + +## ๐Ÿงช lab-status + +```bash +$ systemctl status homelab + +โ— homelab.service - Chuck's Chaos Lab + Loaded: loaded (/etc/systemd/system/homelab.service) + Active: active (running) since forever โ˜• + +$ docker ps +CONTAINER ID NAME STATUS +a1b2c3d4 kali-linux Up 24 hours +b2c3d4e5 metasploitable Vulnerable ๐Ÿ˜ˆ +c3d4e5f6 nginx-lab Running +``` + +--- + +## ๐Ÿงช My Lab Setup + +# โ˜• Powered Homelab + +๐Ÿ–ฅ๏ธ Hardware: +- Custom PC (lots of RAM, never enough) +- Raspberry Pi cluster +- Old laptops turned into servers + +๐Ÿ’ป Virtualization: +- VMware / VirtualBox +- Docker containers everywhere + +๐ŸŒ Networking: +- pfSense firewall +- Managed switch (VLANs for days) +- Wireshark always running ๐Ÿ‘€ + +๐Ÿ” Security Lab: +- Kali Linux +- Metasploitable +- Hack The Box + +โ˜๏ธ Cloud: +- AWS playground +- Azure experiments + +โ˜• Fuel Source: +- Coffee machine (critical infrastructure) +``` + +--- + +## ๐ŸŒ network-scan + +```bash +$ nmap -A 192.168.1.0/24 + +Starting Nmap... +Host: 192.168.1.1 (Router) +Host: 192.168.1.10 (Lab Server) +Host: 192.168.1.50 (Unknown ๐Ÿ‘€) + +$ tcpdump -i eth0 +Listening... (probably too much traffic again) +``` + +--- + +## ๐Ÿ” skills.sh + +```bash +$ cat skills.sh + +#!/bin/bash + +skills=( + "Networking (Cisco, TCP/IP)" + "Cybersecurity (Kali, Nmap)" + "Linux & Servers" + "Docker & Virtualization" + "Cloud (AWS/Azure)" +) + +for skill in "${skills[@]}"; do + echo "[โœ”] $skill" +done +``` + +--- + +## โ˜• coffee-monitor + +```bash +$ coffee --status + +[โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ] 100% FULL +System performance: OPTIMAL +Debugging ability: MAX + +$ coffee --consume + +โ˜• gulp... gulp... +[โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–‘โ–‘โ–‘โ–‘] 60% + +Warning: Refill required soon โš ๏ธ +``` + +--- + +## ๐Ÿš€ projects.log + +```bash +$ tail -f projects.log + +[+] Building networking labs +[+] Teaching IT on YouTube +[+] Breaking stuff (on purpose) +[+] Helping people get into tech +``` + +--- + +## ๐Ÿ“Š Tech Stack + +![Linux](https://img.shields.io/badge/Linux-000?style=for-the-badge\&logo=linux) +![Docker](https://img.shields.io/badge/Docker-000?style=for-the-badge\&logo=docker) +![Wireshark](https://img.shields.io/badge/Wireshark-000?style=for-the-badge\&logo=wireshark) +![Kali](https://img.shields.io/badge/Kali-000?style=for-the-badge\&logo=kalilinux) +![AWS](https://img.shields.io/badge/AWS-000?style=for-the-badge\&logo=amazonaws) + +--- + +## ๐Ÿ“ฃ Connect With Me + +* ๐ŸŽฅ YouTube: [https://www.youtube.com/@NetworkChuck](https://www.youtube.com/@NetworkChuck) +* ๐ŸŒ Website: [https://networkchuck.com](https://networkchuck.com) +* โ˜• Coffee: [https://store.networkchuck.com](https://store.networkchuck.com) + +--- + +## โš ๏ธ Warning + +```bash +This lab may break at any time. +Have coffee ready โ˜• +``` + +--- + +## ๐Ÿš€ Motto + +> Keep hacking ethical of course, keep learning, and drink more coffee โ˜• diff --git a/Skills.sh b/Skills.sh new file mode 100644 index 0000000..ec0db6e --- /dev/null +++ b/Skills.sh @@ -0,0 +1,15 @@ +$ cat skills.sh + +#!/bin/bash + +skills=( + "Networking (Cisco, TCP/IP)" + "Cybersecurity (Kali, Nmap)" + "Linux & Servers" + "Docker & Virtualization" + "Cloud (AWS/Azure)" +) + +for skill in "${skills[@]}"; do + echo "[โœ”] $skill" +done