┌──(pranav㉿kali)-[~]
└─$ cat about.txt
name : Pranav Shinde
location : Mumbai, India
education : B.E. CSE (Data Science) @ VCET
honours : Cybersecurity — Mumbai University
kc7 : Top 150 of 150K+ users globally
role : Deputy Admin Head @ CSI & Literati Club
focus : Blue Team · SOC Operations · SIEM · Threat Intel
track_record: 25+ CTFs played · Top 4% TryHackMe · 140+ labs solved
specialty : OSINT · MITRE ATT&CK Framework · OWASP Top 10
status : 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 5% and climbing",
"🎯 next_goal": "CompTIA Security+ certification"
}
for area, detail in current_focus.items():
print(f" {area}: {detail}")domains
├── 🔐 Cryptography
├── 🌐 Web Application Security
├── 🔍 Digital Forensics & OSINT
└── 🛡️ Blue Team / Incident Response
certifications
├── CyberSecuredIndia — 4-week OSINT Course
├── Secured Bharat Group — Detect & Defend
├── Secured Bharat Group — Code: Breach
├── CyberSecuredIndia & Vulnshields — VECTOR: Where Systems Collapse
└── Honours in Cybersecurity — Mumbai University
|
|
|
|
Live widgets computed from the real GitHub account — nothing here is hand-entered, so they stay accurate without upkeep.
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()
