Skip to content
View studiogangster's full-sized avatar

Block or report studiogangster

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
studiogangster/README.md

πŸ‘Ύ Prakhar Agnihotri

  • πŸš€ Building reliable, secure, performant, and scalable systems.
  • πŸ”’ Head of Information Security @Times Internet Ltd. | Security | Engineering

πŸ‘€ About Me

Engineer. Hacker. Builder.

I design, break, and secure systems β€” blending AI, distributed systems, and security engineering. My work sits at the edge of infrastructure, code, and intelligence. 🧠 AI/LLM engineer with a focus on security use-cases πŸ”’ Security leader with hands-on expertise in distributed systems, APPsec, and LLMsec βš™οΈ Backend & distributed systems developer πŸ› οΈ Always learning, always building


πŸ› οΈ Core Skills

  • AI / LLM Systems β€” RAG pipelines, Vector DB, ModelOps, security-focused LLM integrations
  • Security Engineering β€” AppSec, DevSecOps, SIEM, Threat Modeling, Secure SDLC
  • Distributed Systems β€” Microservices, observability, event-driven architectures
  • Infrastructure & Platforms β€” Managing & Securing on-prem [From Bare-metal to LXC Contianers ]
  • Container Orchestration: Kubernetes, Nomad, Docker
  • Infra Management: Terraform, Ansible, Packer, CI/CD pipelines
  • Monitoring & Logging: Prometheus, Grafana, Loki, ELK stack, GCP & AWS log trails, Fluentd
  • Hybrid / On-Prem Deployments: VMs, private cloud, network segmentation
  • Cloud & Networking β€” AWS, GCP, Azure, load balancing, routing, VPNs, firewalls
  • Software Development β€” Python, Go, JavaScript, Bash, REST/gRPC, APIs
  • Automation & Tooling β€” Scripting, CLI utilities, internal platform engineering

🧰 Toolbox

                     


πŸ’Ό Work Experience

Times Internet

  • Head of Information Security (Sep 2025 – Present)
  • Lead Information Security (Apr 2024 – Sep 2025)
  • Head of Application Security (Aug 2024 – Apr 2025)
  • Application Security Architect (Apr 2023 – Aug 2024)
  • Technology Manager (Sep 2020 – Sep 2023)
  • Software Engineer III (Sep 2017 – Sep 2020)
  • Software Engineer I (Jul 2016 – Dec 2017)

πŸ”­ What I'm Working On

  • Building LLM-powered security tools and AI agents
  • Researching adversarial attacks on neural networks
  • LLM Governed red-teaming agents
  • Orchestration platform for AI Agents [to solve Security exclusively]
  • Automating network reconnaissance and protocol fuzzing
  • Open-source security frameworks and DevSecOps pipelines

πŸ“« Contact

Email LinkedIn Website Blog GitHub


πŸ“Š GitHub Stats

studiogangster's GitHub stats

Top Langs

studiogangster.

Pinned Loading

  1. sensibull-realtime-options-api-ingestor sensibull-realtime-options-api-ingestor Public

    Sensibull Realtime Option-chain Data: To empower your trading strategies with real-time options data for Algo-Trading and Scalping πŸ”₯πŸ“ˆ

    JavaScript 60 25

  2. CVE-2023-44487 CVE-2023-44487 Public

    A python based exploit to test out rapid reset attack (CVE-2023-44487)

    Python 20 3

  3. next-gen-algo-trading-bot next-gen-algo-trading-bot Public

    AI-powered, real-time NSE algorithmic trading engine with Zerodha integration, Redis caching, and live indicator/signal computation.

    Python 26 5

  4. log4j-scan log4j-scan Public

    Forked from fullhunt/log4j-scan

    A fully automated, accurate, and extensive scanner for finding log4j RCE CVE-2021-44228

    Python 1 1

  5. log-streamer log-streamer Public

    A blazing-fast REST microservice that mimics Unix's `tail -f`

    Go

  6. x86-gnu-assembly-primer.md x86-gnu-assembly-primer.md
    1
    # A primer on x86 assembly with GNU assembler
    2
    
                  
    3
    When it comes to assembly language, it isn't as hard as many people think. Fundamentally, you write short, human-readable commands for the processor to execute (your assembly code) and then use a tool (the actual assembler) to translate your code into machine-readable binary instructions. Unlike high-level languages, assembly language is very simple and doesn't have that many features. The difficulty is to deal with memory and build more complex flows (e.g. loops or I/O) from the simple primitives that the assembly language gives you.
    4
    
                  
    5
    ## Registers and instructions