Zero-Trust Session Control

Secure Identity Access & Granular Role Permission Gates

Enforced Endpoint Access Control

Guard system endpoints with secure JWT auth, enforce multi-device lockout limits, configure numeric PIN locks for operators, and generate expiry-tracked share links.

Book Live Demo
MINDRON ERP // ACCESS GATES
IP WHITELIST ENFORCED
ACTIVE DEVICELIMITS1 Session / Role
SUBNET RANGESCIDR bits active
SESSION TOKENSJWT Verified
LAST SHIELD SYNC: 4s ago TOKENS VALID
Security Operations

Enforce Multi-Session & IP Restrictions

Prevent credentials leaks, open terminal vulnerabilities, and unauthorized offsite access loops.

Process Area
Traditional Setup (Unsecured / Shared Accounts)
Zero-Trust Security Module
Shared Credentials
Staff shares login details across shifts, compromising audit trails.
Session-Limit Enforcement
Enforces max active devices per account (e.g., 1 device for operators), blocking simultaneous sharing.
Open Terminals
Leaving terminals open during short absences exposes sensitive records.
4-Digit PIN Lockpad
Quick lock pad prevents unauthorized viewing without forcing full user logout.
Office Networks
ERP endpoints are exposed to public connections and unsecure Wi-Fi.
CIDR Whitelisting
Middlewares verify client IPs against wildcard subnets, blocking offsite requests.
Client Billings
Unsecured document sharing. Competitors or external actors view quotes.
Passcoded ShareLinks
Generates secure URL links with built-in passcodes, exipry dates, and view trackers.
Security Components

Core Safety Modules

A defense-in-depth architecture covering browser cookies, network routers, and database entries.

Device Session Limitation

Control maximum active concurrent login tokens. Restrict operators to 1 session while granting suppliers up to 5.

Auto Lock Screen PINs

Bcrypt-hashed numeric pin entry. Listens to global events for idle timeout lockouts and syncs state across tabs.

IP Whitelisting & Subnets

Gates administrative accounts to office subnets using exact match, wildcard, or bitwise CIDR block checks.

Plan Expiry Gateway

Middleware gates all API requests against plan validity stamps, blocking non-super-admin endpoints if expired.

Granular RBAC Enforcers

Define custom permission matrices (e.g., inventory.edit, billing.cancel) and enforce department scopes.

Storage Anti-Bypass Guard

Monitors storage variables. Terminating or bypassing local flags triggers a hard logout and JWT invalidation.

Session Enforcer

Active User Sessions & Concurrent Limits

Manage concurrent device thresholds by role to block credentials leakage and simultaneous access.

1. Active Sessions Registry

LIMIT: 1 ACTIVE
SESS-401CURRENT DEVICE
Chrome / Windows Desktop (Office Gateway)
IP: 192.168.1.15 // Login: 2026-07-08 09:12
SESS-402
Safari / iPhone 15 Pro (Mobile App)
IP: 103.44.82.19 // Login: 2026-07-08 08:34
SESS-403
Chrome / Android Tablet (Workshop Terminal)
IP: 192.168.1.92 // Login: 2026-07-07 14:15

2. Set Max Limits

Network Scoping

IP Whitelisting & Subnets Gateway

Expose administrative and operational dashboards solely to secured company IP channels.

Corporate Whitelist Rules

MIDDLEWARE: ACTIVE
Wildcard192.168.1.*

Office LAN Network

CIDR Block10.0.0.0/24

Secured AWS VPN Gateway

Exact Match182.72.19.45

Surat Headquarters Static IP

Audit Connection Gateway

Terminal Lock

Operator PIN Pad & Idle Timer Lock

Lock operations screens instantly during physical absences without closing server sessions.

Set 4-Digit Numeric PIN

Enabled

Terminal Lockpad Trigger

Locks the ERP interface locally. Synchronizes lock status instantly across open browser tabs using the storage API listener.

