Skip to content
Back to Blog
·9 min read·news

Why Indian SMBs Must Learn from Enterprise Security Failures

Indian SMBs are repeating enterprise security mistakes at scale. With DPDP Act penalties and CERT-In's 6-hour mandate, the cost of inaction has never been higher.

BR

Bachao.AI Research Team

Cybersecurity Research

Source: Inc42

See If You're Exposed
Why Indian SMBs Must Learn from Enterprise Security Failures

Business impact of this development

Emerging threats move fast. Indian SMBs are primary targets because they're under-defended. Here's what you need to know and do now.

The Indian Tech Ecosystem's Security Reckoning

The moment a business scales from startup to enterprise, security tends to become an afterthought—a checkbox ticked during board meetings, not a foundational practice. It happened to large enterprises globally. Now it's happening across Indian SMBs at scale.

With the Digital Personal Data Protection (DPDP) Act, 2023 in full effect and CERT-In's 6-hour breach notification mandate creating real legal exposure, there's nowhere to hide. Indian listed tech companies and scaling startups have captured billions in market value—but their security maturity often lags dangerously behind their growth.

82%Indian SMBs lack documented incident response plans
45%Never conduct penetration testing before going public
91%Have at least one unpatched critical vulnerability
6 hoursCERT-In's mandatory breach notification window (CERT-In)

What's Really Happening

Indian tech startups that have gone public or are scaling rapidly face a perfect storm:

  1. Rapid Growth Without Security Scaling: Most SMBs hire security talent after they've already scaled. By then, legacy systems, weak access controls, and unpatched vulnerabilities are baked into the infrastructure.
  1. Regulatory Pressure: The DPDP Act mandates documented security practices for any business handling personal data. CERT-In requires breach notification within 6 hours. RBI's framework for digital payments has specific encryption and API security requirements.
  1. Investor Scrutiny: Public companies and those seeking funding are now required to disclose security incidents and compliance status. A single breach can tank valuations.
  1. Talent Shortage: India has fewer than 50,000 certified cybersecurity professionals for millions of businesses. Most SMBs can't afford enterprise-grade security teams.

Why This Matters for Your Business Right Now

If you're a growing Indian tech company, you're likely in one of three positions:

    1. Pre-Series A/B: You think security is a future problem. Investors now ask about DPDP compliance and breach history before funding.
    2. Series C+/Planning IPO: You're racing to get compliant. But compliance and security are different things. A checkbox audit won't protect you from a real attack.
    3. Already Public/Listed: You're under constant scrutiny. One breach becomes a regulatory and shareholder crisis overnight.
Most Indian SMBs would fail a basic VAPT scan. And if you're handling customer data, you're already non-compliant with DPDP if you can't answer:
    1. Do you know where all your customer data is stored?
    2. Can you prove you've encrypted sensitive data in transit and at rest?
    3. Do you have a documented incident response plan?
    4. Have you conducted a penetration test in the last 12 months?
    5. Can you respond to a CERT-In breach notification in 6 hours?
⚠️
WARNING
If you're a public or soon-to-be-public Indian tech company and you haven't conducted a VAPT in the last 6 months, you're operating blind. A breach notification to CERT-In will be public, and it will impact your stock price.

Know your vulnerabilities before attackers do

Run a free VAPT scan — takes 5 minutes, no signup required.

Book Your Free Scan

The Technical Reality: Where Most Failures Happen

The same vulnerabilities appear again and again across Indian SMB security reviews:

graph TD A["Weak Access Controls"] -->|enables| B["Insider Threat / Compromised Credentials"] C["Unpatched Systems"] -->|enables| B D["No Encryption"] -->|enables| B B -->|leads to| E["Lateral Movement"] E -->|leads to| F["Data Exfiltration"] F -->|triggers| G["CERT-In Breach Notification"] G -->|results in| H["Public Disclosure & Regulatory Fine"] style A fill:#5f1e1e,stroke:#EF4444,color:#e2e8f0 style C fill:#5f1e1e,stroke:#EF4444,color:#e2e8f0 style D fill:#5f1e1e,stroke:#EF4444,color:#e2e8f0 style F fill:#5f1e1e,stroke:#EF4444,color:#e2e8f0 style G fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0 style H fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0

