Featured Projects

Automated Malware Detection System

Python-based security analysis tool

Developed a Python-based system that analyzes file behavior and detects malware signatures, reducing analysis time by 70%. The system integrates with YARA rules and machine learning models to identify both known and unknown threats.

build Technologies

Python YARA Scikit-learn TensorFlow REST API

emoji_events Key Achievements

• Reduced malware analysis time by 70%
• 95% detection accuracy on test dataset
• Open-source project with 200+ stars

main.py Python
def analyze_file(file_path):
  features = extract_features(file_path)
  yara_match = yara_rules.match(file_path)
  ml_prediction = model.predict([features])[0]
  
  if yara_match or ml_prediction == 1:
    return {"threat": True, "confidence": ml_score}
  else:
    return {"threat": False}

SIEM Dashboard for Threat Intelligence

Security event correlation and visualization

Created a custom Splunk dashboard that correlates security events from multiple sources, improving incident response time by 40%. Features real-time threat visualization, automated alerting, and custom correlation rules.

build Technologies

Splunk Elastic Stack React D3.js Docker

emoji_events Key Achievements

• Reduced incident response time by 40%
• Implemented 50+ custom correlation rules
• Decreased false positives by 35%

correlation.js JavaScript
function correlateEvents(events) {
  const patterns = [
    {name: "Brute Force", threshold: 5, timeWindow: 300},
    {name: "Port Scan", threshold: 10, timeWindow: 120}
  ];
  
  return patterns.map(pattern => {
    return detectPattern(events, pattern);
  });
}

Cloud Security Automation Framework

Infrastructure-as-code security solution

Developed an infrastructure-as-code framework that automates security controls deployment across multi-cloud environments, reducing security misconfigurations by 80%. Includes automated compliance checking and remediation.

build Technologies

Terraform AWS Azure Python Jenkins

emoji_events Key Achievements

• Reduced security misconfigurations by 80%
• Automated compliance for CIS benchmarks
• Implemented security guardrails for 100+ services

security.tf HCL
resource "aws_security_group" "web" {
  name = "web-sg"
  description = "Security group for web servers"
  
  ingress {
    from_port = 80
    to_port = 80
    protocol = "tcp"
    cidr_blocks = ["0.0.0.0/0"]
  }
}