Tab Syncer Event: erp_locked (window.storage)
Anti-Bypass Guard: Active
Authorization Scope

Role Permissions & Columns Masking

Define granular access rules for admin, operators, and vendors. Mask pricing fields for external guests.

Access Privileges mapping

Permission Code
Admin
Manager
Operator
Supplier
Global Settings (system.all)
Deduct Inventory (inventory.add)
View Catalog (inventory.view)
Cancel Invoices (billing.cancel)
View Billings (billing.view)
Upload MSME Certs (vendor.compliance)
MOCK DETAILS CARD
Asset Item:Synthetic Diamond Grain
Purchase Price:₹14,500 / Carat
Source Supplier Link:acme.com/rough-lot

"Hiding wholesale costs and margins from external supplier logins is handled automatically by permissions column masks."

Access Gates

Subscription Plan Expiry Gates

Automatically restrict endpoint operations when subscription timelines exceed validation limits.

Subscription Gate Settings

Firm Expiry Timeline:Active (30 days left)

Plan Gate: CLEAR

API requests verified successfully. Subscription is valid or role matches super admin exemptions.

Versatile Scenarios

Built For Your Industry

Configure Zero-Trust security settings scoped specifically to diamonds, casting logs, or supply chains.

Advanced Manufacturing

Field operators quickly unlock shop floor terminal tablets using quick PIN codes without complete re-authentication.

IMPACT: Increases operator productivity by 25%
Diamond Sourcing & Vaults

Restrict diamond ledger viewing permissions to vault department members using CIDR IP whitelist checks.

IMPACT: Guarantees vault custody security
Casting Workshops

Enforce single-session limits on employee accounts to prevent multi-operator billing revisions.

IMPACT: Prevents gold allocation tampering
Supply Chains & Logistics

Restrict transport vendors to compliance-related panels only, hiding global customer catalogs and wholesale pricing.

IMPACT: Protects corporate catalog data
Retail & e-Commerce

Gate cash register accounts to localized IP gateways and specific register hardware devices, blocking offsite checkout attempts.

IMPACT: Prevents register checkout fraud
Chemical & Process Sourcing

Limit process operators to chemical safety sheets only, blocking unauthorized exports of proprietary chemical recipes.

IMPACT: Guards proprietary formulation IP
Healthcare & Clinical Audits

Log double-operator credentials audit logs for prescription storage lockers, generating notifications for abnormal dispenses.

IMPACT: Enforces HIPAA and drug safety logs
Infrastructure & Construction

Generate passcoded, auto-expiring share links for blueprints shared with sub-contractors, locking access when bidding closes.

IMPACT: Secures project bidding logs

Module FAQs

What is a Session Override?

If a user attempts to log in but has reached their concurrent session limit, the system offers an override screen to log out other devices.

How do ShareLinks work?

They are temporary web links generated to share documents. You can configure expiration dates, view limits, and passcode protection.

How does the cross-tab locking system synchronize lock status?

The lock screen listens to local storage state events. When any tab changes the 'erp_locked' flag to true, a storage event listener triggers on all other open tabs, locking them synchronously in real-time.

Can a vendor bypass column masking using browser Inspect Element tools?

No. Column masking is executed at the server-side API middleware level. The restricted fields (e.g., margins, wholesale purchase costs) are completely omitted from the network payload returned by the database.

How do bitwise CIDR block checks determine IP compliance?

The whitelisting middleware parses client IP addresses and converts both the incoming IP and the CIDR whitelisted subnet into binary integers. It then runs a bitwise XOR operation against the mask bits to verify compliance.

What is the purpose of Bcrypt salt rounds in operator PIN locking?

When configuring a numeric PIN, the system runs 10 rounds of salt computations. This cost factor ensures brute-force dictionary attacks are computationally unfeasible, safeguarding operational terminal devices.

What happens to active JWT tokens during session revocation?

When an administrator terminates an active session, the session ID is added to a high-speed Redis blacklist memory cache. All subsequent API queries verify the token signature against this blacklist before processing.