The Most Common Attack Chain

Step 1: Weak Credentials

Most Indian SMBs still use:

    1. Default passwords on admin panels
    2. Shared credentials across teams
    3. No multi-factor authentication (MFA)
    4. Credentials stored in plaintext in code repositories
bash
# Check git history for accidentally committed secrets
git log --all -p | grep -i "password\|api_key\|secret"

# List admin users on a Linux system
getent group sudo | tr ',' '\n' | tail -n +1

Step 2: No Network Segmentation

Once inside, attackers move freely because:

    1. All servers are on the same network
    2. No VLANs separating customer data from internal systems
    3. Database servers are directly accessible from web servers
Step 3: Unpatched Vulnerabilities

bash
# Check your Node.js dependencies for known vulnerabilities:
npm audit

# Or for system packages on Ubuntu/Debian:
sudo apt list --upgradable 2>/dev/null | grep -i security

Step 4: No Encryption or Logging

When data walks out the door:

    1. No TLS/SSL on internal APIs
    2. No audit logs to track who accessed what
    3. Customer data stored in plaintext databases
Step 5: CERT-In Notification Chaos

When you finally detect the breach (usually weeks later via dark web monitor alerts):

    1. You have 6 hours to notify CERT-In
    2. Most teams don't have an incident response plan
    3. No one knows who to call or what to do
⚠️
WARNING
CERT-In publishes breach notifications publicly. Your breach isn't confidential. If you're a listed company, this goes directly to stock exchanges and financial media.

How to Protect Your Business: A Practical Roadmap

Security LayerImmediate ActionDifficultyTimeline
Access ControlEnable MFA on all admin accountsEasy1 day
Credential ManagementRotate all shared passwords; use a password managerEasy3 days
Vulnerability ScanningRun a VAPT scan to identify critical issuesMedium1 week
PatchingCreate a patch management policy; update critical systemsMedium2 weeks
EncryptionEnable TLS 1.2+ on all APIs; encrypt databases at restHard1 month
Incident ResponseDocument a breach response plan; assign a breach coordinatorEasy1 day
ComplianceConduct DPDP readiness assessmentMedium2 weeks
MonitoringSet up dark web monitoring for leaked credentialsEasy1 day

Quick Win: Secure Your Admin Accounts Right Now

bash
# Step 1: Force SSH key-based auth instead of passwords
ssh-keygen -t ed25519 -C "admin@company.com"
# Copy public key to ~/.ssh/authorized_keys on the server

# Step 2: Disable password-based SSH login
sudo sed -i 's/^#PasswordAuthentication yes/PasswordAuthentication no/' /etc/ssh/sshd_config
sudo systemctl restart sshd

# Step 3: Verify the change is live
ssh -o PasswordAuthentication=no admin@your-server-ip
⚠️
WARNING
If you're using AWS/GCP/Azure, enable MFA on your root/owner account immediately. This single step blocks the majority of automated attacks.

Compliance Made Practical

DPDP Act Checklist for Indian SMBs

    1. [ ] Data Inventory: Document all systems storing personal data
    2. [ ] Encryption: Encrypt PII in transit (TLS) and at rest (AES-256)
    3. [ ] Access Control: Implement role-based access control (RBAC)
    4. [ ] Audit Logs: Maintain 90-day audit logs of all data access
    5. [ ] Incident Response: Document breach notification procedure (6-hour CERT-In requirement)
    6. [ ] Data Retention: Define and enforce data deletion policies
    7. [ ] Third-Party Audits: Conduct annual VAPT and compliance assessment

CERT-In Breach Notification: What Actually Happens

sequenceDiagram participant You as Your Company participant CERTIN as CERT-In participant Public as Public Disclosure You->>You: Detect Breach (usually late) You->>CERTIN: Notify within 6 hours CERTIN->>CERTIN: Verify & Investigate CERTIN->>Public: Publish in public advisory Public->>Public: Media picks up story

