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

Securing Remote Work: VPN, Zero Trust for Indian Teams

Remote work expands your attack surface. Indian SMBs can secure endpoints, enforce MFA, replace VPN with Zero Trust, and meet DPDP 2023 requirements.

BR

Bachao.AI Research Team

Cybersecurity Research

Scan Your Attack Surface

Security exposure this creates

Unpatched vulnerabilities in your tech stack are the #1 entry point for breaches targeting Indian businesses. Here's what to watch.

Remote work has permanently changed the threat surface for Indian businesses. When employees access corporate systems from home networks, personal laptops, and coffee-shop Wi-Fi, the traditional perimeter-based security model collapses. The result: credential theft, data leakage on unmanaged devices, shadow IT proliferating without oversight, and personal data sitting on endpoints that your IT team has never touched. For Indian SMBs subject to the Digital Personal Data Protection Act 2023, this is not just a security problem — it is a compliance liability. This guide lays out a practical remote-security baseline covering endpoint hardening, secure access architecture, identity controls, and data protection, sized for Indian teams operating on realistic budgets.

77%of web application breaches used stolen or weak credentials (Verizon DBIR 2024)
A large shareof organisations report higher incident rates after expanding remote access — endpoint and identity controls are the primary gap (IBM Cost of a Data Breach 2024)

Why Remote Work Breaks Perimeter Security

The classic firewall-and-VPN model assumes users are either inside the corporate network (trusted) or outside (untrusted). Remote work demolished this binary. A developer tunneling through your VPN from a compromised home router brings the attacker inside the perimeter the moment they authenticate. A sales rep using a personal iPhone to access the CRM has no endpoint agent, no disk encryption enforced, and no policy preventing them from copying customer data to a personal cloud drive.

For Indian SMBs, the compounding factors are severe:

    1. Unmanaged devices: Many small teams allow BYOD (Bring Your Own Device) without any enrollment in mobile device management. The device has never been inventoried, patched, or assessed.
    2. Home network exposure: Home routers run outdated firmware, share bandwidth with smart home devices, and are frequently targeted by ISP-level mass-scanning campaigns. They offer zero network-layer visibility to the employer.
    3. Shadow IT: Remote employees solve friction by adopting unapproved SaaS tools — personal Dropbox, free Notion workspaces, WhatsApp Business for client comms. Data migrates out of governed systems invisibly.
    4. Credential theft at scale: Phishing kits targeting Indian employees have grown more sophisticated, often spoofing IT helpdesk portals to harvest VPN credentials and OTPs simultaneously.
🚨
DANGER
A compromised VPN credential gives an attacker the same network access as your employee — plus they can move laterally to internal systems without triggering perimeter alerts, because they are technically "inside."

The DPDP Angle: Personal Data on Remote Endpoints

The Digital Personal Data Protection Act 2023 imposes a duty on Data Fiduciaries to implement appropriate technical and organisational measures to safeguard personal data. When an employee processes customer records, payment information, or health data on a remote endpoint, that device becomes part of your data processing environment. A breach originating from an unmanaged laptop is still your breach under DPDP.

The practical implication: your remote-work security controls are not optional hygiene — they are DPDP compliance infrastructure. Endpoint encryption, access logging, and data loss prevention are the technical measures the Act demands. See the DPDP compliance guidance at /dpdp-compliance for the full regulatory picture.

⚠️
WARNING
Under DPDP, the Data Fiduciary is accountable even when the breach originates at an employee's home network or personal device, if that device was used to process personal data on behalf of the organisation.

Endpoint Security: What "Managed" Actually Means

An endpoint is managed when your IT team can see it, patch it, and enforce policy on it. For remote work, three controls are non-negotiable:

Mobile Device Management

MDM solutions (Microsoft Intune, Jamf, Scalefusion, or the open-source MicroMDM for Linux shops) enroll devices into a management plane that enforces:

    1. Mandatory OS and application patch levels before granting access
    2. Remote wipe capability if a device is lost or an employee is offboarded
    3. Prohibition of specific applications (screen-recording tools, unapproved cloud sync)
    4. Certificate-based authentication, removing password-based device login
For Indian SMBs with mixed fleets — Windows laptops, Android phones, occasional MacBooks — Scalefusion and Microsoft Intune have India-specific support with competitive pricing tiers.

Disk Encryption

Full-disk encryption is the floor. BitLocker (Windows), FileVault (macOS), and LUKS (Linux) ensure that a stolen or lost laptop yields no readable data. The encryption key should be escrowed in your MDM so IT can recover data for legitimate business purposes while preventing unauthorized decryption.

This control alone addresses a large class of DPDP personal-data breach scenarios: the physical theft of a device does not constitute a reportable breach if the disk was encrypted and the key was not compromised.

Endpoint Detection and Response

Antivirus is dead; EDR is the replacement. EDR tools (CrowdStrike Falcon, SentinelOne, or the more accessible Microsoft Defender for Endpoint) provide:

    1. Behavioural detection of fileless malware, not just signature matching
    2. Process tree visibility to trace attack chains across the endpoint
    3. Automated response: isolate a compromised host from the network while preserving forensic state
    4. Telemetry feeding your SIEM or SOC for correlation with network events
