┌──(pranav㉿kali)-[~/about]
│
├── 🎓 Final Year · B.E. CSE (Data Science) @ VCET, Mumbai
├── 🛡️ Honours in Cybersecurity · Mumbai University
├── 🔵 Blue Team · SOC Operations · SIEM · Threat Intel
├── 🏁 25+ CTFs Played · Top 9% TryHackMe · 100+ Labs
├── 🔍 OSINT Specialist · MITRE ATT&CK Framework
├── 👥 Deputy Admin Head @ CSI & Literati Club
│
└── ⚡ "Building, breaking, and researching things."
#!/usr/bin/env python3
# pranav_status.py — current focus areas
current_focus = {
"📖 reading": "Computer Networks — Andrew Tanenbaum",
"🧠 framework": "MITRE ATT&CK",
"🔧 building": "SIEM detection rules & SOC workflows",
"🏁 platform": "TryHackMe → Top 9% and climbing",
"🎯 next_goal": "Offensive Security certifications"
}
for area, detail in current_focus.items():
print(f" {area}: {detail}")🏁 CTF Domains:
├── 🔐 Cryptography
├── 🌐 Web Application Security
├── 🔍 Digital Forensics & OSINT
├── 🔄 Reverse Engineering
└── 🛡️ Blue Team / Incident Response
🎓 Certifications:
├── CyberSecuredIndia — 4-week OSINT Course
├── Secured Bharat Group — Detect & Defend
├── Secured Bharat Group — Code: Breach
├── VECTOR Certification
└── Honours in Cybersecurity — Mumbai University
|
|
|
|
class PranavShinde:
def __init__(self):
self.location = "Mumbai, India"
self.education = "CSE Data Science @ VCET"
self.team = "CodeBloodedSibs"
self.motto = "In OSINT we trust, in CTFs we excel."
def say_hi(self):
print("Thanks for dropping by! Let's hack something together. 🔐")
PranavShinde().say_hi()


