┌──(iNarrow12㉿NIBM)-[~]
└─$ bat whoami.json
{
"name" : "iNarrow12",
"institute" : "NIBM — Sri Lanka",
"major" : "Network Engineering",
"passion" : "Ethical Hacking",
"certs_goal" : ["CEH", "OSCP", "Security+"],
"hobbies" : ["CTFs", "Packet Analysis", "Malware Development", "Security Research", "Web Application Pentesting"],
"status" : "Grinding..."
}┌──(iNarrow12㉿NIBM)-[~]
└─$ bat about.py
class iNarrow12:
def __init__(self):
self.name = "iNarrow12"
self.institute = "NIBM — Network Engineering"
self.skills = ["Ethical Hacking", "Networking", "Linux", "Python"]
self.tools = ["Kali Linux", "Wireshark", "Nmap", "Burp Suite"]
self.certs_todo = ["CEH", "CompTIA Security+", "OSCP"]
self.hobbies = ["CTFs", "Packet Analysis", "Breaking things legally"]
def mission(self):
return "Turning curiosity into capability — one exploit at a time."
me = iNarrow12()
print(me.mission())
# Output: Turning curiosity into capability — one exploit at a time.