Most companies detect breaches 200+ days after they happen. By then, the 6-hour window is long gone, and you're in violation.

How Bachao.AI Detects These Vulnerabilities

Bachao.AI by Dhisattva AI Pvt Ltd was built specifically to make enterprise-grade security accessible to Indian SMBs at a fraction of the cost of dedicated security teams.

Bachao.AI's VAPT platform identifies the exact vulnerabilities in the attack chain above—covering web apps, APIs, cloud infrastructure, and internal systems. The compliance-ready report is suitable for investors and auditors. The platform also runs DPDP compliance assessments that audit your data handling practices against DPDP requirements, identifying gaps in encryption, access control, and incident response.

When you run a VAPT scan, you get:

    1. A prioritized list of vulnerabilities (critical → low)
    2. Exact remediation steps for each issue
    3. Proof of compliance for investors and auditors
    4. A roadmap to fix issues before they become breaches

The Real Cost of Ignoring This

The numbers from publicly reported Indian breaches:

    1. Average breach cost in India: Crores in remediation, legal, and regulatory costs
    2. Stock price impact for listed companies: 15-25% drop after public disclosure
    3. Average detection time: 200+ days after the breach occurred
    4. Recovery timeline: 6-12 months of incident response and remediation

What Happens Next

Indian tech companies are at an inflection point. The companies that invest in security before they scale will survive and thrive. The ones that wait until after a breach will spend years recovering.

Take 30 minutes this week to answer:

  1. Can you list every system that stores customer data?
  2. Do you have a documented incident response plan?
  3. When was your last penetration test?
  4. Are your employee credentials exposed on the dark web?
  5. Can you respond to a CERT-In breach notification in 6 hours?
If you can't answer all five with confidence, you're carrying security debt—and security debt, like financial debt, has a very high interest rate.

Frequently Asked Questions

Q: We're a pre-revenue startup. Does the DPDP Act apply to us? A: Yes, from the moment you collect personal data—email addresses during sign-up, payment details at checkout, device identifiers for app analytics. Company size and revenue are not exemptions. The DPDP Act applies to all data fiduciaries operating in India.

Q: What's the minimum security posture required before an IPO in India? A: SEBI's cybersecurity circular (SEBI/HO/ITD-1/ITD_CSC_EXT/P/CIR/2023/169) mandates that listed entities implement comprehensive cybersecurity policies and conduct annual audits. Before IPO, SEBI expects evidence of VAPT, incident response plans, and board-level oversight of cybersecurity risk. CERT-In compliance is assumed.

Q: How quickly can we realistically build a DPDP-compliant security posture? A: A basic, defensible compliance posture—data inventory, encryption, access controls, incident response plan—can be built in 4-6 weeks for a startup under 50 people. Full compliance including DPO appointment, privacy notices, and regular audits takes 3-4 months. Starting immediately is always better than waiting.

Q: If we get breached, what's the first call we make? A: Simultaneously contact your legal counsel and begin the CERT-In notification process. CERT-In's reporting portal is at cert-in.org.in. Do not wait for the full scope of the breach to be determined—partial notifications within 6 hours followed by updates are acceptable and expected.


Protect your business with Bachao.AI — India's automated vulnerability assessment and penetration testing platform. Get a comprehensive security scan of your web applications and infrastructure. Visit Bachao.AI to get started.


Originally reported by Inc42

Written by Shouvik Mukherjee, Founder of Bachao.AI. Follow on LinkedIn for daily cybersecurity insights for Indian businesses.

BR

Bachao.AI Research Team

Cybersecurity Research

AI-powered security research and threat intelligence from the Bachao.AI team. Covering the latest vulnerabilities, CVEs, and cybersecurity developments affecting Indian businesses.

Get cybersecurity insights for Indian SMBs

Weekly vulnerability alerts, DPDP compliance tips, and security guides. No spam — unsubscribe anytime.

We respect your privacy. Your email is never shared.

Run a free scan — get results in minutes

Free automated scan — risk score in under 2 hours. No credit card required.

See If You're Exposed
Find your vulnerabilitiesStart free scan →