For sub-200 seat Indian companies, Microsoft Defender for Endpoint (bundled in Microsoft 365 Business Premium) is the most cost-effective path. It covers Windows, macOS, Android, and iOS from a single console.

Know your vulnerabilities before attackers do

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

Book Your Free Scan

Secure Access: VPN Limitations vs. Zero Trust Network Access

Why Traditional VPN Falls Short

A site-to-site or split-tunnel VPN authenticates the user once, then grants broad access to the network segment behind it. Problems:

    1. Over-privileged access: A marketing employee authenticated into the VPN can attempt to reach the database server on the same subnet.
    2. No device posture check: The VPN client does not verify that the device is patched, has EDR running, or is enrolled in MDM before granting access.
    3. Scalability and performance: Hairpinning all remote traffic through a central VPN gateway degrades SaaS application performance and creates a chokepoint.
    4. Lateral movement: Once inside, a compromised VPN session can probe internal systems freely.
NIST Special Publication 800-207 (Zero Trust Architecture) formalises the principle that no user or device should be inherently trusted, regardless of network location. Every access request must be authenticated, authorised, and continuously validated.

Zero Trust Network Access Architecture

ZTNA replaces the VPN tunnel with application-specific access policies evaluated at the time of each connection request. The access decision incorporates:

  1. Identity: Is this a verified user with a valid session and MFA confirmation?
  2. Device posture: Is the device enrolled, patched to the required OS version, and running the required security agents?
  3. Context: Is the access request coming from an expected geography and time window?
  4. Application policy: Does this user's role permit access to this specific application?
Only if all four gates pass is a micro-tunnel established directly to the target application. The user never has routable access to the broader network.
graph TD A[Remote Worker Request] --> B{Identity SSO + MFA} B -->|Fail| C[Denied - Re-authenticate] B -->|Pass| D{Device Posture MDM + Patch} D -->|Fail| E[Denied - Remediate Device] D -->|Pass| F{Context Location + Time} F -->|Anomaly| G[Step-Up Auth or Deny] F -->|Normal| H{Role Policy App Access} H -->|Not Authorized| I[Denied - Log Incident] H -->|Authorized| J[Micro-Tunnel to App] J --> K[Continuous Session Monitor] K -->|Posture Degrades| E style A fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0 style B fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0 style C fill:#5f1e1e,stroke:#EF4444,color:#e2e8f0 style D fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0 style E fill:#5f1e1e,stroke:#EF4444,color:#e2e8f0 style F fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0 style G fill:#5f1e1e,stroke:#EF4444,color:#e2e8f0 style H fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0 style I fill:#5f1e1e,stroke:#EF4444,color:#e2e8f0 style J fill:#1e3d2f,stroke:#10B981,color:#e2e8f0 style K fill:#1e3d2f,stroke:#10B981,color:#e2e8f0

ZTNA vendors with India presence and SMB-accessible pricing include Cloudflare Access (Zero Trust plan), Zscaler Private Access, and Palo Alto Prisma Access. Cloudflare Access is particularly relevant for Indian teams already using Cloudflare for DNS or WAF — the control plane integration is low-friction.

Identity: SSO and MFA Are Not Optional

Remote work without strong identity controls is an open door. Two controls are mandatory:

Single Sign-On

SSO centralises authentication across all applications through a single identity provider (Microsoft Entra ID, Google Workspace, or Okta). Benefits for remote teams:

    1. Employees authenticate once; access to approved apps is provisioned or deprovisioned from one console
    2. Offboarding a departing employee is a single action, not a hunt across twelve SaaS tools
    3. Login events are centrally logged, enabling audit trails required under DPDP

Multi-Factor Authentication

MFA is the single highest-ROI security control available. Verizon DBIR 2024 notes that the vast majority of credential-based breaches exploited accounts without MFA. For Indian teams, practical MFA options are:

    1. TOTP apps (Google Authenticator, Microsoft Authenticator) — free, works offline, resistant to SIM-swap
    2. Hardware tokens (YubiKey) — strongest protection, mandatory for privileged/admin accounts
    3. Passkeys — emerging standard, supported by major identity providers, phishing-resistant by design
🛡️
SECURITY
SMS OTP is the weakest MFA form. SIM-swap fraud targeting Indian mobile numbers is well-documented. If SMS OTP is your only MFA option, it is better than nothing — but migrate to TOTP or hardware tokens for any account with access to personal data or financial systems.

Data Loss Prevention for Remote Teams

DLP controls prevent sensitive data from leaving governed channels. For remote work, the relevant controls are:

    1. Clipboard and screenshot restrictions on managed devices (enforced via MDM policy or DLP agent)
    2. Cloud upload policies blocking upload to unapproved destinations (personal Google Drive, Dropbox) while permitting approved corporate storage
    3. Email DLP scanning outbound attachments for patterns matching PAN card numbers, Aadhaar formats, or credit card numbers before delivery
    4. Browser isolation for high-risk browsing (rendering remote pages in a cloud container, never executing untrusted code on the local device)
