# Governance and access controls for sensitive client data
A partner at a global law firm once discovered, three weeks into a merger deal, that a colleague in another office was advising the counterparty on an unrelated matter. No malice, no leak, just a conflict-check database that hadn't been updated in real time. The deal survived. The firm's malpractice insurer asked hard questions about why the check failed. That scenario, repeated across law firms, consulting shops, and accounting networks every year, is why governance infrastructure for client data is now a board-level concern, not an IT afterthought.
This lesson covers the core datasets professional services firms must govern, the access-control architectures that protect them, and the metrics regulators, auditors, and clients actually request.
Professional services firms (law, consulting, accounting, advisory) sit on data that is sensitive less because of its volume and more because of its confidentiality density. Three datasets dominate:
Conflict-check databases. Every new matter or engagement gets screened against a master list of current and past clients, related parties, and adverse parties. Law firms call this a conflicts database; it typically pulls from client relationship management (CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.View full definition →) systems, matter intake forms, and corporate affiliate data (often licensed from providers like Dun & Bradstreet or LexisNexis). A missed match can mean disqualification from a deal or a malpractice claim.
Ethical wall (information barrier) logs. An ethical wall is a set of access restrictions that prevent one team inside a firm from seeing another team's work product, usually because the firm represents opposing or competing clients simultaneously. The underlying data is an access-control list mapped to matter numbers, plus a log of every attempted access, granted or denied.
Role-based access logs. These record who accessed what document, when, and under what permission tier. In consulting, this covers engagement workpapers; in accounting, audit files; in law, privileged documents subject to attorney-client privilege (a legal protection preventing disclosure of confidential communications between lawyer and client).
Supporting datasets include HR/staffing records (to check who is "walled off"), time and billing systems (which often reveal who worked on what, a secondary conflicts signal), and document management system (DMS) metadata such as iManage or NetDocuments audit trails.
A conflicts database typically runs on a matching engine that checks new party names against historical records using fuzzy matching (algorithms that catch near-duplicates like "Smith & Co." vs "Smith and Company"). Firms tune the match sensitivity: too loose and staff drown in false positives; too tight and real conflicts slip through.
Ethical walls are implemented at the document management system and email server level. A wall means:
IF user.matter_access != matter.id AND matter.wall_status = "active"
THEN deny_access(user, document)
LOG deny_event(user_id, matter_id, timestamp, reason)That log entry is the audit trail regulators and clients will ask to see. It's not enough to have a wall; firms must prove it held.
Role-based access control (RBAC) assigns permissions by job function rather than by individual, reducing manual errors. A first-year associate might get read-only access to a matter's non-privileged folder; a partner gets full access; opposing-side walled staff get zero.
Regulators, clients (especially financial institutions and government agencies), and cyber-insurers now request specific, quantifiable evidence. The most common:
Say a mid-size consulting firm runs 40 active client engagements with information barriers in place. Its access-log system recorded 12,000 access attempts to walled matters in a quarter, of which 9 were denied due to wall violations attempted (not breaches, just attempts caught by the system).
Breach attempt rate = 9 / 12,000 = 0.075%
If the firm's policy threshold for escalation to the risk committee is any rate above 0.05%, this figure triggers a review, even though zero actual data exposure occurred. That's the point of the metric: it measures control friction before it becomes control failure.
In the US, professional services firms handling personal data face the FTC Safeguards Rule (Federal Trade Commission rule under the Gramm-Leach-Bliley Act requiring data security programs, applicable to some accounting and advisory firms) and state bar ethics rules governing conflicts and confidentiality for law firms. In Europe, the GDPR (General Data Protection Regulation, EU law on personal data processing) requires firms to demonstrate access controls and breach notification within 72 hours of discovery. Accounting firms performing statutory audits face PCAOB (Public Company Accounting Oversight Board, US audit regulator) inspection requirements that explicitly test access controls over audit workpapers.
For a practical reference on control frameworks widely used to structure these metrics, see the NIST Cybersecurity Framework, which many professional services firms mapmapUsing software to automate repetitive marketing tasks and campaigns, enabling personalisation at scale across channels like email, web, and social.View full definition → their access-control policies against even though it's not sector-specific.
Knowledge check
1. In the opening scenario, the conflict check failed even though no one acted with malice or intent to leak information. What does this illustrate about governance risk in professional services firms?
2. What is the key functional difference between a conflict-check database and an ethical wall (information barrier)?
3. Why would a global professional services firm need to pull data from external sources like Dun & Bradstreet or LexisNexis into its conflicts database?
4. Select ALL correct answers about why sensitive client data in professional services firms is considered high-risk.
Select all the correct answers.
5. Select ALL correct answers about the purpose and structure of an ethical wall's underlying data.
Select all the correct answers.
Sophisticated clients, particularly banks, insurers, and government contractors, now issue vendor security questionnaires before engaging a law firm or consultancy. Standard asks include:
Firms that can produce these quickly, with real numbers rather than narrative reassurance, win more RFPs (requests for proposal) in regulated sectors. This is now a competitive differentiator, not just a compliance cost.
🎬 [VIDEO: "What is Role-Based Access Control (RBAC)?" - youtube.com - a short technical explainer on how RBAC systems are structured, useful for non-technical learners wanting the mechanics behind the access logs discussed here]