Technical Audit Portfolios
Deep dive reports detailing critical logic bugs discovered during our VAPT audits and secure validation patches implemented for client builds.
Prevented BOLA Data Leakage & Secured FinTech Core Banking API
A Neo-Banking Startup was launching their API platform, but security scanning failed to check complex multi-step authorization logic.
Identified access boundary vulnerability where row-level queries on transfer endpoints failed to check context tenant ownership.
Potential leakage of financial records of over 120,000 users, leading to RBI compliance violations and brand loss.
Applied Solution Patch
Implemented resource-level authorization validation filters, cryptographically signed entity IDs, and rate limits.
Secured HealthTech Patient Portals for Fast-Track HIPAA Compliance
A fast-growing HealthTech platform failed an enterprise hospital's onboarding assessment due to insufficient HIPAA controls and exposed patient file URLs.
Diagnosed exposed storage buckets lacking pre-signed authorization tokens, permitting resource queries on sensitive records.
Exposed sensitive patient records, threatening massive HIPAA penalties and blocking a $450k annual recurring revenue enterprise deal.
Applied Solution Patch
Migrated files to private buckets with short-lived AWS CloudFront signed cookies and integrated OAuth2 controls.
Hardened SaaS Multi-Tenant Connection Pooling on AWS Cloud
A B2B SaaS tool had complex database queries where tenant filters could be bypassed using SQL structures, resulting in potential cross-tenant leakage.
Identified connection pool context overlap inside custom ORM configurations, permitting session telemetry leak across tenancy boundaries.
Uncontrolled access to company telemetry, dashboards, and client files, which would ruin customer trust.
Applied Solution Patch
Redefined connection pool configuration to apply row-level security (RLS) on PostgreSQL, separating database contexts.
Blocked Prompt Injection & RAG Data Leakage in AI-Agent Core
An AI-powered SaaS startup built on LangChain and pgvector had complex agent queries that did not validate user tenant boundaries inside RAG vector search context pools.
Exploited prompt injection vector to force the LLM context query to leak confidential databases and document uploads from separate tenants.
Exposed private corporate strategy files of enterprise accounts, risking contract breach and trust loss.
Applied Solution Patch
Configured metadata filtering in vector searches to restrict database query scopes strictly by the tenant ID context.
Mitigated Kubernetes Host Namespace Pod Breakouts in E-Commerce Cluster
An e-commerce gateway ran merchant integrations in isolated Docker containers, but the Kubernetes configuration allowed host namespace access.
Bypassed cluster boundaries through hostPath mounting exploit to gain root privileges on the control plane node.
Potential complete takeover of payment processing containers and cloud service credentials.
Applied Solution Patch
Enforced Pod Security Standards to 'restricted', disabled privileged pods, and configured read-only root filesystems.
Audited DeFi Staking Smart Contracts, Securing $4.2M Liquidity Pools
A decentralized liquidity staking protocol was prepping for launch, but custom payout calculation triggers were vulnerable to state reentrancy.
Identified logic path where contract payout transactions executed external calls before updating the internal ledger balance state.
Potential drainage of the entire $4.2M staking token pool on mainnet deploy.
Applied Solution Patch
Restructured Solidity methods to apply Checks-Effects-Interactions pattern and integrated OpenZeppelin ReentrancyGuard.
Remediated Decryption Key Extraction Vulnerability in Android/iOS Wallet
A mobile banking wallet app stored local user cache databases encrypted, but the decryption key seed was compiled inside the binary files.
Decompiled the Android APK and iOS IPA files using Jadx and Hopper, extracted the cryptographic key, and decrypted local files.
Loss of transaction telemetry and local authorization cookies on compromised client devices.
Applied Solution Patch
Migrated local storage encryption to Android KeyStore and iOS Keychain services using hardware-backed key seeds.