For Indian teams subject to DPDP, DLP logs serve as evidence of technical safeguards — relevant both in a regulatory inquiry and in a CERT-In incident report.
xychart-beta title "Remote Work Risk Vectors — Relative Severity Index" x-axis ["Credential Theft", "Unmanaged Device", "Shadow IT", "Home Network", "Phishing", "Insider Leak"] y-axis "Severity Score" 0 --> 100 bar [92, 85, 70, 65, 88, 60]

Remote Security Baseline for Indian SMBs: A Practical Checklist

ControlPriorityMinimum Viable Implementation
MDM enrollment for all remote devicesP0Microsoft Intune / Scalefusion — enroll before granting access
Full-disk encryption enforcedP0BitLocker/FileVault enforced via MDM policy
MFA on all accountsP0Microsoft Authenticator or Google Authenticator; no SMS for admin accounts
SSO via identity providerP0Microsoft Entra ID or Google Workspace
EDR on all endpointsP1Microsoft Defender for Endpoint (bundled in M365 Business Premium)
ZTNA or application-layer VPNP1Cloudflare Access free tier for first five apps
DLP for email + cloud uploadP1Microsoft Purview (bundled) or Google Workspace DLP
Patch management SLAP1Critical patches applied within 72 hours; enforced via MDM compliance policy
Security awareness trainingP2Quarterly phishing simulation + DPDP data-handling training
Remote-work acceptable use policyP2Written policy signed by all remote employees
💡
TIP
Start with MFA and MDM enrollment. These two controls address the largest share of remote-work incidents and can be deployed in a weekend for most Indian SMB environments. ZTNA and DLP can follow once the identity and endpoint foundation is in place.

Assessing Your Remote Security Posture

Knowing your controls exist is not the same as knowing they work. VPN clients can be misconfigured, MDM enrollment can be bypassed, and EDR agents can go stale. A structured vulnerability assessment tests whether your remote-access stack — VPN or ZTNA gateway, identity provider configuration, device posture checks — actually enforces what your policy says it does.

Bachao.AI, built by Dhisattva AI Pvt Ltd, automates this assessment against your web-facing infrastructure. A free VAPT scan surfaces exposed remote-access interfaces, misconfigured authentication endpoints, and certificate issues before an attacker finds them first. For the application layer, it is the fastest way to get a baseline reading. For the full internal remote-security audit — endpoint controls, ZTNA policy review, identity provider configuration — engage a CERT-In empanelled partner for the on-network assessment component.

🎯Key Takeaway
Remote work security is not a VPN problem — it is an identity, device, and data problem. The NIST 800-207 Zero Trust model is the architectural answer: verify identity, check device posture, grant least-privilege access to specific applications, and monitor continuously. Indian SMBs subject to DPDP 2023 must treat remote endpoint controls as compliance infrastructure, not optional hardening.

Authoritative References

Frequently Asked Questions

Is a VPN sufficient for securing remote work in India?
A traditional VPN authenticates users but grants broad network access without checking device health or enforcing least-privilege. It does not protect against lateral movement once credentials are compromised. For teams handling sensitive data, ZTNA per NIST 800-207 is the recommended architecture — it evaluates identity, device posture, and role before each access request.
What does DPDP 2023 require for remote workers handling personal data?
DPDP requires Data Fiduciaries to implement appropriate technical and organisational measures to protect personal data. For remote work, this means encryption at rest on endpoints, access controls preventing unauthorised data access, audit trails of who accessed what, and a breach notification process. Unmanaged personal devices processing customer data are a direct DPDP compliance gap.
How does Zero Trust differ from a conventional VPN for Indian SMBs?
A VPN creates a network tunnel giving users broad access to the network segment; Zero Trust creates an application-specific micro-tunnel only after verifying identity, device posture, and role. Zero Trust reduces the blast radius of a compromised credential from "access to the whole internal network" to "access to one approved application, continuously monitored."
What is the minimum MFA standard for remote employee accounts in India?
TOTP-based MFA (apps like Microsoft Authenticator or Google Authenticator) is the minimum recommended standard. SMS OTP is acceptable as a fallback but is vulnerable to SIM-swap attacks. Admin and privileged accounts should use hardware tokens (YubiKey) or passkeys. SMS-only MFA should not be used for any account with access to personal data or financial systems.
What does MDM enrollment mean for an employee's personal device?
MDM enrollment allows IT to enforce security policies (patch levels, disk encryption, app restrictions) and remotely wipe corporate data. On a BYOD device, a well-configured MDM (such as Microsoft Intune in personal device mode) manages a separate work profile, leaving personal data untouched. Employees should review the MDM policy before enrolling personal devices.
How can we assess our current remote-work security posture quickly?
Start with a free VAPT scan to surface exposed remote-access interfaces and authentication misconfigurations in your web-facing stack. For a deeper assessment covering endpoint controls and ZTNA policy, engage a CERT-In empanelled partner for an on-network audit. Review the Bachao.AI blog for guidance on prioritising findings by risk.
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.

Find out if you're exposed to this class of threat

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

Scan Your Attack Surface
Find your vulnerabilitiesStart free scan →