Security Tool Builder • Detection Engineering • Splunk • AI-Assisted Security Research
Researching threats. Reproducing bugs. Building practical security tools.
class Sri:
def __init__(self):
self.name = "Sri"
self.role = "Cybersecurity Engineer | Threat Researcher | Bug Bounty Hunter"
self.focus = [
"Threat Detection",
"Bug Bounty Hunting",
"Web / API Security",
"Android / iOS Security",
"IoT / Firmware Security",
"Detection Engineering",
"Security Automation",
"AI-Assisted Security Research"
]
self.currently = "Building practical offensive + defensive security tooling"
self.goal = "Find real vulnerabilities, publish impactful writeups, and build useful cyber tools"
def say_hi(self):
print("If you're into threat research, cyber tooling, or security automation — welcome.")
me = Sri()
me.say_hi()